/* ==========================================================
   DCbros — acid pastel club poster + swiss punk motion
   ========================================================== */

:root {
  --paper: #f4efe4;
  --paper-2: #ede6d5;
  --ink: #1a1614;
  --ink-soft: #3d332e;
  --lilac: #c9b8ff;
  --mint: #b6f0c8;
  --peach: #ffcfa8;
  --sky: #a8dcff;
  --hot: #ff4b2b;
  --lilac-2: #a790ff;
  --mint-2: #7ce0a1;
  --peach-2: #ff9d7a;
  --sky-2: #6bb8f0;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-italic: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-display);
  font-weight: 500;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  cursor: none;
  line-height: 1.4;
  font-variation-settings: "opsz" 20;
}

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-sticker { display: none !important; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==========================================================
   GRAIN
   ========================================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 8s steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-4%,3%); }
  50%  { transform: translate(3%,-2%); }
  75%  { transform: translate(-2%,4%); }
  100% { transform: translate(0,0); }
}

/* ==========================================================
   CUSTOM CURSOR
   ========================================================== */
.cursor-sticker {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform .18s cubic-bezier(.22,1,.36,1), width .2s, height .2s;
  will-change: transform;
  filter: drop-shadow(2px 2px 0 #1a1614);
}
.cursor-sticker svg { width: 100%; height: 100%; animation: spinCursor 6s linear infinite; }
@keyframes spinCursor { to { transform: rotate(360deg); } }

.cursor-sticker.big { width: 74px; height: 74px; }

/* ==========================================================
   TICKER (top)
   ========================================================== */
.ticker {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 9px 0;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
}
.ticker-item { display: inline-flex; align-items: center; }
.ticker-dot { color: var(--hot); }

@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-x-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky;
  top: 35px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  margin: 18px 22px 0;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  box-shadow: 5px 5px 0 var(--ink);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  font-variation-settings: "opsz" 30, "wght" 800;
  position: relative;
}
.logo-mark {
  color: var(--hot);
  font-size: 26px;
  display: inline-block;
  animation: spinSlow 8s linear infinite;
}
.logo-word { letter-spacing: -0.02em; }
.logo-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 8px;
  line-height: 1.1;
  padding: 3px 6px;
  background: var(--peach);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  transform: rotate(-8deg);
  text-align: center;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.nav-menu a:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--hot);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .18s, box-shadow .18s;
}
.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.nav-cta .cta-arrow {
  transition: transform .2s;
}
.nav-cta:hover .cta-arrow { transform: translateX(3px); }

@media (max-width: 780px) {
  .nav-menu { display: none; }
  .nav { padding: 14px 18px; margin: 14px; }
  .logo-badge { display: none; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 90px 32px 120px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 100px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hot);
  animation: pulseDot 1.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .7; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 200px);
  line-height: .92;
  letter-spacing: -0.045em;
  margin-bottom: 40px;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .05em;
}
.hero-title .line-rotator {
  color: var(--hot);
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: -0.03em;
  position: relative;
  height: 1.05em;
}
.rot-wrap {
  display: inline-block;
  position: relative;
  height: 1.05em;
  min-width: 5ch;
}
.rot-word {
  position: absolute;
  top: 0; left: 0;
  display: inline-flex;
  align-items: baseline;
  gap: .25em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(60%) rotate(-6deg) scale(.9);
  transition: opacity .35s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1);
  color: var(--rot-color, var(--hot));
}
.rot-word.rot-active {
  opacity: 1;
  transform: translateY(0) rotate(-3deg) scale(1);
}
.rot-word.rot-leaving {
  opacity: 0;
  transform: translateY(-40%) rotate(6deg) scale(1.1);
}
.wobble-arrows {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: .55em;
  color: var(--ink);
  display: inline-block;
  animation: bounce 1.4s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14%); }
}

