/* Jaysco — creative director. Themed off the YouTube cover (pink sky, white arch bridge, sun flare)
   and the @jaysco_ profile. Plum-black body, blush + rose accents, cream ink, hard editorial type. */

:root {
  --ink: #140910;
  --ink-2: #1c1018;
  --ink-3: #251621;
  --cream: #f7eef2;
  --dim: #a9939f;
  --line: rgba(247,238,242,0.12);
  --sky: #f2b3d3;
  --sky-deep: #e88fbe;
  --rose: #ff4f9a;
  --flare: #fff4f9;
  --lip: #d92c3a;
  --gold: #d9b56a;
  --font-d: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-s: "Instrument Serif", Georgia, serif;
  --font-m: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.2,.8,.2,1);
  --pad: clamp(20px, 6vw, 88px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink); color: var(--cream);
  font-family: var(--font-d); font-size: 17px; line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  /* the sky's glow follows you down the page */
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at var(--gx, 50%) var(--gy, 20%), rgba(242,179,211,0.10), transparent 70%);
  transition: background-position 0.3s;
}
::selection { background: var(--rose); color: var(--ink); }
a { color: inherit; }
.mono { font-family: var(--font-m); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.serif { font-family: var(--font-s); font-style: italic; font-weight: 400; }
.muted { color: var(--dim); }
img { max-width: 100%; }

/* grain */
.grain { position: fixed; inset: 0; width: 100%; height: 100%; opacity: 0.05; pointer-events: none; z-index: 90; }
@keyframes grain { 0%{transform:translate(0,0)} 33%{transform:translate(-2%,1%)} 66%{transform:translate(1%,-2%)} 100%{transform:translate(0,0)} }

/* ---------- loader ---------- */
.loader { position: fixed; inset: 0; z-index: 500; background: var(--ink); display: none; overflow: hidden; }
.loader.on { display: block; }
.loader-word {
  position: absolute; left: var(--pad); bottom: 18vh; display: flex;
  font-weight: 900; font-variation-settings: "wdth" 125; font-size: clamp(64px, 14vw, 200px); line-height: 0.85;
  color: var(--cream); overflow: hidden; padding-bottom: 0.12em;
}
.loader-word span { display: inline-block; transform: translateY(110%); animation: rise 0.7s var(--ease) forwards; }
.loader-word span:nth-child(2){animation-delay:.05s} .loader-word span:nth-child(3){animation-delay:.1s}
.loader-word span:nth-child(4){animation-delay:.15s} .loader-word span:nth-child(5){animation-delay:.2s} .loader-word span:nth-child(6){animation-delay:.25s}
@keyframes rise { to { transform: translateY(0); } }
.loader-meta { position: absolute; left: var(--pad); right: var(--pad); bottom: 10vh; display: flex; justify-content: space-between; color: var(--dim); }
.loader-meta span:last-child { color: var(--rose); font-variant-numeric: tabular-nums; }
.loader-wipe { position: absolute; inset: 0; background: var(--sky); transform: scaleY(0); transform-origin: bottom; }
.loader.wipe .loader-wipe { animation: wipe-up 0.45s var(--ease) forwards; }
@keyframes wipe-up { to { transform: scaleY(1); } }
.loader.out { animation: loader-out 0.6s var(--ease) forwards; }
@keyframes loader-out { to { transform: translateY(-100%); } }

/* ---------- cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: grid; place-items: center; position: fixed; top: 0; left: 0; z-index: 400;
    width: 12px; height: 12px; border-radius: 50%; background: var(--rose);
    pointer-events: none; transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.2s, opacity 0.2s;
    mix-blend-mode: normal; opacity: 0;
  }
  .cursor.live { opacity: 1; }
  .cursor.big { width: 76px; height: 76px; background: var(--sky); }
  .cursor.dot { width: 6px; height: 6px; background: var(--cream); }
  .cursor-label { font-family: var(--font-m); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity 0.2s; }
  .cursor.big .cursor-label { opacity: 1; }
  .cursor.hide { opacity: 0; }
}

.skip { position: absolute; left: 12px; top: -60px; z-index: 600; background: var(--rose); color: var(--ink); padding: 10px 14px; font-family: var(--font-m); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; }
.skip:focus { top: 12px; }

/* ---------- progress + topbar ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: var(--rose); transform-origin: left; transform: scaleX(0); z-index: 120; }
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: max(14px, env(safe-area-inset-top)) clamp(16px, 3vw, 32px) 14px;
  color: var(--ink); transition: color 0.3s, background 0.3s;
}
.topbar.dark { color: var(--cream); background: linear-gradient(to bottom, rgba(20,9,16,0.85), rgba(20,9,16,0)); }
.topbar-mark { font-weight: 900; font-variation-settings: "wdth" 120; font-size: 17px; letter-spacing: 0.02em; text-decoration: none; }
.topbar-nav { display: flex; gap: 26px; }
.topbar-nav a { text-decoration: none; opacity: 0.7; position: relative; padding: 6px 0; transition: opacity 0.2s; }
.topbar-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: currentColor; transition: right 0.3s var(--ease); }
.topbar-nav a:hover, .topbar-nav a.on { opacity: 1; }
.topbar-nav a.on::after { right: 0; }
.topbar-ig {
  display: flex; align-items: center; gap: 9px; text-decoration: none;
  padding: 5px 12px 5px 5px; border-radius: 999px; border: 1px solid currentColor;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.topbar-ig img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.topbar-ig:hover { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.topbar.dark .topbar-ig { border-color: rgba(247,238,242,0.35); }
.topbar.dark .topbar-ig:hover { border-color: var(--rose); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--sky); color: var(--ink); isolation: isolate; }
.hero-sky { position: absolute; inset: -6% 0 0 0; z-index: 0; will-change: transform; }
.hero-sky img { width: 100%; height: 106%; object-fit: cover; object-position: 62% 40%; display: block; transform: scale(1.06); animation: sky-settle 2.4s var(--ease) forwards; }
@keyframes sky-settle { to { transform: scale(1); } }
.hero-flare {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 18% 44%, rgba(255,255,255,0.55), transparent 22%),
    linear-gradient(to bottom, rgba(242,179,211,0.10), transparent 30%, transparent 62%, rgba(20,9,16,0.78) 100%);
  animation: flare 6s ease-in-out infinite alternate;
}
@keyframes flare { from { opacity: 0.85; } to { opacity: 1; } }
.hero-type { position: absolute; left: var(--pad); top: clamp(92px, 15vh, 160px); z-index: 2; }
.hero-name {
  display: flex; font-weight: 900; font-variation-settings: "wdth" 125;
  font-size: clamp(72px, 17.5vw, 250px); line-height: 0.82; letter-spacing: -0.02em;
  overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.06em;
}
.hn-letter { display: inline-block; transform: translateY(110%); }
.loaded .hn-letter { animation: rise 0.8s var(--ease) forwards; }
.loaded .hn-letter:nth-child(2){animation-delay:.06s} .loaded .hn-letter:nth-child(3){animation-delay:.12s}
.loaded .hn-letter:nth-child(4){animation-delay:.18s} .loaded .hn-letter:nth-child(5){animation-delay:.24s} .loaded .hn-letter:nth-child(6){animation-delay:.30s}
.hero-sub { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; margin-top: 14px; opacity: 0; transform: translateY(10px); }
.loaded .hero-sub { animation: fade-up 0.8s var(--ease) 0.5s forwards; }
@keyframes fade-up { to { opacity: 1; transform: none; } }
.hero-role { font-size: 13px; letter-spacing: 0.32em; font-weight: 500; }
.hero-quote { font-size: clamp(18px, 1.9vw, 25px); opacity: 0.9; }

/* the instagram card, physically attached to the hero */
.hero-card {
  position: absolute; left: var(--pad); bottom: clamp(88px, 14vh, 150px); z-index: 3;
  width: clamp(150px, 15vw, 210px); text-decoration: none; color: var(--cream);
  background: var(--ink); padding: 8px 8px 12px; transform: rotate(-4deg);
  box-shadow: 0 30px 60px -20px rgba(20,9,16,0.6);
  opacity: 0; transition: transform 0.6s var(--ease);
  will-change: transform;
}
.loaded .hero-card { animation: card-in 0.9s var(--ease) 0.7s forwards; }
@keyframes card-in { from { opacity: 0; transform: rotate(-9deg) translateY(30px); } to { opacity: 1; transform: rotate(-4deg); } }
.hero-card img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; display: block; }
.hero-card-meta { display: flex; flex-direction: column; gap: 3px; padding: 10px 4px 0; }
.hero-card-handle { font-weight: 800; font-size: 15px; font-variation-settings: "wdth" 112; }
.hero-card-meta .mono { color: var(--sky); font-size: 10px; }
.hero-card:hover { transform: rotate(0deg) scale(1.04) !important; animation: none; opacity: 1; }
.hero-foot {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 24px; z-index: 3;
  display: flex; justify-content: space-between; align-items: center; color: var(--cream); opacity: 0.85;
}
.hero-foot a { text-decoration: none; }
.hero-foot a:hover { color: var(--sky); }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
.hero-scroll { display: flex; align-items: center; gap: 10px; }
.hero-scroll-line { display: block; width: 1px; height: 34px; background: var(--cream); transform-origin: top; animation: scrollline 1.8s var(--ease) infinite; }
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* next taping chip in the hero: the show is one click from the first screen */
.hero-next {
  position: absolute; right: var(--pad); bottom: clamp(88px, 14vh, 150px); z-index: 3;
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream);
  background: rgba(20,9,16,0.72); backdrop-filter: blur(8px); border: 1px solid rgba(247,238,242,0.18);
  border-radius: 999px; padding: 8px 18px 8px 10px; opacity: 0; transition: border-color 0.2s, background 0.2s;
}
.loaded .hero-next { animation: fade-up 0.8s var(--ease) 0.9s forwards; }
.hero-next:hover { border-color: var(--rose); background: rgba(20,9,16,0.9); }
.hero-next .live-dot { background: #9146ff; animation: none; }
.hero-next b { font-weight: 800; font-size: 14px; font-variation-settings: "wdth" 112; }
.hero-next .mono { color: var(--sky); font-size: 10px; }
@media (max-width: 760px) { .hero-next { display: none; } }

/* hero platform row: the cover sends people straight to subscribe / follow */
.hero-platforms { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; opacity: 0; transform: translateY(10px); }
.loaded .hero-platforms { animation: fade-up 0.8s var(--ease) 0.7s forwards; }
.plat { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-family: var(--font-m); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 16px; border-radius: 999px; border: 1px solid var(--ink); color: var(--ink); transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.3s var(--ease); }
.plat:hover { transform: translateY(-1px); }
.plat-ico { font-size: 10px; }
.plat-yt { background: var(--ink); color: var(--cream); }
.plat-yt .plat-ico { color: var(--rose); }
.plat-yt:hover { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.plat-tw { background: #9146ff; border-color: #9146ff; color: #fff; }
.plat-tw:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.plat-pt { background: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.plat-pt .plat-ico { color: var(--rose); }
.plat-pt:hover { background: var(--ink); color: var(--cream); }

/* ---------- manifesto + marquee ---------- */
.manifesto { position: relative; z-index: 1; padding: clamp(70px, 10vw, 140px) var(--pad) 0; }
.manifesto-line {
  font-weight: 800; font-variation-settings: "wdth" 110; font-size: clamp(28px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -0.01em;
  max-width: 20ch;
}
.manifesto-line span { display: block; }
.manifesto-line em { color: var(--sky); font-size: 1.15em; font-weight: 400; }
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin: clamp(48px, 7vw, 100px) calc(-1 * var(--pad)) 0; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; color: var(--dim); font-size: 13px; }
.marquee-track span { padding-right: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* capabilities: the creative-director brief */
.caps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(48px, 7vw, 100px); }
.cap { background: var(--ink); padding: clamp(22px, 2.6vw, 34px) clamp(18px, 2vw, 28px); display: flex; flex-direction: column; gap: 10px; transition: background 0.3s; }
.cap:hover { background: var(--ink-2); }
.cap-num { color: var(--rose); }
.cap b { font-weight: 800; font-size: clamp(18px, 1.6vw, 22px); font-variation-settings: "wdth" 112; line-height: 1.1; }
.cap p { color: var(--dim); font-size: 15px; flex: 1; }
.cap-proof { color: var(--sky); font-size: 10.5px; padding-top: 12px; border-top: 1px solid var(--line); }
@media (max-width: 1000px) { .caps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .caps { grid-template-columns: 1fr; } .stages { grid-template-columns: 1fr; } .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(3) { border-right: 1px solid var(--line); } .step:nth-child(2n) { border-right: none; } .step:nth-child(-n+4) { border-bottom: 1px solid var(--line); } }

/* hero quote attribution */
.hero-quote { display: flex; flex-direction: column; gap: 6px; max-width: 40ch; line-height: 1.15; }
.hero-quote-by { font-size: 10px; letter-spacing: 0.22em; opacity: 0.75; }

/* ---------- reveals ---------- */
.js .wipe { display: inline-block; clip-path: inset(0 0 100% 0); transform: translateY(0.35em); transition: clip-path 0.8s var(--ease), transform 0.8s var(--ease); }
.js .wipe.in { clip-path: inset(-0.2em 0 -0.25em 0); transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- sections ---------- */
.sec { position: relative; z-index: 1; padding: clamp(80px, 11vw, 160px) var(--pad); }
.sec-head { display: grid; grid-template-columns: auto 1fr; gap: 6px clamp(18px, 3vw, 40px); align-items: start; margin-bottom: clamp(40px, 6vw, 80px); }
.sec-num { color: var(--rose); padding-top: 0.9em; }
.sec-title {
  font-weight: 900; font-variation-settings: "wdth" 122; font-size: clamp(52px, 10vw, 150px); line-height: 0.9; letter-spacing: -0.02em;
}
.sec-title .serif { color: var(--sky); font-weight: 400; letter-spacing: 0; font-size: 1.04em; }
.sec-lede { grid-column: 2; color: var(--dim); max-width: 46ch; font-size: clamp(16px, 1.4vw, 19px); margin-top: 16px; }
.block-label { color: var(--dim); margin: clamp(44px, 6vw, 72px) 0 18px; display: flex; align-items: center; gap: 12px; }
.block-label::before { content: ""; width: 22px; height: 1px; background: var(--rose); }

/* ---------- work: the deck (sticky stacked project cards) ---------- */
.stack { position: relative; }
.project {
  position: sticky; top: calc(64px + var(--i) * 14px); margin-bottom: 24px;
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); min-height: min(640px, calc(100svh - 120px));
  background: var(--ink-2); border: 1px solid var(--line); overflow: hidden;
  transform-origin: top center; will-change: transform;
  transition: box-shadow 0.4s;
}
.project.under { box-shadow: 0 -20px 60px rgba(0,0,0,0.35); }
.project-media { position: relative; overflow: hidden; background: var(--ink); display: grid; place-items: center; border-right: 1px solid var(--line); }
.project-media::before { content: ""; position: absolute; inset: -10%; background: var(--bg) center/cover; filter: blur(30px) saturate(1.1) brightness(0.45); }
.project-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, rgba(20,9,16,0.55)), linear-gradient(160deg, rgba(242,179,211,0.14), transparent 60%); pointer-events: none; }
.project-media video { position: relative; z-index: 1; display: block; }
.project-media-tall video { height: min(560px, calc(100% - 48px)); max-height: 82%; aspect-ratio: 9/16; width: auto; object-fit: cover; border: 1px solid rgba(247,238,242,0.18); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8); }
.project-media-wide video { width: calc(100% - 48px); aspect-ratio: 16/9; object-fit: cover; border: 1px solid rgba(247,238,242,0.18); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8); }
.sound { position: absolute; z-index: 3; right: 36px; bottom: 36px; display: flex; align-items: center; gap: 10px; background: var(--ink); color: var(--cream); border: 1px solid rgba(247,238,242,0.3); border-radius: 999px; padding: 10px 16px; cursor: pointer; font-size: 11px; transition: border-color 0.2s, background 0.2s; }
.sound:hover, .sound[aria-pressed="true"] { border-color: var(--rose); background: var(--ink-3); }
.sound-bars { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.sound-bars i { width: 3px; background: var(--rose); height: 40%; transition: height 0.2s; }
.sound[aria-pressed="true"] .sound-bars i { animation: bars 0.8s ease-in-out infinite alternate; }
.sound[aria-pressed="true"] .sound-bars i:nth-child(2) { animation-delay: 0.15s; }
.sound[aria-pressed="true"] .sound-bars i:nth-child(3) { animation-delay: 0.3s; }
@keyframes bars { from { height: 30%; } to { height: 100%; } }
.media-tag { position: absolute; z-index: 2; top: 36px; background: var(--ink); color: var(--sky); padding: 5px 9px; font-size: 10px; border: 1px solid var(--line); }
.media-tag-l { left: 36px; }
.media-tag-r { right: 36px; }
.slate { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--cream); padding: 36px 40px; border: 1px solid rgba(247,238,242,0.25); background: rgba(20,9,16,0.55); backdrop-filter: blur(6px); }
.slate b { font-weight: 900; font-variation-settings: "wdth" 120; font-size: clamp(28px, 3vw, 44px); line-height: 1; }
.slate .mono { color: var(--sky); }
.slate-bars { width: 100%; height: 10px; background: repeating-linear-gradient(90deg, var(--cream) 0 14px, transparent 14px 28px); opacity: 0.5; margin-bottom: 8px; }
.project-body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.project-idx { color: var(--rose); }
.project-title { font-weight: 900; font-variation-settings: "wdth" 118; font-size: clamp(34px, 4.4vw, 64px); line-height: 0.95; letter-spacing: -0.015em; }
.project-role { color: var(--dim); }
.project-copy { color: var(--dim); max-width: 48ch; font-size: clamp(15px, 1.25vw, 17px); }
.project-stats { list-style: none; display: flex; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--line); }
.project-stats li { display: flex; flex-direction: column; gap: 4px; }
.project-stats b { font-weight: 900; font-variation-settings: "wdth" 120; font-size: clamp(26px, 3vw, 44px); line-height: 1; letter-spacing: -0.02em; }
.project-stats .mono { color: var(--dim); font-size: 10.5px; }
.project-body .btn { align-self: flex-start; margin-top: 6px; }

