:root {
  --cream: #f2f0e6;
  --char: #292926;
  --orange: #f26430;
  --grey: #9e9890;
  --body-dark: #b9b5ab;
  --body-cream: #6e6863;
  --pad: clamp(22px, 5vw, 96px);
  --maxw: 1560px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: "Inter", system-ui, sans-serif; background: var(--char); color: var(--cream); -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: clip; }
.dot { color: var(--orange); }
img, video { display: block; max-width: 100%; }
em { font-style: normal; color: var(--orange); }

/* Film grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: clamp(16px, 2vw, 26px) var(--pad); transition: background 0.4s var(--ease), padding 0.4s var(--ease); }
.site-header.scrolled { background: rgba(41,41,38,0.88); backdrop-filter: blur(10px); padding-top: clamp(12px,1.4vw,16px); padding-bottom: clamp(12px,1.4vw,16px); box-shadow: 0 1px 0 rgba(242,240,230,0.08); }
.logo { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 26px; color: var(--cream); text-decoration: none; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 44px); }
.nav a { color: var(--cream); text-decoration: none; font-size: 16px; font-weight: 500; position: relative; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1.5px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { background: var(--orange); color: var(--char) !important; padding: 11px 22px; border-radius: 100px; font-weight: 600; transition: transform 0.2s var(--ease), background 0.2s; }
.nav-cta:hover { transform: translateY(-2px); }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 26px; position: relative; z-index: 110; }
.menu-btn span { position: absolute; left: 0; right: 0; height: 2.5px; background: var(--cream); transition: 0.3s var(--ease); }
.menu-btn span:nth-child(1) { top: 2px; } .menu-btn span:nth-child(2) { top: 12px; } .menu-btn span:nth-child(3) { top: 22px; }
body.menu-open .menu-btn span:nth-child(1) { top: 12px; transform: rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: clamp(140px, 22vh, 240px) var(--pad) 0; }
.eyebrow { font-family: "Space Mono", monospace; color: var(--orange); font-size: clamp(13px, 1.3vw, 18px); letter-spacing: 0.04em; }
.hero-copy { max-width: var(--maxw); margin: 0 auto; }
.hero-h { font-family: "Poppins", sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; font-size: clamp(38px, 6.4vw, 116px); margin: clamp(8px, 2vh, 24px) 0 0; max-width: 22ch; }
.hero-h .hl { color: var(--orange); }
.hero-h.typing::after { content: ""; display: inline-block; width: 0.5ch; height: 0.92em; vertical-align: -0.08em; margin-left: 0.04em; background: var(--orange); animation: caret 0.9s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-top: clamp(28px, 4vh, 52px); }
.hero-sub { color: var(--body-dark); font-size: clamp(17px, 1.7vw, 26px); max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-reel { margin: clamp(48px, 7vh, 96px) calc(-1 * var(--pad)) 0; overflow: hidden; }
.media--reel { aspect-ratio: 21 / 9; border-radius: 0; border: 0; }
.scroll-cue { position: absolute; left: var(--pad); bottom: 24px; font-family: "Space Mono", monospace; font-size: 12px; color: var(--grey); writing-mode: vertical-rl; letter-spacing: 0.2em; opacity: 0.7; }

/* Buttons */
.btn { position: relative; display: inline-block; text-decoration: none; font-weight: 600; font-size: 16px; padding: 15px 30px; border-radius: 100px; transition: transform 0.2s var(--ease), background 0.25s, color 0.25s, border-color 0.25s; }
.btn--primary { background: var(--orange); color: var(--char); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(242,240,230,0.35); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: var(--cream); color: var(--char); }
.band--cream .btn--ghost { border-color: rgba(41,41,38,0.3); color: var(--char); }