.hero-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  max-width: 620px;
  margin-bottom: 40px;
  color: var(--ink-soft);
}
.hero-sub em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  color: var(--ink);
}
.hero-sub u {
  text-decoration: none;
  background: linear-gradient(180deg, transparent 66%, var(--mint) 66%, var(--mint) 92%, transparent 92%);
  padding: 0 2px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 17px;
  border: 2.5px solid var(--ink);
  transition: transform .18s, box-shadow .18s;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--hot);
}
.btn-primary:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 var(--hot);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-ghost:hover {
  background: var(--peach);
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn-arrow { width: 20px; height: 20px; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-strip {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-0.6deg);
}
.strip-item {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.strip-item b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  font-variation-settings: "opsz" 96, "wght" 800;
  letter-spacing: -0.02em;
}
.strip-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.strip-divider {
  color: var(--hot);
  font-size: 18px;
  animation: spinSlow 6s linear infinite;
}

/* ---------- floating stickers around hero ---------- */
.sticker {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(3px 3px 0 var(--ink));
  pointer-events: none;
}
.sticker-star-1 { top: 40px; right: 8%; width: 90px; }
.sticker-badge  { top: 250px; right: 4%; width: 130px; filter: none; }
.sticker-arrow  { top: 380px; right: 22%; width: 130px; }
.sticker-tape   { top: 100px; left: -30px; width: 260px; transform: rotate(-8deg); }
.sticker-smile  { bottom: 210px; right: 12%; width: 80px; }
.sticker-blob   { bottom: 60px; right: 32%; width: 140px; opacity: .5; z-index: 0; }

.tape-strip {
  background: var(--peach);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  letter-spacing: .04em;
}

.spin-slow { animation: spinSlow 14s linear infinite; }

.float-a { animation: float 6s ease-in-out infinite; }
.float-b { animation: float 8s ease-in-out infinite reverse; }
.float-c { animation: float 5s ease-in-out infinite; animation-delay: -1s; }
.float-d { animation: float 7s ease-in-out infinite; animation-delay: -2s; }
.float-e { animation: float 5.5s ease-in-out infinite reverse; animation-delay: -.5s; }
.float-f { animation: float 9s ease-in-out infinite; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50%     { transform: translateY(-14px) rotate(calc(var(--r,0deg) + 3deg)); }
}
.sticker-tape { --r: -8deg; }
.sticker-arrow { --r: 12deg; }
.sticker-star-1 { --r: -12deg; }

@media (max-width: 900px) {
  .sticker-badge, .sticker-arrow, .sticker-blob { display: none; }
  .sticker-star-1 { width: 60px; right: 4%; }
  .sticker-tape { top: 30px; width: 200px; left: -12px; }
  .sticker-smile { width: 55px; bottom: 40px; right: 6%; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-inner { max-width: 100%; }
  /* keep the tilted stats strip within the viewport */
  .hero-strip { transform: rotate(-0.3deg); }
}

/* ==========================================================
   CLIENTS MARQUEE
   ========================================================== */
.clients {
  padding: 40px 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
}
.clients-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--paper);
  opacity: .7;
}
.clients-marquee { overflow: hidden; }
.clients-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  color: var(--paper);
}
.clients-track .sep {
  color: var(--hot);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: .5em;
  display: inline-flex;
  align-items: center;
  animation: spinSlow 5s linear infinite;
}

/* ==========================================================
   SECTION HEADERS
   ========================================================== */
.section-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 32px 40px;
}
.head-meta { margin-bottom: 20px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 3px 3px 0 var(--ink);
}
.tag-mint { background: var(--mint); }
.tag-peach { background: var(--peach); }
.tag-sky { background: var(--sky); }
.tag-lilac { background: var(--lilac); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 100px);
  line-height: .95;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 96, "wght" 800;
  margin-bottom: 20px;
}
.section-title .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--hot);
  letter-spacing: -0.02em;
}
.section-title .section-arrow {
  display: inline-block;
  color: var(--hot);
  font-weight: 800;
  animation: bounce 1.4s ease-in-out infinite;
  margin-left: 12px;
}
.section-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 500px;
}