/* ---------- process (the arch + six steps) ---------- */
.process { position: relative; z-index: 1; padding: 0 var(--pad) clamp(70px, 9vw, 130px); }
.lattice { width: 100%; height: clamp(70px, 11vw, 150px); display: block; margin-bottom: clamp(30px, 4vw, 56px); overflow: visible; }
.lattice path { fill: none; stroke: var(--sky); stroke-width: 1.5; vector-effect: non-scaling-stroke; stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.lattice-arc { stroke-width: 2.5; opacity: 0.9; }
.lattice-deck { opacity: 0.35; stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.lattice-lines path { opacity: 0.45; stroke-width: 1; stroke-dasharray: 4200; stroke-dashoffset: 4200; }
.lattice.in .lattice-arc { animation: draw 1.4s var(--ease) forwards; }
.lattice.in .lattice-deck { animation: draw 1.4s var(--ease) 0.2s forwards; }
.lattice.in .lattice-lines path { animation: draw 2.2s var(--ease) 0.4s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.process-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: clamp(24px, 3vw, 40px); }
.process-head .mono { color: var(--rose); }
.process-line { font-weight: 800; font-variation-settings: "wdth" 112; font-size: clamp(24px, 3.2vw, 44px); line-height: 1.05; letter-spacing: -0.01em; }
.process-line .serif { color: var(--sky); font-weight: 400; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { padding: 22px 18px 26px 0; margin-right: 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; position: relative; }
.step:last-child { border-right: none; margin-right: 0; }
.step-num { color: var(--rose); }
.step b { font-weight: 800; font-size: clamp(18px, 1.5vw, 22px); font-variation-settings: "wdth" 114; }
.step p { color: var(--dim); font-size: 14px; line-height: 1.45; }
.step::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: var(--sky); transition: width 0.8s var(--ease); }
.step.in::before { width: calc(100% - 18px); }

/* ---------- brand ---------- */
.brand-grid { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.ig-tile { display: block; text-decoration: none; color: inherit; position: sticky; top: 96px; }
.ig-phone {
  border-radius: 34px; border: 1px solid rgba(247,238,242,0.18); padding: 18px 16px 16px; overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.35), transparent 40%),
    linear-gradient(160deg, var(--sky) 0%, var(--sky-deep) 55%, #c76aa0 100%);
  color: var(--ink); transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  box-shadow: 0 40px 90px -30px rgba(242,179,211,0.35);
}
.ig-tile:hover .ig-phone { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-6px); box-shadow: 0 60px 100px -30px rgba(242,179,211,0.5); }
.ig-phone-top { display: flex; justify-content: space-between; font-weight: 500; letter-spacing: 0.04em; text-transform: none; font-size: 15px; }
.ig-phone-head { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.ig-phone-head img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); }
.ig-phone-stats { display: flex; gap: 16px; text-transform: none; letter-spacing: 0; font-size: 11px; }
.ig-phone-stats span { display: flex; flex-direction: column; align-items: center; }
.ig-phone-stats b { font-family: var(--font-d); font-size: 18px; font-weight: 800; }
.ig-phone-bio { display: flex; flex-direction: column; margin-top: 14px; font-size: 14px; line-height: 1.4; }
.ig-phone-bio .serif { font-size: 18px; }
.ig-phone-link { text-transform: none; letter-spacing: 0; font-size: 12px; opacity: 0.75; }
.ig-phone-btn { margin-top: 14px; background: var(--ink); color: var(--cream); text-align: center; padding: 10px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.ig-phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 16px -16px -16px; }
.ig-phone-grid span { aspect-ratio: 1; background-size: cover; background-position: center; display: block; filter: saturate(0.9); }
.ig-tile-cta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; gap: 12px; }
.ig-tile-big { font-weight: 800; font-size: 20px; font-variation-settings: "wdth" 112; }
.ig-tile-cta .mono { color: var(--sky); }

