/* ============================================
   Yepp Digital — Playful Brutalism
   ============================================ */

:root {
  --ink:   #0E0E10;
  --soot:  #1A1A1D;
  --cream: #F5F0E8;
  --blood: #FF3D2E;
  --grape: #6B3FE8;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  font-feature-settings: "ss01", "ss02", "cv11";
  cursor: none;
}

/* Hide cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot { display: none !important; }
}

/* ============================================
   CUSTOM CURSOR (dot only)
   ============================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--blood);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, background .2s ease, opacity .2s;
  mix-blend-mode: difference;
}
body.cursor-big .cursor-dot {
  width: 60px; height: 60px;
  background: var(--blood);
  opacity: 0.9;
}

/* ============================================
   BRAND MARK (new geometric Y logo on dark bg)
   ============================================ */
.brand-mark {
  filter: invert(1);
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 250px 250px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display {
  font-family: 'Boldonse', serif;
  font-weight: 400;
  font-feature-settings: "ss01";
}
.font-serif {
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1;
}

/* ============================================
   HERO WORDMARK — outlined + hatched fill
   Transparent letters with a crisp border and
   diagonal line texture inside for readability.
   ============================================ */
.hero-wordmark {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--blood);
  text-stroke: 1.5px var(--blood);
  background-image: repeating-linear-gradient(
    -52deg,
    var(--blood) 0,
    var(--blood) 2px,
    transparent 2px,
    transparent 12px
  );
  -webkit-background-clip: text;
  background-clip: text;
  /* neon edge glow + depth shadow — lifts the letters off the grain */
  filter:
    drop-shadow(0 0 5px rgba(255, 61, 46, 0.45))
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.55));
  /* extend the background paint box downward so the descenders
     of "y" and "p" get the diagonal lines too (layout kept via
     the equal negative margin) */
  padding-bottom: 0.5em;
  margin-bottom: -0.5em;
  /* slow, seamless drift of the hatch (one full stripe period) */
  --hatch-x: 9.456px;
  --hatch-y: 7.388px;
  animation: hero-hatch-drift 5s linear infinite;
  will-change: background-position;
}

@keyframes hero-hatch-drift {
  from { background-position: 0 0; }
  to   { background-position: var(--hatch-x) var(--hatch-y); }
}

/* keep the red dot solid so it still pops */
.hero-wordmark .hero-dot {
  -webkit-text-fill-color: var(--blood);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  background: none;
  color: var(--blood);
}

@media (min-width: 640px) {
  .hero-wordmark {
    -webkit-text-stroke-width: 2.5px;
    text-stroke: 2.5px var(--blood);
    background-image: repeating-linear-gradient(
      -52deg,
      var(--blood) 0,
      var(--blood) 3px,
      transparent 3px,
      transparent 18px
    );
    /* one stripe period for the 18px desktop pattern */
    --hatch-x: 14.184px;
    --hatch-y: 11.083px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wordmark,
  .hero-glow { animation: none; }
}

/* atmospheric bloom behind the hero wordmark */
.hero-glow {
  position: absolute;
  z-index: -1;
  left: 44%;
  top: 42%;
  width: 130vw;
  max-width: 2000px;
  aspect-ratio: 2 / 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(64% 72% at 38% 46%, rgba(255, 61, 46, 0.21), transparent 74%),
    radial-gradient(54% 64% at 54% 58%, rgba(107, 63, 232, 0.16), transparent 76%);
  filter: blur(68px);
  pointer-events: none;
  animation: hero-bloom 11s ease-in-out infinite;
}

/* slow breathing pulse for the atmosphere */
@keyframes hero-bloom {
  0%, 100% { opacity: 0.8;  transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.07); }
}

/* ============================================
   NAV
   ============================================ */
.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  color: rgba(245, 240, 232, 0.7);
  transition: color .2s, background .2s;
}
.nav-pill:hover {
  color: var(--ink);
  background: var(--cream);
}

/* ============================================
   CHIPS
   ============================================ */