/* ==========================================================
   WORK / REELS
   ========================================================== */
.work {
  padding-bottom: 60px;
  overflow: hidden;
}
.reel {
  overflow: hidden;
  padding: 24px 0;
  margin: 8px 0;
}
.reel-track {
  display: inline-flex;
  gap: 28px;
  padding-left: 28px;
  will-change: transform;
}
.reel-right .reel-track { animation: scroll-x 60s linear infinite; }
.reel-left  .reel-track { animation: scroll-x-rev 55s linear infinite; }

.reel:hover .reel-track { animation-play-state: paused; }

.tile {
  flex: 0 0 340px;
  aspect-ratio: 3/4;
  position: relative;
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-2);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  display: block;
}
.tilt-l { transform: rotate(-2.5deg); }
.tilt-r { transform: rotate(2deg); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }

.tile-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px;
  height: 26px;
  background: rgba(255, 207, 168, .78);
  border: 1px dashed rgba(26,22,20,.35);
  z-index: 3;
}
.tile-info {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 2;
}
.tile-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--hot);
}
.tile-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 3px;
}
.tile-play {
  position: absolute;
  right: -6px; top: -14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  opacity: 0;
  transform: scale(.6) rotate(8deg);
  transition: opacity .2s, transform .2s;
}

.tile:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 10px 10px 0 var(--hot);
  z-index: 5;
}
.tile:hover img { transform: scale(1.08); }
.tile:hover .tile-play { opacity: 1; transform: scale(1) rotate(-4deg); }

.tile-lilac { background: var(--lilac); }
.tile-mint { background: var(--mint); }
.tile-peach { background: var(--peach); }
.tile-sky { background: var(--sky); }

.work-footer {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 0 32px;
  text-align: center;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--ink);
  transition: color .2s;
}
.link-underline:hover { color: var(--hot); border-color: var(--hot); }
.link-underline span { transition: transform .2s; }
.link-underline:hover span { transform: translateX(6px); }

/* ==========================================================
   SERVICES / BENTO
   ========================================================== */
.services { padding-bottom: 80px; }
.bento {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  grid-auto-flow: dense;
}
.card {
  position: relative;
  padding: 26px 26px 26px;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.card-lilac { background: var(--lilac); }
.card-mint  { background: var(--mint); }
.card-peach { background: var(--peach); }
.card-sky   { background: var(--sky); }
.card-tall  { grid-row: span 2; }

.card:hover {
  transform: rotate(0deg) translate(-3px,-3px) scale(1.02);
  box-shadow: 10px 10px 0 var(--ink);
  z-index: 5;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  opacity: .55;
  margin-bottom: 14px;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: .95;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 60, "wght" 800;
  margin-bottom: 12px;
}
.card-title .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
}
.card p {
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 18px;
}
.card-list {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: auto;
  border-top: 1.5px dashed var(--ink);
  padding-top: 12px;
}
.card-sticker {
  position: absolute;
  top: -14px;
  right: -12px;
  background: var(--hot);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--ink);
  animation: bounce 2s ease-in-out infinite;
}
.card-sticker-2 {
  background: var(--paper);
  color: var(--ink);
  top: auto; bottom: 18px; right: -12px;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .card-tall { grid-row: auto; }
}

/* ==========================================================
   MANIFESTO STRIP
   ========================================================== */
.manifesto {
  background: var(--hot);
  color: var(--paper);
  padding: 40px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.4deg);
  /* Sit exactly within the viewport. The -1.4deg tilt leaves tiny
     triangular gaps at the corners, which we mask with negative
     vertical margins and let the section colors either side absorb. */
  margin: 40px 0;
  width: 100%;
}
.manifesto-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: scroll-x 22s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 110px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.manifesto-track .italic {
  font-family: var(--font-italic);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
}
.manifesto-track .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about { padding-bottom: 80px; }
.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 32px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 80, "wght" 800;
  margin-bottom: 32px;
}
.about-title .italic {
  font-family: var(--font-italic);
  font-weight: 400;
  font-style: italic;
  color: var(--hot);
  font-size: 1.1em;
}
.about-title .highlight {
  background: var(--mint);
  padding: 0 8px;
  transform: rotate(-1deg);
  display: inline-block;
  border: 2px solid var(--ink);
  border-radius: 6px;
}
.about-body p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 560px;
}