.yt-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; border: 1px solid var(--line); background: var(--ink-2); padding: 20px 22px; }
.yt-avatar { border-radius: 50%; object-fit: cover; }
.yt-copy { flex: 1; min-width: 220px; }
.yt-line { font-size: 19px; font-weight: 700; }
.yt-stats { color: var(--dim); margin-top: 5px; }

.btn {
  display: inline-block; font-family: var(--font-m); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 13px 22px; cursor: pointer; border: 1px solid var(--cream); background: transparent; color: var(--cream); border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.3s var(--ease);
}
.btn:hover { background: var(--cream); color: var(--ink); transform: translateY(-1px); }
.btn-solid { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.btn-solid:hover { background: var(--sky); border-color: var(--sky); }

.latest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.latest-card { text-decoration: none; display: block; }
.latest-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; filter: saturate(0.85); transition: filter 0.3s, transform 0.5s var(--ease); }
.latest-card:hover img { filter: none; transform: scale(1.02); }
.latest-thumb { overflow: hidden; border: 1px solid var(--line); }
.latest-meta { padding: 10px 2px 0; }
.latest-title { font-weight: 600; font-size: 14px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.latest-date { color: var(--dim); margin-top: 5px; }
.latest-fallback { grid-column: 1 / -1; border: 1px solid var(--line); padding: 30px; text-align: center; }

.moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.moment { position: relative; aspect-ratio: 9/16; padding: 0; cursor: pointer; border: 1px solid var(--line); background: #000; overflow: hidden; transition: border-color 0.2s, transform 0.4s var(--ease); }
.moment:hover { border-color: var(--sky); transform: translateY(-4px); }
.moment img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); transition: filter 0.3s; }
.moment:hover img { filter: none; }
.moment-stat { position: absolute; top: 8px; left: 8px; background: var(--rose); color: var(--ink); padding: 3px 7px; font-size: 10px; font-weight: 500; }
.moment iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- show ---------- */
.sec-show { border-top: 1px solid var(--line); }
.onair {
  display: grid; grid-template-columns: 1fr auto auto; gap: clamp(20px, 3vw, 48px); align-items: center;
  border: 1px solid var(--rose); background: linear-gradient(120deg, rgba(255,79,154,0.10), rgba(242,179,211,0.03) 60%, transparent);
  padding: clamp(24px, 3.5vw, 44px);
}
.onair-tag { color: var(--rose); display: flex; align-items: center; gap: 8px; }
.onair-title { font-weight: 900; font-variation-settings: "wdth" 118; font-size: clamp(34px, 5vw, 72px); line-height: 0.95; margin-top: 10px; letter-spacing: -0.01em; }
.onair-when { color: var(--dim); margin-top: 12px; }
.onair-count { display: flex; gap: 22px; color: var(--dim); }
.onair-count[hidden] { display: none; }
.onair-count span { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.onair-count b { font-family: var(--font-d); font-weight: 900; font-size: clamp(30px, 3.6vw, 52px); line-height: 1; color: var(--cream); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.onair-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.btn-twitch { background: #9146ff; border-color: #9146ff; color: #fff; }
.btn-twitch:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.twitch-dot, .yt-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.twitch-dot { background: #9146ff; }
.yt-dot { background: var(--rose); }
.show-grid { display: grid; grid-template-columns: minmax(300px, 420px) 1fr; gap: 14px; margin-top: 14px; align-items: stretch; }
.showcal, .tapings { border: 1px solid var(--line); background: var(--ink-2); display: flex; flex-direction: column; }
.showcal-head { display: flex; align-items: center; gap: 10px; padding: 16px 22px; border-bottom: 1px solid var(--line); color: var(--dim); }
.cal { display: flex; flex-direction: column; flex: 1; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 6px; }
.cal-month { color: var(--cream); letter-spacing: 0.2em; }
.cal-arrow { background: none; border: 1px solid var(--line); color: var(--dim); width: 30px; height: 30px; cursor: pointer; font-size: 15px; line-height: 1; border-radius: 50%; }
.cal-arrow:hover { border-color: var(--sky); color: var(--sky); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; padding: 12px 20px 16px; }
.cal-dow { text-align: center; color: var(--dim); font-size: 10px; padding: 4px 0; }
.cal-cell { aspect-ratio: 1; display: grid; place-items: center; font-size: 12px; color: var(--dim); border: 1px solid transparent; border-radius: 50%; }
.cal-empty { border: none; }
.cal-today { border-color: var(--line); color: var(--cream); }
.cal-stream { background: #9146ff; color: #fff; font-weight: 700; cursor: help; }
.cal-list { border-top: 1px solid var(--line); padding: 18px 22px; }
.cal-item { display: flex; gap: 14px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cal-item:last-child { border-bottom: none; }
.cal-item-date { color: #c39bff; flex: 0 0 110px; }
.cal-item-time { color: var(--dim); flex: 0 0 70px; }
.cal-item-title { font-weight: 700; flex: 1; min-width: 140px; }
.showcal-note { color: var(--dim); }
.tapings-list { display: flex; flex-direction: column; flex: 1; }
.taping { display: grid; grid-template-columns: 148px 1fr auto; gap: 18px; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background 0.2s; }
.taping:hover { background: var(--ink-3); }
.taping-thumb { aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--line); }
.taping-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); transition: transform 0.5s var(--ease), filter 0.3s; }
.taping:hover .taping-thumb img { transform: scale(1.04); filter: none; }
.taping-title { font-weight: 700; font-size: 15px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.taping-meta { color: var(--dim); margin-top: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.taping-go { color: var(--sky); white-space: nowrap; }
.taping.is-new .taping-title::before { content: "new"; font-family: var(--font-m); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; background: var(--rose); color: var(--ink); padding: 2px 6px; margin-right: 8px; vertical-align: middle; }
.tapings-more { display: block; padding: 16px 22px; color: var(--dim); text-decoration: none; margin-top: auto; }
.tapings-more:hover { color: var(--sky); }
.flow { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 14px; border: 1px solid var(--line); }
.flow li { padding: 22px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; position: relative; }
.flow li:last-child { border-right: none; }
.flow li .mono { color: var(--rose); }
.flow li b { font-weight: 800; font-size: 19px; font-variation-settings: "wdth" 112; }
.flow li i { color: var(--dim); font-size: 17px; }
.flow li::after { content: "⟶"; position: absolute; right: -9px; top: 50%; transform: translateY(-50%); background: var(--ink); color: var(--sky); padding: 0 3px; font-size: 13px; z-index: 1; }
.flow li:last-child::after { display: none; }

.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: clamp(44px, 6vw, 72px); }
.panel { border: 1px solid var(--line); background: var(--ink-2); padding: 26px; }
.panel-title { font-weight: 800; font-size: 22px; font-variation-settings: "wdth" 115; }
.panel-copy { color: var(--dim); margin: 10px 0 18px; }
.panel-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- studio ---------- */
.sec-studio { border-top: 1px solid var(--line); }
.tools { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 calc(-1 * var(--pad)); padding: 18px 0; mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.tools-dup { display: contents; }
.tools-track { display: flex; width: max-content; gap: 14px; padding-right: 14px; animation: marquee 46s linear infinite; }
.tools:hover .tools-track { animation-play-state: paused; }
.tool { display: flex; align-items: baseline; gap: 12px; white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 15px; }
.tool b { font-family: var(--font-m); font-weight: 500; font-size: 11px; color: var(--rose); letter-spacing: 0.1em; }
.tool i { font-family: var(--font-s); font-style: italic; color: var(--dim); font-weight: 400; font-size: 16px; }
.studio-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; margin-top: clamp(40px, 6vw, 72px); align-items: start; }
.capture, .workwith { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(26px, 4vw, 44px); }
.capture { border-color: var(--rose); position: sticky; top: 96px; }
.capture-title { font-weight: 900; font-size: clamp(26px, 3.4vw, 40px); font-variation-settings: "wdth" 118; line-height: 1; }
.capture-copy { color: var(--dim); margin: 12px 0 22px; max-width: 52ch; }
.form input, .form select, .form textarea { font-family: var(--font-d); font-size: 16px; color: var(--cream); background: var(--ink); border: 1px solid var(--line); padding: 13px 14px; width: 100%; border-radius: 0; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 1px solid var(--rose); border-color: var(--rose); }
.form ::placeholder { color: var(--dim); }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row input { flex: 1; min-width: 200px; width: auto; }
.form-stack { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.panel .form { display: flex; gap: 12px; flex-wrap: wrap; }
.panel .form input { flex: 1; min-width: 160px; width: auto; }
.form-note { color: var(--dim); width: 100%; min-height: 16px; }
.form-note.ok { color: var(--sky); }
.form-note.err { color: var(--lip); }
.studio-credit { color: var(--dim); opacity: 0.75; margin-top: 18px; }

/* ---------- work with me: plain english, two lanes, guarantee, scope ---------- */
.plain { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(24px, 3.5vw, 44px); display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(20px, 4vw, 56px); align-items: start; }
.plain > .mono { color: var(--rose); grid-column: 1 / -1; }
.plain-line { font-weight: 800; font-variation-settings: "wdth" 112; font-size: clamp(22px, 2.6vw, 36px); line-height: 1.08; letter-spacing: -0.01em; }
.plain-steps { list-style: none; counter-reset: p; display: flex; flex-direction: column; }
.plain-steps li { counter-increment: p; display: grid; grid-template-columns: 30px 1fr; gap: 2px 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.plain-steps li:last-child { border-bottom: none; }
.plain-steps li::before { content: counter(p); font-family: var(--font-m); font-size: 11px; color: var(--sky); grid-row: 1 / span 2; padding-top: 4px; }
.plain-steps b { font-weight: 800; font-size: 16px; grid-column: 2; }
.plain-steps span { color: var(--dim); font-size: 14px; grid-column: 2; }
.plain-close { grid-column: 1 / -1; color: var(--dim); font-size: 16px; max-width: 70ch; padding-top: 16px; border-top: 1px solid var(--line); }
.plain-close::first-letter { text-transform: none; }
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.offer { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px; transition: border-color 0.3s; }
.offer:hover { border-color: var(--sky); }
.offer-alt { border-color: rgba(255,79,154,0.5); background: linear-gradient(160deg, rgba(255,79,154,0.08), var(--ink-2) 50%); }
.offer-num { color: var(--rose); }
.offer-title { font-weight: 900; font-variation-settings: "wdth" 118; font-size: clamp(28px, 3vw, 44px); line-height: 0.98; letter-spacing: -0.015em; margin-top: 8px; }
.offer-for { color: var(--sky); font-size: 19px; margin-top: 10px; }
.offer-copy { color: var(--dim); font-size: 15px; }
.stages { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.stages li { display: flex; flex-direction: column; gap: 3px; }
.stages b { font-weight: 800; font-size: 15px; font-variation-settings: "wdth" 112; color: var(--cream); }
.stages b::before { content: "→ "; color: var(--rose); }
.stages span { color: var(--dim); font-size: 13.5px; line-height: 1.4; }
.offer-fit { color: var(--sky); font-size: 10.5px; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
.offer-small { margin-top: 14px; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(18px, 3vw, 40px); align-items: center; }
.offer-small .offer-title { font-size: clamp(24px, 2.2vw, 32px); }
.offer-small .offer-copy { margin-top: 10px; }
.offer-small .service-list { padding-top: 0; border-top: none; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(22px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 10px; transition: border-color 0.3s, transform 0.4s var(--ease); }
.service:hover { border-color: var(--sky); transform: translateY(-3px); }
.service-num { color: var(--rose); }
.service-title { font-weight: 900; font-variation-settings: "wdth" 116; font-size: clamp(22px, 2vw, 28px); line-height: 1.05; letter-spacing: -0.01em; }
.service-for { color: var(--sky); font-size: 18px; }
.service-copy { color: var(--dim); font-size: 15px; flex: 1; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--cream); font-size: 11px; }
.service-list li { display: flex; gap: 10px; align-items: baseline; }
.service-list li::before { content: "✓"; color: var(--rose); flex: 0 0 auto; }
.guarantee { margin-top: 14px; border: 1px solid var(--rose); background: linear-gradient(120deg, rgba(255,79,154,0.10), rgba(242,179,211,0.03) 60%, transparent); padding: clamp(24px, 3.5vw, 44px); display: grid; grid-template-columns: minmax(240px, 0.8fr) 1.4fr; gap: clamp(20px, 4vw, 56px); }
.guarantee-head .mono { color: var(--rose); }
.guarantee-line { font-weight: 900; font-variation-settings: "wdth" 116; font-size: clamp(26px, 3vw, 42px); line-height: 1; margin-top: 12px; letter-spacing: -0.015em; }
.guarantee-list { list-style: none; counter-reset: g; display: flex; flex-direction: column; }
.guarantee-list li { counter-increment: g; display: grid; grid-template-columns: 34px 1fr; gap: 4px 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.guarantee-list li:last-child { border-bottom: none; }
.guarantee-list li::before { content: counter(g, decimal-leading-zero); font-family: var(--font-m); font-size: 11px; color: var(--rose); grid-row: 1 / span 2; padding-top: 5px; }
.guarantee-list b { font-weight: 800; font-size: 18px; font-variation-settings: "wdth" 112; grid-column: 2; }
.guarantee-list span { color: var(--dim); font-size: 15px; grid-column: 2; }
.connect { display: grid; grid-template-columns: 1fr 1.3fr; gap: 14px; margin-top: 14px; align-items: start; }
.connect-steps { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(24px, 3vw, 40px); position: sticky; top: 96px; }
.connect-steps > .mono { color: var(--rose); }
.scope { list-style: none; counter-reset: s; margin-top: 18px; display: flex; flex-direction: column; }
.scope li { counter-increment: s; display: grid; grid-template-columns: 44px 1fr; gap: 4px 12px; padding: 16px 0; border-top: 1px solid var(--line); position: relative; }
.scope li::before { content: counter(s, decimal-leading-zero); font-family: var(--font-d); font-weight: 900; font-variation-settings: "wdth" 120; font-size: 30px; line-height: 1; color: var(--sky); grid-row: 1 / span 2; }
.scope b { font-weight: 800; font-size: 19px; font-variation-settings: "wdth" 112; grid-column: 2; }
.scope span { color: var(--dim); font-size: 15px; grid-column: 2; }
.connect-alt { margin-top: 18px; color: var(--dim); font-size: 15px; padding-top: 16px; border-top: 1px solid var(--line); }
.connect-alt a { color: var(--sky); }
.workwith { margin-top: 0; }
.capture { margin-top: 14px; position: static; }
.sec-studio .tools { margin-top: 0; }

/* ---------- footer ---------- */
.footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); text-align: center; z-index: 1; }
.footer-sky { position: absolute; inset: 0; z-index: 0; }
.footer-sky img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; filter: blur(22px) saturate(1.1); opacity: 0.35; transform: scale(1.15); }
.footer-sky::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--ink) 0%, rgba(20,9,16,0.4) 50%, var(--ink) 100%); }
.footer-inner { position: relative; z-index: 1; padding: clamp(80px, 12vw, 170px) var(--pad) clamp(30px, 4vw, 50px); }
.footer-big { font-weight: 900; font-variation-settings: "wdth" 122; font-size: clamp(48px, 10vw, 150px); line-height: 0.9; letter-spacing: -0.02em; }
.footer-big .serif { color: var(--sky); font-weight: 400; letter-spacing: 0; }
.footer-ig { display: inline-flex; align-items: center; gap: 12px; margin-top: clamp(28px, 4vw, 44px); text-decoration: none; border: 1px solid var(--cream); border-radius: 999px; padding: 6px 22px 6px 6px; font-weight: 800; font-size: 18px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-ig img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-ig:hover { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.footer-links { display: flex; gap: 22px; justify-content: center; margin: clamp(40px, 6vw, 70px) 0 22px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--dim); padding: 8px 4px; display: inline-block; transition: color 0.2s; }
.footer-links a:hover { color: var(--sky); }
.footer-colophon { color: var(--dim); opacity: 0.7; }

/* ---------- responsive ---------- */
@media (max-width: 1240px) and (min-width: 1001px) {
  /* the deck only works when a card fits under the sticky offset: tighten mid-width cards */
  .project { min-height: min(560px, calc(100svh - 120px)); }
  .project-body { padding: 28px 30px; gap: 10px; }
  .project-title { font-size: 40px; }
  .project-copy { font-size: 15px; max-width: 42ch; }
  .project-media-tall video { height: 380px; }
  .project-stats { gap: 22px; padding-top: 12px; }
  .project-stats b { font-size: 28px; }
}
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(3) { border-right: none; }
  .step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .project { grid-template-columns: 1fr; min-height: 0; position: relative; top: auto; }
  .project-media { min-height: 380px; border-right: none; border-bottom: 1px solid var(--line); }
  .project-media-tall video { height: 330px; max-height: none; }
  .show-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .ig-tile { position: static; max-width: 420px; }
  .moments-grid { grid-template-columns: repeat(3, 1fr); }
  .services { grid-template-columns: 1fr; }
  .plain { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .offer-small { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; }
  .connect { grid-template-columns: 1fr; }
  .connect-steps { position: static; }
}
@media (max-width: 760px) {
  .topbar-nav { display: none; }
  .hero-type { top: clamp(84px, 13vh, 130px); }
  .hero-quote { font-size: 18px; }
  .hero-platforms { gap: 8px; margin-top: 16px; }
  .plat { padding: 10px 13px; font-size: 10.5px; }
  .hero-card { width: 132px; bottom: 96px; }
  .hero-foot-r { display: none; }
  .hero-sky img { object-position: 66% 40%; }
  .moments-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .latest-grid { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 6px; mask-image: linear-gradient(to right, #000 calc(100% - 22px), transparent); -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 22px), transparent); }
  .latest-card { flex: 0 0 232px; scroll-snap-align: start; }
  .latest-fallback { flex: 1 0 100%; }
  .onair { grid-template-columns: 1fr; }
  .onair-actions { flex-direction: row; flex-wrap: wrap; }
  .flow { grid-template-columns: 1fr; }
  .flow li { border-right: none; border-bottom: 1px solid var(--line); }
  .flow li:last-child { border-bottom: none; }
  .flow li::after { display: none; }
  .taping { grid-template-columns: 110px 1fr; }
  .taping-go { display: none; }
  .split-row, .form-pair { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-num { padding-top: 0; }
  .sec-lede { grid-column: 1; }
  .block-label { margin: 36px 0 16px; }
  .grain { animation: none; }
}
@media (max-height: 760px) and (min-width: 761px) {
  .hero-name { font-size: clamp(64px, 12.5vw, 176px); }
  .hero-type { top: clamp(84px, 12vh, 120px); }
  .hero-card { width: 150px; bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .grain, .marquee-track, .tools-track, .hero-sky img, .hero-flare, .hero-scroll-line, .live-dot { animation: none !important; }
  .hn-letter, .hero-sub, .hero-card { transform: none; opacity: 1; animation: none !important; }
  .js .wipe, .js .reveal { clip-path: none; opacity: 1; transform: none; transition: none; }
  .lattice path { stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}

/* phone pass 2026-09-12: steps stack, topbar gets a real backdrop once it goes dark */
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(3), .step:nth-child(2n) { border-right: none; border-bottom: 1px solid var(--line); margin-right: 0; padding: 18px 0 20px; }
  .step:last-child { border-bottom: none; }
  .step.in::before { width: 100%; }
  .step { display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 10px; row-gap: 4px; }
  .step-num { grid-row: 1 / span 2; padding-top: 4px; }
  .step b { grid-column: 2; }
  .step p { grid-column: 2; }
}
.topbar.dark { background: linear-gradient(to bottom, rgba(20,9,16,0.94), rgba(20,9,16,0.72)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* hero platform row clears the polaroid on desktop: same band, start to its right */
@media (min-width: 761px) {
  .hero-platforms { padding-left: calc(clamp(150px, 15vw, 210px) + 26px); }
}


/* ===== concise pass 2026-09-12: one intro strip, compact offer, one show section, floating cta ===== */
.intro { position: relative; z-index: 1; padding: clamp(60px, 8vw, 110px) var(--pad) clamp(30px, 4vw, 50px); }
.caps-row { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(32px, 4vw, 56px); }
.caps-row li { background: var(--ink); padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.caps-row .mono { color: var(--rose); }
.caps-row b { font-weight: 800; font-size: 17px; font-variation-settings: "wdth" 112; }
.caps-row i { font-style: normal; font-family: var(--font-m); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); }
.lattice-thin { height: clamp(28px, 4vw, 60px); margin-bottom: clamp(24px, 3vw, 40px); }
.sec-head-cta { grid-template-columns: auto 1fr auto; }
.sec-cta { grid-column: 3; grid-row: 1; align-self: center; }
.sec-head-cta .sec-lede { grid-column: 2; }
.plain-compact { grid-template-columns: 1fr; gap: 18px; padding: clamp(22px, 3vw, 34px); }
.plain-compact .plain-line { font-size: clamp(20px, 2.2vw, 30px); max-width: 40ch; }
.plain-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plain-steps-row li { border-bottom: none; border-top: 1px solid var(--line); padding: 12px 0 0; grid-template-columns: 22px 1fr; }
.plain-compact .plain-close { padding-top: 0; border-top: none; font-size: 15px; }
.stages-tight { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.stages-tight li { flex-direction: row; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.stages-tight b { font-size: 14px; }
.stages-tight span { font-size: 13px; }
.brands-line { margin-top: 14px; color: var(--dim); font-size: 15px; padding: 16px 20px; border: 1px solid var(--line); }
.brands-line .mono { color: var(--rose); margin-right: 6px; }
.brands-line a { color: var(--sky); text-decoration: none; }
.brands-line a:hover { text-decoration: underline; }
.guarantee-compact { padding: clamp(22px, 3vw, 34px); gap: clamp(16px, 3vw, 40px); }
.guarantee-compact .guarantee-line { font-size: clamp(22px, 2.4vw, 34px); }
.guarantee-compact .guarantee-list li { padding: 10px 0; }
.guarantee-compact .guarantee-list b { font-size: 16px; }
.guarantee-compact .guarantee-list span { font-size: 14px; }
.workwith { margin-top: 14px; display: grid; grid-template-columns: minmax(220px, 0.8fr) 1.4fr; gap: clamp(20px, 4vw, 56px); align-items: start; }
.workwith .form { grid-column: 2; }
.workwith .studio-credit { grid-column: 1 / -1; }
.workwith .studio-credit a { color: var(--sky); }
.workwith-head { position: sticky; top: 96px; }
.follow-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 14px; }
.follow { display: flex; flex-direction: column; gap: 4px; text-decoration: none; border: 1px solid var(--line); background: var(--ink-2); padding: 16px 18px; transition: border-color 0.2s, transform 0.3s var(--ease); position: relative; }
.follow:hover { border-color: var(--sky); transform: translateY(-2px); }
.follow b { font-weight: 800; font-size: 17px; font-variation-settings: "wdth" 112; margin-top: 6px; }
.follow .mono { color: var(--dim); font-size: 10.5px; }
.follow img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }
.pt-dot, .dc-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pt-dot { background: var(--sky); }
.dc-dot { background: #5865f2; }
.moments-3 { grid-template-columns: repeat(3, 1fr); max-width: 760px; }
.footer-drops { max-width: 640px; margin: clamp(28px, 4vw, 44px) auto 0; text-align: left; }
.footer-drops > .mono { color: var(--sky); margin-bottom: 10px; }
.cta-float { position: fixed; right: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px); z-index: 115; background: var(--rose); color: var(--ink); text-decoration: none; padding: 14px 20px; border-radius: 999px; font-size: 12px; box-shadow: 0 16px 40px -10px rgba(255,79,154,0.5); transform: translateY(90px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.3s; }
.cta-float.on { transform: none; opacity: 1; }
.cta-float:hover { background: var(--sky); }
@media (max-width: 1000px) {
  .caps-row { grid-template-columns: 1fr 1fr; }
  .plain-steps-row { grid-template-columns: 1fr 1fr; }
  .workwith { grid-template-columns: 1fr; }
  .workwith .form { grid-column: 1; }
  .workwith-head { position: static; }
  .follow-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .sec-head-cta { grid-template-columns: 1fr; }
  .sec-cta { grid-column: 1; grid-row: auto; justify-self: start; }
  .caps-row { grid-template-columns: 1fr 1fr; }
  .caps-row li { padding: 14px; }
  .caps-row b { font-size: 14px; }
  .plain-steps-row { grid-template-columns: 1fr; gap: 0; }
  .plain-steps-row li { padding: 10px 0; }
  .stages-tight { grid-template-columns: 1fr; }
  .follow-row { grid-template-columns: 1fr 1fr; }
  .follow:last-child { grid-column: 1 / -1; }
  .moments-3 { grid-template-columns: repeat(3, 1fr); }
  .cta-float { right: 12px; bottom: 12px; padding: 12px 16px; }
  .project { min-height: 0; }
  .project-media { min-height: 300px; }
  .project-media-tall video { height: 260px; }
}

.show-grid-solo { grid-template-columns: 1fr; }

/* phone: the deck becomes a swipe carousel (one card in view) — cuts ~3000px of scroll */
.btn, .plat, .cta-float { white-space: nowrap; }
@media (max-width: 760px) {
  .stack { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 8px; scrollbar-width: none; }
  .stack::-webkit-scrollbar { display: none; }
  .project { flex: 0 0 84vw; scroll-snap-align: start; position: relative; top: auto; margin-bottom: 0; }
  .project-media { min-height: 0; height: 300px; }
  .project-media-tall video { height: 250px; }
  .project-body { padding: 20px; gap: 10px; }
  .project-copy { font-size: 14px; }
  .project-stats b { font-size: 26px; }
  .swipe-hint { display: flex; }
}
.swipe-hint { display: none; align-items: center; gap: 10px; color: var(--dim); margin-top: 10px; }
.swipe-hint::after { content: "⟶"; color: var(--sky); animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(6px); } }
@media (max-width: 760px) {
  .swipe-hint { display: flex !important; }
  .sec-head-cta .sec-title, .sec-head-cta .sec-lede, .sec-head-cta .sec-num { grid-column: 1; }
}