.chip {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(245, 240, 232, 0.75);
  transition: all .25s ease;
  cursor: none;
}
.chip:hover {
  background: var(--blood);
  color: var(--ink);
  border-color: var(--blood);
  transform: translateY(-2px) rotate(-2deg);
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  /* prevent Boldonse ascenders/descenders from being clipped
     by the tight default line-box */
  line-height: 1.25;
  padding: 0.12em 0;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-slow { animation-duration: 55s; }
.marquee-fast { animation-duration: 22s; }
.marquee-reverse { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   INFINITE X RIBBONS (manifesto → crews bridge)
   ============================================ */
.ribbon-x { padding: 4rem 0; }

.ribbon-row {
  width: 130vw;
  margin-left: -15vw;
  padding: 0.6rem 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
}
.ribbon-row--a {
  transform: rotate(-5deg);
  z-index: 2;
}
.ribbon-row--b {
  transform: rotate(5deg);
  margin-top: -2.5rem;
  z-index: 1;
}

@media (max-width: 768px) {
  .ribbon-row { width: 140vw; margin-left: -20vw; }
  .ribbon-row--a { transform: rotate(-6deg); }
  .ribbon-row--b { transform: rotate(6deg); margin-top: -1.5rem; }
}

/* ============================================
   CREWS — sticky vertical stacking + visual mosaics
   ============================================ */

/* sticky stack — each crew slides up over previous */
.crews-stack {
  /* parent is just a wrapper, sticky on children handles stacking */
}
.crew-block {
  /* solid bg ensures each fully covers the previous on stack */
  will-change: transform;
}

/* content always visible — sticky stacking IS the transition.
   one-time subtle enter on first viewport entry. */
.crew-text-reveal,
.crew-visual-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}

/* fixed side progress indicator */
.crews-progress.is-visible { opacity: 1; pointer-events: auto; }
.progress-pill[data-step].is-active > span:first-child {
  background: var(--blood) !important;
  width: 28px;
  border-radius: 999px;
}
.progress-pill[data-step].is-active .pill-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--cream);
}
.progress-pill { cursor: none; }
.progress-pill:hover .pill-label { opacity: 1; transform: translateX(0); }

/* ---- VISUAL MOSAICS ---- */