.about-collage {
  position: relative;
  height: 520px;
}
.polaroid {
  position: absolute;
  width: 200px;
  padding: 12px 12px 40px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .3s;
}
.polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
}
.polaroid-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--lilac);
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.polaroid-img::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: .55;
  pointer-events: none;
}
.polaroid-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}
.polaroid-scene { transition: transform .4s cubic-bezier(.22,1,.36,1); }
.polaroid:hover .polaroid-scene { transform: scale(1.04) rotate(-1deg); }
.polaroid-cap {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
}
.polaroid-1 { top: 20px; left: 20px; transform: rotate(-6deg); z-index: 3; }
.polaroid-2 { top: 60px; right: 20px; transform: rotate(5deg); z-index: 2; }
.polaroid-3 { bottom: 40px; left: 100px; transform: rotate(-3deg); z-index: 4; }

.sticker-cutout {
  position: absolute;
  bottom: 20px; right: 0;
  width: 130px;
  filter: drop-shadow(3px 3px 0 var(--ink));
  z-index: 5;
}
.scribble {
  position: absolute;
  top: 0; right: 40px;
  width: 160px;
  z-index: 6;
}
.scribble-note {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  display: block;
  transform: rotate(-4deg);
  margin-top: -8px;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-collage { height: 480px; }
}

.pillars {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 2px dashed var(--ink);
  border-bottom: 2px dashed var(--ink);
}
.pillar-num {
  color: var(--hot);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  display: inline-block;
  animation: spinSlow 8s linear infinite;
}
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 14px 0 8px;
  font-variation-settings: "opsz" 60, "wght" 800;
}
.pillar p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 780px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ==========================================================
   CONTACT / FOOTER
   ========================================================== */
.contact {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
}
.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 2;
}

.contact-stickers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.c-sticker { position: absolute; }
.c-star { top: 80px; right: 6%; width: 110px; filter: drop-shadow(3px 3px 0 var(--paper)); }
.c-blob { bottom: 60px; left: 4%; width: 180px; opacity: .6; filter: drop-shadow(3px 3px 0 var(--paper)); }

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 100px;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(60px, 11vw, 180px);
  line-height: .92;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 96, "wght" 800;
  margin-bottom: 50px;
  color: var(--paper);
}
.contact-title span {
  display: inline-block;
  margin-right: 20px;
}
.contact-title .italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--peach);
}
.contact-title .outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--paper);
}
.contact-title .wave {
  color: var(--hot);
  animation: bounce 1.6s ease-in-out infinite;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 54px);
  padding: 20px 40px;
  background: var(--hot);
  color: var(--paper);
  border: 3px solid var(--paper);
  border-radius: 100px;
  box-shadow: 8px 8px 0 var(--paper);
  margin-bottom: 60px;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: -0.02em;
}
.contact-email:hover {
  transform: translate(-3px,-3px);
  box-shadow: 12px 12px 0 var(--paper);
}
.arrow-big { width: 40px; height: 40px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px dashed var(--paper);
}
.c-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--peach);
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-grid a, .contact-grid p {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper);
  line-height: 1.4;
  font-weight: 500;
}
.contact-grid a { border-bottom: 1px solid transparent; transition: border-color .2s; display: inline-block; }
.contact-grid a:hover { border-color: var(--peach); color: var(--peach); }

.social-sticker {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px;
  background: var(--paper);
  color: var(--ink) !important;
  font-family: var(--font-mono) !important;
  font-weight: 700;
  font-size: 14px !important;
  border-radius: 50%;
  margin-right: 8px;
  transition: transform .2s, background .2s;
  border: 2px solid var(--paper);
}
.social-sticker:hover {
  background: var(--peach) !important;
  transform: translateY(-3px) rotate(-8deg);
  border-color: var(--peach) !important;
  color: var(--ink) !important;
}