/* Marquee */
.marquee { background: var(--orange); color: var(--char); overflow: hidden; padding: 16px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 60s linear infinite; }
.marquee-track span { font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(16px, 1.7vw, 26px); letter-spacing: 0.01em; padding-right: 0.3em; }
.marquee-track i { font-style: normal; opacity: 0.5; padding: 0 0.15em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Bands */
.band { padding: clamp(72px, 13vh, 180px) var(--pad); background: var(--char); color: var(--cream); position: relative; }
.band--cream { background: var(--cream); color: var(--char); }
.band--dark { background: var(--char); color: var(--cream); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap.center { text-align: center; }

/* Section header */
.section-head { display: block; }
.idx { display: none; }
.section-h { font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: -0.025em; line-height: 1.0; font-size: clamp(36px, 6vw, 110px); }
.section-h.xl { font-size: clamp(46px, 8.8vw, 156px); }

.lead { font-size: clamp(17px, 1.6vw, 26px); line-height: 1.55; margin-top: clamp(24px, 3vh, 42px); max-width: 64ch; }
.band--cream .lead { color: var(--body-cream); }
.band .lead, .band--dark .lead { color: var(--body-dark); }
.wrap.center .lead { margin-left: auto; margin-right: auto; }

/* Statement section */
.statement-h { font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(30px, 4.6vw, 84px); max-width: 24ch; }

/* Chips */
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.chips li { font-family: "Space Mono", monospace; font-size: clamp(13px, 1.2vw, 17px); padding: 10px 20px; border: 1px solid rgba(242,240,230,0.25); border-radius: 100px; transition: 0.25s var(--ease); }
.band:not(.band--cream) .chips li:hover { background: var(--orange); border-color: var(--orange); color: var(--char); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 52px); margin-top: clamp(48px, 7vh, 80px); }
.step-body { border-top: 2px solid rgba(41,41,38,0.18); padding-top: 20px; }
.band:not(.band--cream) .step-body { border-top-color: rgba(242,240,230,0.18); }
.step-n { font-family: "Space Mono", monospace; color: var(--orange); font-size: clamp(13px, 1.2vw, 17px); }
.step h3 { font-family: "Poppins", sans-serif; font-weight: 600; font-size: clamp(19px, 1.7vw, 26px); margin: 12px 0 10px; }
.step p { font-size: clamp(15px, 1.2vw, 18px); }
.band--cream .step p { color: var(--body-cream); }

/* Media */
.media { position: relative; width: 100%; background: rgba(242,240,230,0.07); border: 1px solid rgba(242,240,230,0.12); border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 10; }
.band--cream .media { background: rgba(41,41,38,0.06); border-color: rgba(41,41,38,0.1); }
.media[data-label]::after { content: attr(data-label); position: absolute; left: 14px; bottom: 12px; font-family: "Space Mono", monospace; font-size: 12px; color: var(--grey); }
.media video, .media img { width: 100%; height: 100%; object-fit: cover; }
.media.has-media::after { display: none; }
.media--tall { aspect-ratio: 4 / 3; }

/* Parallax: image taller than frame, shifts on scroll */
body.parallax-on .media.has-media img, body.parallax-on .media.has-media video { position: absolute; inset: -14% 0; width: 100%; height: 128%; object-fit: cover; will-change: transform; }
body.parallax-on .hero-reel .media.has-media img { inset: -10% 0; height: 120%; }

/* Bento work grid */
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(150px, 16vw, 250px); gap: clamp(12px, 1.2vw, 20px); margin-top: clamp(48px, 7vh, 80px); }
.work-grid .media { aspect-ratio: auto; border-radius: 8px; }
.work-grid .media:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.work-grid .media:nth-child(2) { grid-column: span 2; }
.work-grid .media:nth-child(3) { grid-column: span 2; }
.work-grid .media:nth-child(4) { grid-column: span 2; }
.work-grid .media:nth-child(5) { grid-column: span 2; }
.work-grid .media:nth-child(6) { grid-column: span 2; }
.work-grid .media img { transition: transform 0.6s var(--ease); }
.work-grid .media:hover img { transform: scale(1.06); }

/* Split */
.split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 5vw, 100px); align-items: center; }
.split-text .lead { margin-top: 22px; }
.split-text .btn { margin-top: 34px; }
.split-media .media { aspect-ratio: 4 / 3; }
#what .split-media .media--reelp { aspect-ratio: 9 / 16; max-width: 400px; max-height: 80vh; margin-left: auto; border-radius: 14px; }

/* Contact */
.contact .lead { font-size: clamp(18px, 1.7vw, 26px); }
.cta-mail { display: inline-block; margin-top: clamp(32px, 5vh, 56px); font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: clamp(30px, 5.5vw, 76px); color: var(--orange); text-decoration: none; }
.cta-mail { background-image: linear-gradient(var(--orange), var(--orange)); background-size: 0% 3px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size 0.4s var(--ease); }
.cta-mail:hover { background-size: 100% 3px; }