.v-mosaic {
  display: grid;
  gap: 10px;
  width: 100%;
  aspect-ratio: 5 / 4;
  position: relative;
}
.v-card {
  position: relative;
  border-radius: 18px;
  padding: 18px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.crew-block:hover .v-card { transform: translateY(-2px); }
.crew-block:hover .v-card:nth-child(2) { transform: translateY(-4px); }
.crew-block:hover .v-card:nth-child(3) { transform: translateY(-3px); }

/* ---- BRAND ---- */
.v-brand { grid-template-columns: 1.45fr 1fr; grid-template-rows: 1.3fr 1fr; }
.v-brand .v-logo {
  grid-row: 1 / span 2; align-items: center; justify-content: center;
  background: #0a0a0c;
}
.v-brand .v-type {
  background: var(--cream); color: var(--ink);
  align-items: center; justify-content: center;
}
.v-brand .v-palette { background: var(--soot); padding: 28px 0 0 0; }
.v-brand .v-palette > .grid { width: 100%; height: 100%; }
.v-brand .v-tape {
  background: var(--blood); color: var(--ink);
  align-items: center; justify-content: center; text-align: center;
}

/* ---- WEB ---- */
.v-web { grid-template-columns: 1.7fr 1fr; grid-template-rows: 1.25fr 1fr; }
.v-web .v-browser  { grid-row: 1; padding: 0; background: var(--soot); }
.v-web .v-mobile   { grid-row: 1 / span 2; padding: 0; background: var(--grape); align-items: center; justify-content: center; position: relative; }
.v-web .v-code     { background: #050507; padding: 26px 22px; }
.v-web .v-score    { background: var(--ink); align-items: center; justify-content: center; text-align: center; }

/* browser chrome */
.v-browser__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.v-browser__bar > span:not(.v-browser__url) {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.v-browser__url {
  margin-left: 10px; padding: 3px 10px;
  background: rgba(255,255,255,.06); border-radius: 999px;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: rgba(245,240,232,.6); letter-spacing: .05em;
}
.v-browser__screen {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(107,63,232,.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255,61,46,.12), transparent 50%);
}

/* mobile frame */
.v-web .v-mobile::before {
  content: ''; position: absolute; inset: 18px 14px;
  border-radius: 22px; background: var(--cream); z-index: 0;
}
.v-mobile__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 14px; background: var(--ink); border-radius: 999px; z-index: 2;
}
.v-mobile__screen {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 18px; text-align: center;
}

/* ---- MOTION ---- */
.v-motion { grid-template-columns: 1.4fr 1fr; grid-template-rows: 0.8fr 1.2fr 0.9fr; }
.v-motion .v-film {
  grid-column: 1 / span 2; padding: 0;
  background: var(--ink); overflow: hidden;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; padding: 6px;
}
.v-film__frame {
  position: relative; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blood) 0%, #b62a1f 60%, #6b1a13 100%);
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.v-film__frame:nth-child(even) { background: linear-gradient(135deg, var(--grape) 0%, #4a2cb0 60%, #2a1865 100%); }
.v-film__frame > span {
  font-family: 'Geist Mono', monospace; font-size: 9px;
  padding: 4px 6px; color: rgba(255,255,255,.7);
}
.v-motion .v-play {
  grid-row: 2; grid-column: 1;
  background: var(--cream); color: var(--ink);
  align-items: center; justify-content: center;
}
.v-motion .v-frame {
  grid-row: 2; grid-column: 2;
  background: var(--soot); color: var(--cream);
}
.v-motion .v-word {
  grid-row: 3; grid-column: 1 / span 2;
  background: var(--blood); color: var(--ink);
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.v-word__inner {
  display: flex; gap: clamp(4px, 1vw, 16px);
  font-family: 'Boldonse', serif;
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1;
}
.v-word__inner > span:nth-child(even) { transform: translateY(8%); }

/* ---- GROWTH ---- */
.v-growth { grid-template-columns: 1.5fr 1fr; grid-template-rows: 1.2fr 1fr; }
.v-growth .v-kpi {
  background: var(--cream); color: var(--ink);
  align-items: flex-start; justify-content: center;
  padding: 28px;
}
.v-growth .v-chart {
  background: var(--soot); padding: 16px;
  align-items: flex-end; flex-direction: row;
}
.v-chart__bars {
  display: flex; align-items: flex-end; justify-content: space-between;
  width: 100%; height: 70%; gap: 6px;
}
.v-chart__bars > div {
  flex: 1; background: var(--blood);
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}
.v-chart__bars > div:last-child {
  background: var(--cream);
}
.v-growth .v-email { background: var(--ink); }
.v-growth .v-arrow {
  background: var(--blood); color: var(--ink);
  align-items: center; justify-content: center;
  padding: 0;
}

/* ============================================
   01 — REELS & TIKTOK PRODUCTION
   ============================================ */
.v-reels { grid-template-columns: 1fr 1.15fr; grid-template-rows: 1fr 1fr; }
.v-reels .v-phone {
  grid-row: 1 / span 2; padding: 0;
  background: var(--grape);
  align-items: center; justify-content: center;
  position: relative;
}
.v-reels .v-phone::before {
  content: ''; position: absolute; inset: 18px 14px;
  border-radius: 24px; background: #101015; z-index: 0;
  border: 1px solid rgba(255,255,255,.06);
}
.v-phone__notch {
  position: absolute; top: 26px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 14px; background: var(--ink);
  border-radius: 999px; z-index: 3;
}
.v-phone__screen {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: flex-start;
  padding: 60px 26px 32px; width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,61,46,.28), transparent 55%),
    radial-gradient(circle at 70% 100%, rgba(107,63,232,.35), transparent 55%);
  border-radius: 22px;
  overflow: hidden;
}
.v-phone__hud {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: rgba(245,240,232,.7); letter-spacing: .05em;
}
.v-reels .v-play {
  background: var(--cream); color: var(--ink);
  align-items: center; justify-content: center;
}
.v-reels .v-ratio {
  background: var(--blood); color: var(--ink);
  align-items: flex-start; justify-content: center;
  padding: 22px;
}
.v-reels .v-views {
  grid-column: 2; grid-row: 2;
  background: var(--ink); color: var(--cream);
  align-items: flex-start; justify-content: center;
  padding: 22px;
}

/* ============================================
   02 — CREATIVE CONTENT
   ============================================ */
.v-content { grid-template-columns: 1fr 1.2fr; grid-template-rows: 1fr 1fr; }
.v-content .v-lens {
  grid-row: 1 / span 2;
  background: #0a0a0c;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.v-lens__ring {
  width: 68%; aspect-ratio: 1/1; border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      rgba(255,61,46,.6), rgba(107,63,232,.5),
      rgba(245,240,232,.3), rgba(255,61,46,.6));
  padding: 3px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), inset 0 0 40px rgba(0,0,0,.5);
}
.v-lens__inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a1a20 0%, #050506 70%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.05);
}
.v-lens__dot {
  width: 22%; height: 22%; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blood) 0%, #7d1e15 80%);
  box-shadow: 0 0 20px rgba(255,61,46,.5);
}
.v-content .v-grid9 {
  background: var(--soot);
  padding: 22px 14px 14px;
  align-items: stretch; justify-content: flex-end;
}
.v-grid9__wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; width: 100%; height: 78%;
}
.v-grid9__cell {
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(255,61,46,.25), rgba(107,63,232,.25));
}
.v-grid9__cell--0 { background: linear-gradient(135deg, var(--blood), #7d1e15); }
.v-grid9__cell--2 { background: linear-gradient(135deg, var(--grape), #2a1865); }
.v-grid9__cell--4 { background: var(--cream); }
.v-grid9__cell--6 { background: linear-gradient(135deg, var(--grape), var(--blood)); }
.v-grid9__cell--8 { background: linear-gradient(135deg, var(--blood), var(--grape)); }
.v-content .v-copy {
  background: var(--cream); color: var(--ink);
  align-items: flex-start; justify-content: center;
  padding: 22px;
}
.v-content .v-cal {
  background: var(--ink); color: var(--cream);
  padding: 22px 22px 16px;
  align-items: stretch; justify-content: flex-end;
  gap: 6px;
}
.v-cal__row {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: rgba(245,240,232,.55); letter-spacing: .1em;
}
.v-cal__row > span:first-child { width: 12px; }
.v-cal__row > span:last-child {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(245,240,232,.08);
}
.v-cal__row > span.on { background: var(--blood); }
.v-cal__row > span.on.on--alt { background: var(--grape); }

/* ============================================
   04 — AI CONTENT DESIGN
   ============================================ */
.v-ai { grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; }
.v-ai .v-prompt {
  background: #050507;
  align-items: flex-start; justify-content: center;
  padding: 26px 24px;
}
.v-ai .v-gen {
  background: var(--soot);
  padding: 22px 14px 14px;
  align-items: stretch; justify-content: flex-end;
}
.v-gen__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; width: 100%; height: 82%;
}
.v-gen__cell {
  border-radius: 2px;
}
.v-gen__cell--0 { background: linear-gradient(135deg, var(--blood) 0%, transparent 100%); }
.v-gen__cell--1 { background: linear-gradient(135deg, var(--grape) 0%, transparent 100%); }
.v-gen__cell--2 { background: linear-gradient(135deg, var(--cream) 0%, transparent 100%); }
.v-gen__cell--3 { background: linear-gradient(135deg, #050507 0%, rgba(255,61,46,.4) 100%); }
.v-ai .v-badge {
  background: var(--blood); color: var(--ink);
  align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.v-badge__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.v-badge__spark {
  font-size: 18px; color: var(--ink);
  animation: badge-spark 3s ease-in-out infinite;
  margin-bottom: 4px;
}
@keyframes badge-spark {
  0%, 100% { transform: scale(1) rotate(0); opacity: .8; }
  50%      { transform: scale(1.4) rotate(180deg); opacity: 1; }
}
.v-ai .v-model {
  background: var(--cream); color: var(--ink);
  align-items: flex-start; justify-content: center;
  padding: 22px;
}
.v-ai__cursor {
  display: inline-block;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================
   05 — BRAND STORYTELLING
   ============================================ */
.v-story { grid-template-columns: 1.2fr 1fr; grid-template-rows: 1.15fr 1fr; }
.v-story .v-chapter {
  grid-row: 1 / span 2;
  background: var(--cream); color: var(--ink);
  align-items: flex-start; justify-content: center;
  padding: 32px 28px;
  position: relative;
}
.v-story .v-chapter::after {
  content: ''; position: absolute; top: 20px; bottom: 20px; right: 10px;
  width: 3px; background: var(--blood); border-radius: 3px;
}
.v-story .v-quote {
  background: #050507; color: var(--cream);
  align-items: flex-start; justify-content: center;
  padding: 22px 24px;
}
.v-story .v-timeline {
  background: var(--soot);
  padding: 22px 22px 16px;
  align-items: stretch; justify-content: center;
  gap: 12px;
  position: relative;
}
.v-timeline__line {
  position: absolute; left: 32px; top: 22px; bottom: 22px;
  width: 1px; background: rgba(245,240,232,.15);
}
.v-timeline__row {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Geist Mono', monospace; font-size: 10px;
  color: rgba(245,240,232,.65); letter-spacing: .1em; text-transform: uppercase;
  position: relative;
}
.v-timeline__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(245,240,232,.25);
  border: 2px solid var(--soot);
  z-index: 1; flex-shrink: 0;
}
.v-timeline__dot--red { background: var(--blood); box-shadow: 0 0 10px rgba(255,61,46,.5); }
.v-timeline__year { color: var(--cream); }
.v-timeline__label { color: rgba(245,240,232,.45); }
.v-story .v-tape {
  grid-column: 2; grid-row: 2;
  background: var(--blood); color: var(--ink);
  align-items: center; justify-content: center; text-align: center;
}

/* mobile fallback for mosaics */
@media (max-width: 768px) {
  .v-mosaic { aspect-ratio: 1 / 1; gap: 8px; }
  .v-card { padding: 14px 16px; border-radius: 14px; }
  .v-browser__bar { padding: 8px 10px; }
  .v-browser__url { font-size: 9px; }

  /* disable sticky stacking on mobile — fall back to normal flow */
  .crew-block {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    box-shadow: none !important;
  }
  .crew-block .max-w-\[1500px\] { padding-top: 4rem; padding-bottom: 4rem; }
  /* mobile shows all immediately (no scroll-trigger needed) */
  .crew-text-reveal,
  .crew-visual-reveal { opacity: 1; transform: none; }
}

/* ============================================
   WORK CARDS
   ============================================ */
.work-card .relative {
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
}
.work-card:hover .relative {
  box-shadow: 0 30px 80px -20px rgba(255, 61, 46, 0.25);
}

/* ============================================
   FAQ — smooth accordion via grid-template-rows
   ============================================ */
.faq-summary {
  cursor: none;
  background: none;
  border: none;
  color: inherit;
}
.faq-icon {
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              background-color .35s ease,
              color .35s ease,
              border-color .35s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--blood);
  color: var(--ink);
  border-color: var(--blood);
}

/* animated collapse */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.2,.7,.2,1);
}
.faq-body__inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

@media (prefers-reduced-motion: reduce) {
  .faq-body,
  .faq-icon { transition: none; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(14, 14, 16, 0.2);
}
.brief-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  padding: 0.75rem 0;
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  outline: none;
  transition: border-color .25s;
}
.brief-input:focus {
  border-bottom-color: var(--blood);
}
.brief-input::placeholder { color: rgba(245, 240, 232, 0.3); }

.brief-chip {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 9999px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.7);
  transition: all .2s;
}
.brief-chip:hover { color: var(--cream); border-color: var(--cream); }
.brief-chip.chip-active {
  background: var(--blood);
  color: var(--ink);
  border-color: var(--blood);
}

/* ============================================
   INSTAGRAM BUTTON (footer) — minimal pill,
   sits inside the site's ink/cream/blood palette.
   ============================================ */
.ig-btn { cursor: none; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes ping-slow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}
.animate-ping-slow {
  animation: ping-slow 2s ease-in-out infinite;
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10%); }
}
.animate-bounce-slow {
  animation: bounce-slow 2.4s ease-in-out infinite;
  display: inline-block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot { display: none; }
}