.contact-form-mock {
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  padding: 30px;
  border: 3px solid var(--paper);
  box-shadow: 8px 8px 0 var(--hot);
  transform: rotate(-0.5deg);
}
.form-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 2px dashed rgba(26,22,20,.2);
}
.form-row label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  min-width: 130px;
  font-weight: 700;
}
.form-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  padding: 4px 0;
  outline: none;
}
.form-row input::placeholder { color: rgba(26,22,20,.4); }
.form-send {
  margin-top: 20px;
  padding: 16px 32px;
  background: var(--hot);
  color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
  font-variation-settings: "opsz" 30, "wght" 700;
}
.form-send:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-title span { margin-right: 8px; }
}

.foot {
  border-top: 3px solid var(--paper);
  padding-top: 0;
  background: var(--ink);
}
.foot-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-bottom: 2px dashed rgba(244,239,228,.3);
}
.foot-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variation-settings: "opsz" 60, "wght" 800;
}
.foot-track .sep { color: var(--peach); font-family: var(--font-mono); animation: spinSlow 5s linear infinite; }
.foot-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244,239,228,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================
   Reveal on scroll
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   SHOWREEL
   ========================================================== */
.showreel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  position: relative;
}
.showreel-head {
  max-width: 1180px;
  margin: 0 auto 30px;
  text-align: center;
}
.showreel-head .head-meta { margin-bottom: 16px; }
.showreel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .95;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.showreel-title .italic {
  font-family: var(--font-italic);
  font-weight: 400;
  font-style: italic;
  color: var(--hot);
  font-size: 1.05em;
}

.showreel-frame-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px;
}

.showreel-frame {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 12px 12px 0 var(--hot);
  overflow: hidden;
  cursor: none;
  transform: rotate(-.4deg);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.showreel-frame:hover {
  transform: rotate(0deg) translate(-3px,-3px);
  box-shadow: 16px 16px 0 var(--hot);
}

/* Placeholder "film" background */
.showreel-thumb {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 400px at 20% 30%, rgba(201,184,255,.35), transparent 60%),
    radial-gradient(900px 500px at 80% 70%, rgba(255,207,168,.35), transparent 60%),
    radial-gradient(700px 400px at 60% 20%, rgba(168,220,255,.28), transparent 60%),
    linear-gradient(135deg, #1a1614, #2a2320 60%, #1a1614);
}
.showreel-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.25 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .5;
}
.showreel-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 3px);
  pointer-events: none;
}
.showreel-bars {
  position: absolute; left: 0; right: 0; bottom: 22%;
  display: flex; gap: 6px;
  justify-content: center;
  padding: 0 16%;
  height: 60px;
  align-items: flex-end;
}
.showreel-bars span {
  flex: 1;
  height: 30%;
  background: var(--peach);
  opacity: .7;
  border-radius: 2px;
  animation: bars 1.4s ease-in-out infinite;
}
.showreel-bars span:nth-child(1) { animation-delay: -0.1s; background: var(--lilac); }
.showreel-bars span:nth-child(2) { animation-delay: -0.3s; }
.showreel-bars span:nth-child(3) { animation-delay: -0.5s; background: var(--mint); }
.showreel-bars span:nth-child(4) { animation-delay: -0.7s; }
.showreel-bars span:nth-child(5) { animation-delay: -0.2s; background: var(--sky); }
.showreel-bars span:nth-child(6) { animation-delay: -0.4s; }
.showreel-bars span:nth-child(7) { animation-delay: -0.6s; background: var(--peach); }
.showreel-bars span:nth-child(8) { animation-delay: -0.8s; }
.showreel-bars span:nth-child(9) { animation-delay: -0.1s; background: var(--lilac); }
.showreel-bars span:nth-child(10){ animation-delay: -0.5s; }
@keyframes bars {
  0%,100% { height: 30%; }
  50%     { height: 90%; }
}