/* Footer */
.site-footer { background: var(--char); color: var(--cream); padding: clamp(56px, 9vh, 110px) var(--pad) 40px; border-top: 1px solid rgba(242,240,230,0.1); }
.foot-top { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto; }
.foot-top .logo { font-size: clamp(26px, 3.2vw, 44px); }
.tagline { font-family: "Space Mono", monospace; color: var(--orange); font-size: clamp(14px, 1.4vw, 20px); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; max-width: var(--maxw); margin: clamp(40px, 7vh, 70px) auto 0; padding-top: 26px; border-top: 1px solid rgba(242,240,230,0.1); }
.foot-nav { display: flex; gap: clamp(16px, 2vw, 34px); flex-wrap: wrap; }
.foot-nav a { color: var(--body-dark); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.foot-nav a:hover { color: var(--orange); }
.copyright { color: var(--grey); font-size: 14px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } .marquee-track { animation: none; } }

/* ===== Pinned / scroll-driven sections ===== */
.pin { position: relative; }
.pin.band--cream { background: var(--cream); color: var(--char); }
.pin-inner { position: sticky; top: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(96px, 13vh, 160px) var(--pad); overflow: hidden; }
.pin--carousel { height: 240vh; }
.pin--steps { height: 280vh; }

/* Fallback when scroll-driving is off (reduced-motion / no-js) */
body:not(.pins-live) .pin { height: auto !important; }
body:not(.pins-live) .pin-inner { position: static; min-height: 100vh; overflow: visible; }
body:not(.pins-live) .pin--carousel .pin-inner, body:not(.pins-live) .pin--steps .pin-inner { min-height: 0; padding: clamp(72px, 13vh, 130px) var(--pad); }

/* Hero — full-screen, pinned; burger assembles as you scroll, releases when done */
.pin--hero { height: 220vh; padding: 0; }
.pin--hero .pin-inner { padding: 0; height: 100vh; min-height: 100vh; display: block; }
.hero-inner { height: 100%; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 0; z-index: 0; aspect-ratio: auto; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(41,41,38,0.66) 0%, rgba(41,41,38,0.3) 38%, rgba(41,41,38,0.04) 64%, rgba(41,41,38,0.04) 100%); }
.hero-copy { position: absolute; z-index: 2; top: 50%; left: var(--pad); transform: translateY(-50%); text-align: left; }
.pin--hero .hero-h { font-size: clamp(36px, 5.4vw, 84px); line-height: 1.06; letter-spacing: -0.02em; margin: 0; max-width: none; }
.hero-inner .scroll-cue { z-index: 2; left: auto; right: var(--pad); }

/* Carousel — full height of the screen */
.pin--carousel .split { align-items: center; }
.carousel { position: relative; width: 100%; max-width: 540px; margin-left: auto; height: clamp(420px, 84vh, 1040px); border-radius: 10px; overflow: hidden; border: 1px solid rgba(242,240,230,0.12); }
.carousel-track { position: absolute; inset: 0; display: flex; flex-direction: column; height: 100%; will-change: transform; transition: transform 0.12s linear; }
.carousel-track .media { flex: 0 0 100%; height: 100%; aspect-ratio: auto; border-radius: 0; border: 0; }
.carousel-dots { position: absolute; right: 14px; bottom: 14px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(242,240,230,0.6); transition: 0.25s var(--ease); }
.carousel-dots span.on { background: var(--orange); transform: scale(1.3); }

/* How it works — clean steps that slide in from the left */
.pin--steps .pin-inner { justify-content: center; }
.steps-head { max-width: var(--maxw); width: 100%; margin: 0 auto; }
.pin--steps .steps { max-width: var(--maxw); width: 100%; margin-left: auto; margin-right: auto; }
body.pins-live .pin--steps .step { opacity: 0; will-change: transform, opacity; }

