:root {
  --ink: #1e1d23;
  --paper: #fbfbfb;
  --white: #ffffff;
  --pink: #f8b5c8;
  --pink-soft: #eed3e4;
  --panda-blue: #bdcade;
  --panda-purple: #a89acb;
  --lavender: #747583;
  --lime: var(--pink);
  --orange: var(--panda-blue);
  --line: rgba(10, 10, 10, 0.2);
  --line-light: rgba(255, 255, 255, 0.22);
  --spartan: "League Spartan", Arial, sans-serif;
  --garet: "Garet", "Avenir Next", Arial, sans-serif;
  --pad: clamp(1.2rem, 4vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--garet);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
main { overflow: clip; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(248,181,200,.75);
  transition: width .18s ease, height .18s ease, opacity .18s ease, background .18s ease;
}
.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248,181,200,.9);
  background: radial-gradient(circle, rgba(189,202,222,.08), transparent 65%);
  box-shadow: 0 0 0 1px rgba(189,202,222,.16), 0 0 24px rgba(248,181,200,.1);
  transition: width .22s ease, height .22s ease, opacity .18s ease, border-color .2s ease, background .2s ease;
}
.cursor-ring::before,
.cursor-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--panda-blue);
  transform: translate(-50%,-50%);
}
.cursor-ring::before { width: 8px; height: 1px; }
.cursor-ring::after { width: 1px; height: 8px; }
.cursor-ring span { position: absolute; left: 50%; top: -3px; width: 6px; height: 6px; background: var(--pink); border-radius: 50%; transform-origin: 0 24px; animation: cursorOrbit 3.2s linear infinite; }
.cursor-dot.is-visible,
.cursor-ring.is-visible { opacity: 1; }
.cursor-ring.is-hovering { width: 68px; height: 68px; border-color: var(--panda-blue); background: rgba(248,181,200,.14); }
.cursor-dot.is-hovering { width: 12px; height: 12px; background: var(--panda-blue); }
.cursor-ring.is-pressed { width: 28px; height: 28px; background: rgba(248,181,200,.32); }
.cursor-ready,
.cursor-ready a,
.cursor-ready button,
.cursor-ready summary,
.cursor-ready [data-tilt] { cursor: none !important; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  padding: .8rem 1rem; background: var(--lime); color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: .7rem var(--pad); color: var(--ink); background: var(--white);
  border-bottom: 1px solid rgba(10,10,10,.16); transition: box-shadow .25s, min-height .25s;
}
.site-header.scrolled { min-height: 68px; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.brand { display: inline-flex; align-items: center; gap: .75rem; width: max-content; }
.brand img { display: block; width: auto; height: 53px; filter: contrast(1.04); }
.site-nav { display: flex; align-items: center; gap: 2rem; font: 600 .76rem/1 var(--garet); text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { position: relative; padding: .5rem 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; padding: .8rem 1.1rem; color: var(--white); background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; font: 600 .76rem/1 var(--garet); text-transform: uppercase; letter-spacing: .05em; transition: .2s; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--pink); border-color: var(--pink); color: var(--ink); }
.menu-toggle { display: none; }

.parallax-layer {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-z: 0px;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(var(--tilt-z));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .2s cubic-bezier(.2,.75,.25,1), box-shadow .25s ease;
}

[data-tilt].is-tilting { --tilt-z: 10px; }

.hero {
  position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.25fr .75fr;
  align-items: end; overflow: hidden; padding: 9.5rem var(--pad) 3rem; color: var(--white); background: var(--ink);
  perspective: 1400px; isolation: isolate;
}
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 7.5vw 7.5vw; mask-image: linear-gradient(to bottom, black, transparent 88%); transform: translateZ(-180px) scale(1.15); }
.hero-floor { position: absolute; z-index: 0; left: -18%; right: -18%; bottom: -34%; height: 66%; opacity: .48; background-image: linear-gradient(rgba(248,181,200,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(189,202,222,.3) 1px, transparent 1px); background-size: 5.5rem 5.5rem; transform: translate3d(0,var(--parallax-y),0) perspective(700px) rotateX(64deg); transform-origin: center top; mask-image: linear-gradient(to bottom, transparent, black 38%, transparent 90%); }
.hero::after { content: ""; position: absolute; width: 44vw; aspect-ratio: 1; right: -16vw; top: -16vw; border: 1px solid rgba(248,181,200,.42); border-radius: 50%; box-shadow: 0 0 120px rgba(248,181,200,.09); }
.hero-copy { position: relative; z-index: 3; transform-style: preserve-3d; }
.eyebrow, .section-kicker { font: 600 .72rem/1 var(--garet); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .8rem; margin: 0 0 2rem; color: var(--pink); }
.eyebrow::before { content: ""; width: 3rem; height: 1px; background: currentColor; }
.hero-title { margin: 0; font: 800 clamp(4.7rem, 10vw, 10.7rem)/.75 var(--spartan); letter-spacing: -.075em; text-transform: uppercase; }
.hero-title .line { display: block; white-space: nowrap; text-shadow: 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(0,0,0,.3); transform: translateZ(45px); }
.hero-title .outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.hero-title .accent { color: var(--pink); }
.hero-bottom { display: flex; align-items: end; gap: 2rem; margin-top: 3rem; max-width: 44rem; }
.hero-bottom p { max-width: 29rem; margin: 0; color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.45vw, 1.25rem); }
.hero-art { position: relative; align-self: stretch; min-height: 40rem; z-index: 2; margin-right: calc(var(--pad) * -1); perspective: 1200px; transform-style: preserve-3d; }
.hero-tilt { position: absolute; inset: 0; }
.hero-art::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(transparent, var(--ink) 90%); pointer-events: none; }
.hero-art img { position: absolute; right: -2%; bottom: -7%; width: min(48vw, 45rem); height: 94%; object-fit: cover; object-position: center top; filter: contrast(1.08) drop-shadow(0 0 26px rgba(248,181,200,.18)); transform: translate3d(0,var(--parallax-y),55px); }
.art-orbit { position: absolute; border: 1px solid rgba(248,181,200,.58); border-radius: 50%; box-shadow: inset 0 0 28px rgba(248,181,200,.07), 0 0 28px rgba(248,181,200,.06); }
.orbit-one { width: 28rem; aspect-ratio: 1; right: -4rem; top: 17%; transform: translateZ(-35px) rotateX(64deg); }
.orbit-two { width: 18rem; aspect-ratio: 1; right: 9rem; top: 28%; border-color: rgba(189,202,222,.68); border-style: dashed; animation: orbit3d 18s linear infinite; }
.sticker { position: absolute; z-index: 2; display: grid; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; text-align: center; }
.sticker-one { width: 7.1rem; aspect-ratio: 1; top: 21%; left: 4%; transform: translateZ(90px) rotate(-11deg); box-shadow: 14px 18px 34px rgba(0,0,0,.28), inset 0 0 0 2px rgba(248,181,200,.82); padding: .7rem; gap: .05rem; align-content: center; }
.sticker-one strong { display: block; font: 900 1.55rem/.85 var(--spartan); letter-spacing: -.045em; }
.sticker-one em { display: block; margin-top: .28rem; font: 800 .66rem/1 var(--spartan); font-style: normal; letter-spacing: .16em; text-transform: uppercase; }
.sticker-two { right: 5%; bottom: 16%; padding: .75rem 1rem; background: var(--panda-blue); border-radius: 0; transform: translateZ(75px) rotate(5deg); box-shadow: 12px 16px 30px rgba(0,0,0,.28); }