.showreel-tc {
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: .06em;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  background: rgba(0,0,0,.35);
  padding: 4px 10px;
  border-radius: 3px;
}
.showreel-tc-r {
  left: auto; right: 20px;
  color: var(--hot);
  animation: pulseDot 1s infinite;
}

.showreel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  pointer-events: none;
}
.showreel-play-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  opacity: .4;
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: .55; }
  50%     { transform: translate(-50%,-50%) scale(1.35); opacity: 0; }
}
.showreel-play-icon {
  width: 90px; height: 90px;
  background: var(--hot);
  color: var(--paper);
  border: 3px solid var(--paper);
  border-radius: 50%;
  padding: 14px 12px 14px 20px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .25s;
}
.showreel-frame:hover .showreel-play-icon { transform: scale(1.08) rotate(-4deg); }
.showreel-play-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 100px;
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
}

.showreel-corner {
  position: absolute;
  color: var(--paper);
  opacity: .35;
  font-size: 18px;
  animation: spinSlow 8s linear infinite;
}
.showreel-corner.tl { top: 14px; left: 14px; }
.showreel-corner.tr { top: 14px; right: 14px; }
.showreel-corner.bl { bottom: 14px; left: 14px; }
.showreel-corner.br { bottom: 14px; right: 14px; }

/* Tape strips corner accents */
.showreel-tape {
  position: absolute;
  width: 120px; height: 32px;
  border: 1.5px solid var(--ink);
  z-index: 4;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, transparent 0 6px, rgba(26,22,20,.12) 6px 8px);
}
.st-1 { top: 0; left: 40px;   transform: rotate(-5deg);  background-color: var(--mint); }
.st-2 { top: 8px; right: 60px; transform: rotate(4deg);   background-color: var(--peach); }
.st-3 { bottom: 4px; left: 90px;  transform: rotate(3deg);  background-color: var(--sky); }
.st-4 { bottom: 0; right: 40px; transform: rotate(-4deg); background-color: var(--lilac); }

.showreel-badge {
  position: absolute;
  top: -30px; right: -20px;
  width: 130px;
  z-index: 5;
  filter: drop-shadow(3px 3px 0 var(--ink));
}
.showreel-arrow {
  position: absolute;
  top: 40px; left: -10px;
  width: 130px;
  z-index: 5;
  transform: rotate(-6deg);
}
.showreel-arrow svg { width: 100%; height: auto; }
.arrow-note {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  display: block;
  margin-top: -6px;
  padding-left: 18px;
  transform: rotate(4deg);
}

.showreel-strip {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 18px 22px;
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(.5deg);
}
.showreel-strip > div {
  display: flex; flex-direction: column;
  padding: 0 20px;
  border-right: 2px dashed rgba(26,22,20,.2);
  min-width: 130px;
  align-items: center;
}
.showreel-strip > div:last-child { border-right: 0; }
.ss-k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-soft);
  font-weight: 700;
}
.ss-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  font-variation-settings: "opsz" 60, "wght" 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

@media (max-width: 900px) {
  .showreel-badge { width: 90px; top: -20px; right: -6px; }
  .showreel-arrow { display: none; }
  .st-1, .st-2, .st-3, .st-4 { width: 80px; height: 24px; }
  .showreel-play-icon { width: 68px; height: 68px; }
  .showreel-play-ring { width: 100px; height: 100px; }
  .showreel-strip { border-radius: 20px; }
  .showreel-strip > div { min-width: 100px; padding: 8px 12px; border-right: 0; border-bottom: 2px dashed rgba(26,22,20,.15); }
}