/* Keep parallax off interactive media */
body.parallax-on .media.no-px img, body.parallax-on .media.no-px video { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Responsive */
@media (max-width: 920px) {
  .hero-h { max-width: none; font-size: clamp(34px, 8.5vw, 70px); }
  /* Un-pin content sections on mobile (hero stays full-screen) */
  .pin--carousel, .pin--steps { height: auto !important; }
  .pin--carousel .pin-inner, .pin--steps .pin-inner { position: static !important; min-height: 0 !important; overflow: visible !important; padding: clamp(72px, 13vh, 130px) var(--pad) !important; }
  .carousel { height: auto !important; aspect-ratio: auto !important; overflow: visible !important; border: 0 !important; max-width: 480px; margin: 24px auto 0; }
  .carousel-track { position: static !important; transform: none !important; height: auto !important; display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; }
  .carousel-track .media { flex: none !important; height: auto !important; aspect-ratio: 4 / 5; border-radius: 8px !important; border: 1px solid rgba(41,41,38,0.1) !important; }
  .carousel-dots { display: none !important; }
  .pin--steps .step { opacity: 1 !important; transform: none !important; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .band--studios .split-media { order: -1; }
  .work-grid { grid-auto-rows: clamp(130px, 30vw, 200px); }
  .menu-btn { display: block; }
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 30px; background: rgba(41,41,38,0.97); backdrop-filter: blur(8px); transform: translateX(100%); transition: transform 0.35s var(--ease); z-index: 105; }
  .nav a { font-size: 26px; } .nav a::after { display: none; }
  body.menu-open .nav { transform: none; } body.menu-open { overflow: hidden; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .media--reel { aspect-ratio: 4 / 5; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 40vw; }
  .work-grid .media:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .work-grid .media:nth-child(n) { grid-column: span 1; }
  .work-grid .media:nth-child(6) { grid-column: span 2; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== Work — liquid-glass video carousel ===== */
.workreel-band { overflow: hidden; }
.workreel { position: relative; margin-top: clamp(40px, 6vh, 80px); padding: 0 clamp(12px, 4vw, 60px) clamp(70px, 9vh, 120px); }
.wr-stage { position: relative; height: clamp(230px, 48vw, 700px); perspective: 1800px; }
.wr-slide { position: absolute; top: 50%; left: 50%; width: clamp(280px, 76vw, 1160px); aspect-ratio: 16 / 9; margin: 0; border-radius: 16px; overflow: hidden; background: #000; transform: translate(-50%, -50%); transform-origin: center; transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), filter 0.6s var(--ease); box-shadow: 0 30px 80px rgba(0,0,0,0.5); cursor: pointer; will-change: transform, opacity; }
.wr-slide video, .wr-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wr-slide::after { content: ""; position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 0 0 1px rgba(242,240,230,0.10); pointer-events: none; }
.wr-slide.is-active { box-shadow: 0 40px 110px rgba(0,0,0,0.6); }

/* Liquid glass surfaces */
.glass { background: rgba(242,240,230,0.10); -webkit-backdrop-filter: blur(18px) saturate(1.7); backdrop-filter: blur(18px) saturate(1.7); border: 1px solid rgba(242,240,230,0.22); box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.15), 0 12px 40px rgba(0,0,0,0.4); }

/* Nav arrows */
.wr-nav { position: absolute; top: clamp(115px, 24vw, 350px); z-index: 30; width: clamp(46px, 4vw, 62px); height: clamp(46px, 4vw, 62px); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--cream); transition: transform 0.2s var(--ease), opacity 0.2s, background 0.2s; }
.wr-nav:hover { transform: scale(1.07); background: rgba(242,240,230,0.18); }
.wr-nav:disabled { opacity: 0.3; pointer-events: none; }
.wr-prev { left: clamp(4px, 2vw, 40px); }
.wr-next { right: clamp(4px, 2vw, 40px); }
.wr-nav svg { width: 46%; height: 46%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* Glass control bar */
.wr-bar { position: absolute; left: 50%; bottom: clamp(10px, 2vh, 30px); transform: translateX(-50%); z-index: 30; display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); padding: 10px 12px 10px 22px; border-radius: 100px; max-width: calc(100% - 24px); }
.wr-label { font-family: "Poppins", sans-serif; font-weight: 600; font-size: clamp(14px, 1.3vw, 18px); color: var(--cream); white-space: nowrap; }
.wr-dots { display: flex; align-items: center; gap: 9px; }
.wr-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(242,240,230,0.35); cursor: pointer; transition: 0.25s var(--ease); }
.wr-dot.on { background: var(--orange); transform: scale(1.35); }
.wr-sound { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(242,240,230,0.25); background: rgba(242,240,230,0.08); color: var(--cream); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s var(--ease); flex: 0 0 auto; }
.wr-sound:hover { background: var(--orange); border-color: var(--orange); color: var(--char); }
.wr-sound .ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wr-sound .ic-on { display: none; }
.workreel.sound-on .wr-sound .ic-on { display: block; }
.workreel.sound-on .wr-sound .ic-muted { display: none; }
.workreel.sound-on .wr-sound { background: var(--orange); border-color: var(--orange); color: var(--char); }

/* "Sound" tap pill on the active, muted slide */
.wr-tap { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 6; display: none; align-items: center; gap: 8px; padding: 9px 16px 9px 13px; border-radius: 100px; color: var(--cream); font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.02em; cursor: pointer; }
.wr-tap svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.workreel:not(.sound-on) .wr-slide.is-active .wr-tap { display: inline-flex; animation: wrpulse 2.4s var(--ease) infinite; }
@keyframes wrpulse { 0%,100% { opacity: 0.85; } 50% { opacity: 1; transform: translateX(-50%) translateY(-2px); } }

@media (max-width: 700px) {
  .wr-slide { width: 84vw; border-radius: 12px; }
  .wr-label { display: none; }
  .wr-bar { gap: 16px; padding: 8px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .wr-slide { transition: none; }
  .wr-tap { animation: none; }
}

/* ===== Work — liquid-glass video grid ===== */
.workgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr)); gap: clamp(14px, 1.5vw, 24px); margin-top: clamp(40px, 6vh, 76px); }
.wg-tile { position: relative; aspect-ratio: 16 / 9; margin: 0; border-radius: 16px; overflow: hidden; background: #000; cursor: pointer; outline: none; transform: translateZ(0); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); box-shadow: 0 16px 44px rgba(0,0,0,0.4); }
.wg-tile:hover, .wg-tile:focus-visible { transform: translateY(-5px); box-shadow: 0 26px 70px rgba(0,0,0,0.55); }
.wg-poster, .wg-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.wg-tile video { z-index: 1; }
.wg-poster { z-index: 0; transition: opacity 0.3s var(--ease); }
.wg-tile.playing .wg-poster, .wg-tile.preview .wg-poster { opacity: 0; }
.wg-tile::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 42%); transition: opacity 0.3s; }
.wg-tile::after { content: ""; position: absolute; inset: 0; z-index: 4; border-radius: 16px; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 0 0 1px rgba(242,240,230,0.12); }
.wg-tile.playing::before { opacity: 0; }