.marquee { overflow: hidden; padding: 1rem 0 .75rem; background: var(--pink); border-block: 1px solid var(--ink); }
.marquee-track { display: flex; width: max-content; gap: 2rem; align-items: center; font: 800 clamp(1.7rem, 3.8vw, 3.8rem)/1 var(--spartan); letter-spacing: -.03em; text-transform: uppercase; animation: marquee 28s linear infinite; }
.marquee-track i { font-size: .45em; font-style: normal; }

.section { padding: clamp(4rem, 7.5vw, 7rem) var(--pad) clamp(5rem, 10vw, 9rem); }
.about, .why { background: var(--paper); }
.section-kicker { display: flex; gap: .8rem; align-items: center; margin-bottom: clamp(3rem, 7vw, 6.5rem); }
.section-kicker span { display: grid; place-items: center; width: 2.1rem; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; font-size: .65rem; }
.section-kicker.light { color: var(--white); }
.display-heading { margin: 0; font: 800 clamp(3.5rem, 7.4vw, 8.2rem)/.84 var(--spartan); letter-spacing: -.065em; text-transform: uppercase; color: var(--ink); text-shadow: none; }
.display-heading span { color: var(--pink); -webkit-text-stroke: 0; text-shadow: none; }
.portfolio .display-heading, .clients .display-heading { color: var(--white); }
.display-heading.reveal { opacity: 1; transform: none; }
.about-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: start; }
.about-copy { max-width: 35rem; padding-top: .6rem; }
.about-copy p { margin: 0 0 1.5rem; color: #43433f; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.about-copy .lead, .why-copy .lead { color: var(--ink); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.3; letter-spacing: -.025em; }
.about-copy .signoff { color: var(--ink); font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 7rem; border-top: 1px solid var(--line); }
.stats div { min-height: 12rem; padding: 2rem; border-right: 1px solid var(--line); }
.stats div:first-child { padding-left: 0; }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; font: 700 clamp(4rem, 8vw, 7.5rem)/.85 var(--spartan); letter-spacing: -.06em; text-shadow: 2px 2px 0 var(--pink-soft), 4px 4px 0 rgba(189,202,222,.6); }
.stats sup { color: var(--orange); font-size: .4em; }
.stats span { display: block; max-width: 12rem; margin-top: 1rem; color: #55554f; }

.services { background: var(--pink-soft); }
.services-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: end; margin-bottom: 5rem; }
.services-intro p { max-width: 27rem; margin: 0 0 .4rem; }
.service-list { border-top: 2px solid var(--ink); }
.service-item { border-bottom: 1px solid rgba(10,10,10,.4); transform-origin: left center; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.service-item:hover { transform: perspective(900px) rotateX(1.5deg) translateZ(8px); background: rgba(255,255,255,.25); box-shadow: 0 18px 38px rgba(67,62,72,.09); }
.service-item summary { display: grid; grid-template-columns: 5rem 1fr 3rem; gap: 1rem; align-items: center; padding: 1.7rem 0; cursor: pointer; list-style: none; }
.service-item summary::-webkit-details-marker { display: none; }
.service-number { font: 600 .8rem/1 var(--garet); }
.service-item h3 { margin: 0; font: 700 clamp(2rem, 4.4vw, 5rem)/.9 var(--spartan); letter-spacing: -.045em; text-transform: uppercase; transition: transform .25s; }
.service-item summary:hover h3 { transform: translateX(.5rem); }
.service-toggle { position: relative; width: 2.8rem; aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%; }
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 1rem; height: 1px; background: var(--ink); transform: translate(-50%,-50%); transition: transform .2s; }
.service-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.service-item[open] .service-toggle::after { transform: translate(-50%,-50%) rotate(0); }
.service-content { display: grid; grid-template-columns: 5rem 1fr 1fr; gap: 1rem; padding: 0 4rem 2rem 0; }
.service-content p { grid-column: 2; max-width: 42rem; margin: 0; font-size: 1.05rem; }
.service-content span { align-self: end; justify-self: end; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.uncertain { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; margin-top: 4rem; padding: 1.4rem; background: var(--ink); color: var(--white); border-radius: .25rem; }
.uncertain-icon { display: grid; place-items: center; width: 4.5rem; aspect-ratio: 1; overflow: hidden; background: var(--white); border-radius: 50%; } .uncertain-icon .panda-face-icon { width: 125%; height: 125%; object-fit: contain; display: block; }
.uncertain h3 { margin: 0 0 .2rem; font: 700 1.35rem/1.1 var(--spartan); text-transform: uppercase; }
.uncertain p { margin: 0; color: rgba(255,255,255,.68); }
.uncertain a { padding: .9rem 1.1rem; color: var(--ink); background: var(--lime); border-radius: 999px; font: 600 .72rem/1 var(--garet); text-transform: uppercase; transition: transform .2s; }
.uncertain a:hover { transform: translateY(-3px); }

.portfolio { color: var(--white); background: var(--ink); }
.portfolio-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: end; margin-bottom: 6rem; }
.portfolio-heading p { max-width: 30rem; margin: 0; color: rgba(255,255,255,.62); }
.work-block { padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.work-block + .work-block { margin-top: 7rem; }
.work-label { display: grid; grid-template-columns: 4rem 1fr auto; align-items: baseline; gap: 1rem; margin-bottom: 2rem; }
.work-label > span { font-size: .72rem; }
.work-label h3 { margin: 0; font: 700 clamp(2rem, 4vw, 4rem)/1 var(--spartan); letter-spacing: -.04em; text-transform: uppercase; }
.work-label p { margin: 0; color: rgba(255,255,255,.52); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; perspective: 1500px; }
.video-slot, .photo-slot { transform-style: preserve-3d; }
.video-slot.is-tilting, .photo-slot.is-tilting { box-shadow: 0 30px 55px rgba(0,0,0,.28); }
.video-slot-wide { grid-column: 1 / -1; }
.media-placeholder { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #151515; border: 1px solid rgba(255,255,255,.25); transform: translateZ(28px); box-shadow: 0 20px 44px rgba(0,0,0,.18); }
.media-placeholder::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); margin: 1rem; pointer-events: none; }
.project-video { width: 100%; height: 100%; display: block; object-fit: cover; }
.media-rings { background: repeating-radial-gradient(circle at 50% 50%, transparent 0 7%, rgba(248,181,200,.5) 7.2% 7.5%, transparent 7.7% 14%), #0e0e0e; }
.media-lines { background: repeating-linear-gradient(125deg, #0f0f0f 0 42px, var(--panda-blue) 43px 45px, #252525 46px 88px); }
.media-type b { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.42); font: 900 clamp(8rem, 25vw, 22rem)/1 var(--spartan); letter-spacing: -.1em; }
.play-button { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: clamp(4rem, 7vw, 6rem); aspect-ratio: 1; color: var(--ink); background: var(--pink); border-radius: 50%; transform: translate(-50%,-50%); font-size: 1rem; padding-left: .2rem; transition: transform .25s; }
.video-slot:hover .play-button { transform: translate(-50%,-50%) scale(1.1); }
.work-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .9rem; transform: translateZ(18px); }
.work-meta span { color: rgba(255,255,255,.5); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.work-meta strong { font: 700 1rem/1 var(--spartan); text-transform: uppercase; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1rem; perspective: 1500px; }
.photo-tall { grid-row: span 2; }
.photo-wide { grid-column: span 2; }
.photo-placeholder { position: relative; display: grid; place-items: end start; aspect-ratio: 4 / 3; padding: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,.23); background: #151515; transform: translateZ(28px); box-shadow: 0 20px 44px rgba(0,0,0,.18); }
.photo-tall .photo-placeholder { height: calc(100% - 2.6rem); min-height: 32rem; aspect-ratio: auto; }
.photo-wide .photo-placeholder { aspect-ratio: 2 / 1; }
.photo-placeholder b { position: relative; z-index: 2; font: 800 clamp(3rem, 8vw, 7rem)/.8 var(--spartan); color: rgba(255,255,255,.78); }
.project-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
.photo-one { background: linear-gradient(135deg, #050505 0 45%, var(--pink) 45.3% 46.5%, #282828 46.8% 100%); }
.photo-two { background: radial-gradient(circle at 70% 35%, var(--panda-blue) 0 14%, #191919 14.4% 25%, var(--pink) 25.4% 26%, #111 26.4%); }
.photo-three { background-image: linear-gradient(rgba(248,181,200,.32) 1px, transparent 1px), linear-gradient(90deg, rgba(189,202,222,.32) 1px, transparent 1px); background-size: 28px 28px; }
.photo-four { background: repeating-linear-gradient(-20deg, #101010 0 55px, var(--pink) 56px 58px, #2b2b2b 59px 112px); }

.clients { color: var(--white); background: var(--ink); }
.clients-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: end; margin-bottom: 4.5rem; }
.clients-heading p { max-width: 28rem; margin: 0; color: rgba(255,255,255,.6); }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-light); perspective: 1600px; }
.client-card { position: relative; min-height: 23rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; overflow: hidden; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transition: transform .2s cubic-bezier(.2,.75,.25,1), filter .3s, box-shadow .25s; transform-style: preserve-3d; }
.client-card.is-tilting { z-index: 4; box-shadow: 0 34px 58px rgba(0,0,0,.34); }
.client-card:nth-child(3n) { border-right: 0; }
.client-card:nth-child(n+4) { border-bottom: 0; }
.client-card::before { content: ""; position: absolute; inset: 0; opacity: .24; transition: transform .4s; }
.client-card:hover::before { transform: scale(1.1) rotate(2deg); }
.client-card > * { position: relative; z-index: 1; }
.client-card > span { font-size: .7rem; transform: translateZ(24px); }
.client-card h3 { margin: auto 0 0; font: 700 clamp(2rem, 3.3vw, 3.8rem)/.88 var(--spartan); letter-spacing: -.05em; text-transform: uppercase; transform: translateZ(42px); text-shadow: 0 10px 24px rgba(0,0,0,.14); }
.client-card i { position: absolute; right: 1.5rem; top: 1.5rem; display: grid; place-items: center; width: 2.5rem; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; font-style: normal; transform: translateZ(36px); }
.client-lime { color: var(--ink); background: var(--pink); }
.client-lime::before { background: radial-gradient(circle at 15% 80%, transparent 0 22%, #0a0a0a 23% 24%, transparent 25%), repeating-radial-gradient(circle at 15% 80%, transparent 0 38px, rgba(10,10,10,.8) 40px 42px); }
.client-photo { background: #272727; }
.client-photo::before { background: linear-gradient(145deg, transparent 0 25%, var(--pink) 26% 28%, transparent 29% 47%, var(--panda-blue) 48% 50%, transparent 51% 70%, #fff 71% 74%, transparent 75%); }
.client-cream { color: var(--ink); background: var(--paper); }
.client-cream::before { background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(10,10,10,.25) 23px 24px); }
.client-grid-art { background-color: #181818; }
.client-grid-art::before { background-image: linear-gradient(rgba(248,181,200,.65) 1px, transparent 1px), linear-gradient(90deg, rgba(189,202,222,.65) 1px, transparent 1px); background-size: 34px 34px; }
.client-orange { color: var(--ink); background: var(--panda-blue); }
.client-orange::before { background: conic-gradient(from 90deg at 70% 30%, transparent, rgba(255,255,255,.7), transparent 30%); }
.client-white { color: var(--ink); background: var(--white); }
.client-white::before { background: radial-gradient(circle at 80% 20%, var(--pink) 0 10%, transparent 10.5%), radial-gradient(circle at 65% 40%, var(--panda-blue) 0 16%, transparent 16.5%); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.why-title > p { margin: 0 0 2rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.why-title h2 { position: sticky; top: 8rem; margin: 0; font: 800 clamp(3.8rem, 7.5vw, 8rem)/.82 var(--spartan); letter-spacing: -.06em; text-transform: uppercase; }
.why-title h2 span { color: var(--lavender); }
.why-copy { padding-top: 7rem; }
.why-copy > p { margin: 0 0 2rem; color: #4a4a45; }
.why-copy .lead { color: var(--ink); }
.why-pillars { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 3rem; }
.why-pillars span { padding: .7rem 1rem; border: 1px solid var(--ink); border-radius: 999px; font-size: .75rem; text-transform: uppercase; }

.start { padding-top: 0; background: var(--paper); }
.start-card { position: relative; overflow: hidden; padding: clamp(2rem, 6vw, 6rem); color: var(--white); background: var(--ink); box-shadow: 0 34px 0 var(--pink-soft), 0 58px 80px rgba(30,29,35,.16); transform: perspective(1400px) rotateX(1.2deg); transform-origin: center bottom; }
.start-card::after { content: "P"; position: absolute; right: -1rem; bottom: -8rem; color: transparent; -webkit-text-stroke: 1px rgba(248,181,200,.3); font: 900 33rem/1 var(--spartan); transform: rotate(-8deg); pointer-events: none; }
.start-label { position: relative; z-index: 1; display: inline-block; padding: .45rem .65rem; color: var(--ink); background: var(--lime); font: 700 .68rem/1 var(--garet); text-transform: uppercase; letter-spacing: .08em; transform: rotate(-3deg); }
.start h2 { position: relative; z-index: 1; margin: 1rem 0 1.5rem; font: 800 clamp(4.5rem, 10vw, 11rem)/.78 var(--spartan); text-transform: uppercase; letter-spacing: -.075em; }
.start p { position: relative; z-index: 1; max-width: 43rem; margin: 0 0 3rem; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.big-cta { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; max-width: 44rem; padding: 1rem 1rem 1rem 1.5rem; color: var(--ink); background: var(--lime); border-radius: 999px; font: 700 .82rem/1 var(--garet); text-transform: uppercase; letter-spacing: .06em; transition: transform .25s; }
.big-cta:hover { transform: translateX(.5rem); }
.big-cta i { display: grid; place-items: center; width: 3rem; aspect-ratio: 1; background: var(--ink); color: var(--white); border-radius: 50%; font-style: normal; }

.site-footer { padding: 3rem var(--pad) 1.5rem; color: var(--white); background: var(--ink); }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 3rem; }
.footer-brand { padding: .45rem; background: var(--white); }
.footer-brand img { height: 72px; }
.footer-top p { margin: 0; color: var(--pink); font: 700 clamp(1.1rem, 2vw, 1.8rem)/1 var(--spartan); text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.55); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom a { color: var(--white); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-title .line:nth-child(2) { transition-delay: .08s; }
.hero-title .line:nth-child(3) { transition-delay: .16s; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes cursorOrbit { to { transform: rotate(360deg); } }
@keyframes orbit3d {
  from { transform: translateZ(20px) rotateX(68deg) rotateZ(0deg); }
  to { transform: translateZ(20px) rotateX(68deg) rotateZ(360deg); }
}

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 1rem; color: var(--ink); background: var(--white); transform: translateY(-110%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
  .site-nav a { font: 700 clamp(2.5rem, 8vw, 5rem)/1 var(--spartan); text-transform: uppercase; }
  body.menu-open .site-nav { transform: translateY(0); }
  .menu-toggle { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .7rem; padding: .7rem 0; color: var(--ink); background: transparent; border: 0; text-transform: uppercase; font-size: .7rem; letter-spacing: .08em; cursor: pointer; }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 1.4rem; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-toggle i::before { content: ""; transform: translateY(-5px); }
  body.menu-open .menu-toggle i { transform: rotate(45deg); }
  body.menu-open .menu-toggle i::before { transform: rotate(-90deg); }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; align-content: end; padding-top: 8rem; }
  .hero-copy { padding-top: 6rem; }
  .hero-title { font-size: clamp(4.2rem, 13.5vw, 8rem); }
  .hero-art { position: absolute; inset: 8rem -5rem 0 auto; width: 52vw; min-height: auto; opacity: .58; }
  .hero-art img { width: 100%; height: 86%; }
  .sticker-one { left: -2rem; }
  .about-layout, .services-intro, .portfolio-heading, .clients-heading { grid-template-columns: 1fr; }
  .about-copy, .services-intro > p, .portfolio-heading > p, .clients-heading > p { margin-top: 2rem; }
  .client-card { min-height: 19rem; }
  .why-grid { gap: 5vw; }
}

@media (max-width: 720px) {
  .site-header { min-height: 68px; }
  .brand img { height: 44px; }
  .hero { min-height: 880px; padding-bottom: 2rem; align-items: center; }
  .hero-copy { align-self: end; }
  .hero-title { font-size: clamp(3.65rem, 18.5vw, 6.4rem); line-height: .8; }
  .hero-title .line { white-space: normal; }
  .hero-bottom { align-items: center; }
  .hero-bottom p { max-width: 18rem; font-size: .95rem; }
  .hero-art { inset: 6rem -2rem auto auto; width: 80vw; height: 55%; }
  .hero-art img { height: 100%; object-position: center top; }
  .hero-copy.parallax-layer, .hero-art img.parallax-layer { --parallax-y: 0px !important; }
  .art-orbit { display: none; }
  .sticker-one { top: 14%; left: 0; width: 5.5rem; }
  .sticker-one strong { font-size: 1.2rem; }
  .sticker-one em { font-size: .52rem; margin-top: .2rem; }
  .sticker-two { bottom: 13%; }
  .display-heading { font-size: clamp(3rem, 15vw, 5.4rem); }
  .about-layout { gap: 1rem; }
  .stats { grid-template-columns: 1fr; margin-top: 4rem; }
  .stats div, .stats div:first-child { min-height: auto; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats div:last-child { border-bottom: 0; }
  .services-intro { margin-bottom: 3rem; }
  .service-item summary { grid-template-columns: 2.2rem 1fr 2.5rem; }
  .service-item h3 { font-size: clamp(1.7rem, 8vw, 2.8rem); }
  .service-content { grid-template-columns: 2.2rem 1fr; padding-right: 0; }
  .service-content p { grid-column: 2; }
  .service-content span { grid-column: 2; justify-self: start; margin-top: 1rem; }
  .uncertain { grid-template-columns: auto 1fr; }
  .uncertain a { grid-column: 1 / -1; text-align: center; }
  .work-label { grid-template-columns: 2.2rem 1fr; }
  .work-label p { grid-column: 2; }
  .video-grid, .photo-grid { grid-template-columns: 1fr; }
  .video-slot-wide, .photo-wide { grid-column: auto; }
  .photo-tall { grid-row: auto; }
  .photo-tall .photo-placeholder { height: auto; min-height: 25rem; aspect-ratio: 4 / 5; }
  .client-grid { grid-template-columns: 1fr; }
  .client-card { min-height: 16rem; border-right: 0; border-bottom: 1px solid var(--ink) !important; }
  .client-card:last-child { border-bottom: 0 !important; }
  .client-card h3 { font-size: 2.8rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-title h2 { position: static; font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .why-copy { padding-top: 1rem; }
  .start-card { margin-inline: calc(var(--pad) * -1); }
  .start h2 { font-size: clamp(4.5rem, 21vw, 7rem); }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .parallax-layer { --parallax-y: 0px !important; }
  [data-tilt] { transform: none !important; }
  .hero-art img { transform: translateZ(0); }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Client section: supplied client logos, logo-only, no cards/boxes */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5.5rem) clamp(2rem, 5vw, 6rem);
  border: 0;
  perspective: none;
  align-items: center;
}

.client-logo-wrap {
  min-height: 13rem;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: transparent;
  border: 0;
}

.client-logo-image {
  display: block;
  width: min(100%, 19rem);
  max-height: 10.5rem;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.client-logo-wrap:nth-child(1) .client-logo-image { max-height: 12rem; }
.client-logo-wrap:nth-child(2) .client-logo-image { max-height: 11rem; }
.client-logo-wrap:nth-child(3) .client-logo-image { max-height: 8rem; }
.client-logo-wrap:nth-child(4) .client-logo-image { max-height: 8rem; }
.client-logo-wrap:nth-child(5) .client-logo-image { max-height: 8.5rem; }
.client-logo-wrap:nth-child(6) .client-logo-image { max-height: 8.5rem; }

@media (max-width: 800px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .client-logo-wrap {
    min-height: 11rem;
    padding: 1rem;
  }

  .client-logo-image {
    width: min(100%, 15rem);
    max-height: 8.5rem !important;
  }
}

@media (max-width: 520px) {
  .client-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .client-logo-wrap {
    min-height: 9rem;
  }

  .client-logo-image {
    width: min(100%, 17rem);
    max-height: 7.5rem !important;
  }
}

/* Exact requested change: ONLY NOTHING YOU DON'T. */
/* ONLY “NOTHING YOU DON’T.” — high-contrast white with a clearly visible brand-pink outline */
.nothing-white-only {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 3px var(--pink) !important;
  text-shadow:
    1px 0 0 var(--pink), -1px 0 0 var(--pink),
    0 1px 0 var(--pink), 0 -1px 0 var(--pink) !important;
  paint-order: stroke fill;
}


/* Uploaded Creative Pandas character */
.hero-character-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}


.nothing-white-only .nothing-brand-accent {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 3px var(--pink) !important;
  text-shadow: 1px 0 0 var(--pink), -1px 0 0 var(--pink), 0 1px 0 var(--pink), 0 -1px 0 var(--pink) !important;
  paint-order: stroke fill;
}


/* Service detail lists */
.service-content ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.service-content li {
  position: relative;
  padding-left: 1.1rem;
}
.service-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 800;
}

@media (hover: none), (pointer: coarse) { }

/* Creative Pandas logo paw cursor — automatically contrasts with the page using difference blending. */
html.panda-cursor-active,
html.panda-cursor-active body,
html.panda-cursor-active a,
html.panda-cursor-active button,
html.panda-cursor-active summary,
html.panda-cursor-active [role="button"],
html.panda-cursor-active input,
html.panda-cursor-active textarea,
html.panda-cursor-active select,
html.panda-cursor-active [data-tilt] { cursor: none !important; }
.panda-cursor {
  position: fixed;
  left: 0; top: 0;
  width: 30px; height: 30px;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity .12s ease;
}
.panda-cursor.is-visible { opacity: 1; }
.panda-cursor img {
  display:block; width:100%; height:100%;
  object-fit:contain;
  filter: invert(1);
}
@media (hover:none), (pointer:coarse) { .panda-cursor { display:none; } }