/* ==========================================================
   VIDEO LIGHTBOX
   ========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: lb-in .3s cubic-bezier(.22,1,.36,1); }
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,22,20,0.86);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lightbox-panel {
  position: relative;
  width: min(1200px, 100%);
  max-height: 90vh;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 10px 10px 0 var(--hot);
  padding: 20px 20px 24px;
  animation: lb-pop .4s cubic-bezier(.34,1.56,.64,1);
  transform-origin: center;
}
@keyframes lb-pop {
  from { transform: scale(.86) rotate(-2deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: -18px; right: -18px;
  width: 52px; height: 52px;
  background: var(--hot);
  color: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  z-index: 3;
}
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-close:hover {
  transform: rotate(90deg) translate(0,0);
  box-shadow: 6px 6px 0 var(--ink);
}
.lightbox-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  padding: 4px 8px 14px;
  color: var(--ink);
  font-variation-settings: "opsz" 40, "wght" 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lightbox-title::before {
  content: "▶";
  color: var(--hot);
  font-size: .8em;
}
.lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.lightbox-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.lightbox-tape {
  position: absolute;
  width: 100px; height: 26px;
  background: var(--peach);
  border: 1.5px solid var(--ink);
  opacity: .85;
  pointer-events: none;
}
.lt-1 { top: -13px; left: 40px; transform: rotate(-4deg); background: var(--mint); }
.lt-2 { top: -13px; right: 90px; transform: rotate(3deg); background: var(--sky); }

@media (max-width: 700px) {
  .lightbox { padding: 16px; }
  .lightbox-panel { padding: 14px 14px 16px; box-shadow: 6px 6px 0 var(--hot); }
  .lightbox-close { top: -14px; right: -14px; width: 44px; height: 44px; }
  .lt-1, .lt-2 { display: none; }
}

/* ==========================================================
   MOBILE MARQUEE SPEED
   Marquees animate 0 → -50% regardless of viewport width. On
   narrow screens the pixel distance shrinks, so a fixed duration
   makes them crawl. Shorten durations to keep px/sec constant-ish.
   ========================================================== */
@media (max-width: 900px) {
  .ticker-track      { animation-duration: 22s; }
  .clients-track     { animation-duration: 18s; }
  .manifesto-track   { animation-duration: 14s; }
  .foot-track        { animation-duration: 18s; }
}
@media (max-width: 600px) {
  .ticker-track      { animation-duration: 18s; }
  .clients-track     { animation-duration: 14s; }
  .manifesto-track   { animation-duration: 11s; }
  .foot-track        { animation-duration: 14s; }
}

/* ==========================================================
   MOBILE WORK REEL — native horizontal swipe carousel
   Auto-scrolling marquees are hard to interact with on touch.
   On mobile, kill the animation, turn each reel into a native
   horizontal-scroll snap carousel, straighten the tiles.
   ========================================================== */
@media (max-width: 780px) {
  .work { padding-bottom: 40px; }
  .reel {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    padding: 30px 0 18px;
    margin: 4px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Firefox */
  }
  .reel::-webkit-scrollbar { display: none; } /* WebKit */

  /* kill the marquee animation entirely */
  .reel-right .reel-track,
  .reel-left  .reel-track {
    animation: none;
    transform: none;
    padding-left: 0;
    padding-right: 24px;
    gap: 20px;
  }

  /* half the tiles are duplicates for seamless marquee — hide on mobile */
  .reel-track > .tile[aria-hidden="true"] { display: none; }

  /* straighten tiles for snap; size to ~80% viewport with a peek */
  .tile {
    flex: 0 0 82vw;
    max-width: 340px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: rotate(0deg) !important;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .tile:first-child { margin-left: 24px; }

  /* soften hover pop on mobile (touch = hover fires weirdly) */
  .tile:hover {
    transform: rotate(0deg) scale(1) !important;
    box-shadow: 5px 5px 0 var(--ink);
    z-index: auto;
  }
  .tile:hover .tile-play { opacity: 0; }

  /* swipe hint below each reel */
  .reel + .reel::before,
  .work .reel:first-of-type::before {
    content: none;
  }
}

@media (max-width: 780px) {
  .work .section-head .section-sub { font-size: 16px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