/* Brand caption — frosted glass pill */
.wg-cap { position: absolute; left: 12px; bottom: 12px; z-index: 5; padding: 7px 15px; border-radius: 100px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: clamp(13px, 1.05vw, 16px); color: var(--cream); white-space: nowrap; transition: opacity 0.3s; }
.wg-tile.playing .wg-cap { opacity: 0; }

/* Centre play button — frosted glass circle */
.wg-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 5; width: clamp(54px, 4.6vw, 70px); height: clamp(54px, 4.6vw, 70px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.wg-tile:hover .wg-play { transform: translate(-50%, -50%) scale(1.08); }
.wg-play svg { width: 40%; height: 40%; fill: currentColor; margin-left: 2px; }
.wg-tile.playing .wg-play, .wg-tile.preview .wg-play { opacity: 0; pointer-events: none; }

/* Mute toggle — shows while playing with sound */
.wg-mute { position: absolute; top: 12px; right: 12px; z-index: 6; width: 38px; height: 38px; border-radius: 50%; display: none; align-items: center; justify-content: center; color: var(--cream); cursor: pointer; }
.wg-tile.playing .wg-mute { display: flex; }
.wg-mute .ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wg-mute .ic-muted { display: none; }
.wg-tile.muted .wg-mute .ic-on { display: none; }
.wg-tile.muted .wg-mute .ic-muted { display: block; }

@media (max-width: 600px) {
  .workgrid { grid-template-columns: 1fr; }
  .wg-tile { border-radius: 12px; }
}

/* How it works — step GIFs that pop up from under the line */
.step-gif { height: clamp(92px, 9vw, 150px); margin-bottom: 0; display: flex; align-items: flex-end; }
.step-gif img { width: clamp(92px, 9vw, 150px); height: auto; opacity: 0; transform: scale(0.55); transform-origin: bottom center; transition: opacity 0.4s var(--ease), transform 0.55s var(--ease); mix-blend-mode: multiply; }
.step.gif-in .step-gif img { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) { .step-gif img { transition: none; opacity: 1; transform: none; } }
