/* Kerplunk! Studios & Productions Inc. — brand palette preserved */
:root {
  --violet: #3e005b;
  --violet-deep: #2a003f;
  --violet-mid: #5c1a82;
  --lime: #a9ff00;
  --lime-ink: #1a2e00;
  --paper: #f6f3f8;
  --paper-2: #ebe6ef;
  --ink: #16001f;
  --muted: #6d6475;
  --white: #ffffff;
  --line: color-mix(in srgb, var(--violet) 14%, transparent);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --glow-lime: 0 0 48px color-mix(in srgb, var(--lime) 32%, transparent);
  --glow-violet: 0 0 56px color-mix(in srgb, var(--violet) 22%, transparent);
  --shadow-soft: 0 18px 48px color-mix(in srgb, var(--violet) 14%, transparent);
  --shadow-lift: 0 28px 56px color-mix(in srgb, var(--violet-deep) 16%, transparent);
  --header-h: clamp(3.75rem, 10vw, 4.25rem);
  --max: 72rem;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3rem, 8vw, 7rem);
  --touch: 2.75rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, color-mix(in srgb, var(--violet) 6%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, color-mix(in srgb, var(--lime) 5%, transparent), transparent 50%),
    var(--paper);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
.hero-brand,
.hero-brand-main,
.hero-brand-rest,
.eyebrow,
.service-index,
.work-num {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 6.5vw, 5.5rem);
  margin: 0;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.4rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin: 0 0 0.75rem;
}

p {
  margin: 0;
}

.wrap {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - var(--gutter) * 2, 40rem);
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.028;
  mix-blend-mode: multiply;
  /* Static noise tile — no SVG filter (cheaper than live feTurbulence) */
  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)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  padding-top: var(--safe-top);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  transform-origin: left;
  box-shadow: 0 0 12px color-mix(in srgb, var(--lime) 45%, transparent);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  padding: var(--safe-top) calc(var(--gutter) + var(--safe-right)) 0 calc(var(--gutter) + var(--safe-left));
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--violet-deep) 92%, transparent);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--violet) 25%, transparent);
}

@media (min-width: 900px) and (pointer: fine) {
  .site-header.is-scrolled {
    background: color-mix(in srgb, var(--violet-deep) 88%, transparent);
    backdrop-filter: blur(14px);
  }
}

.skip-link {
  position: absolute;
  left: calc(1rem + var(--safe-left));
  top: -100px;
  z-index: 100;
  min-height: var(--touch);
  padding: 0.65rem 1rem;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 600;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: calc(1rem + var(--safe-top));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  min-width: 0;
  flex-shrink: 1;
}

.brand img {
  width: clamp(2rem, 6vw, 2.4rem);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--lime) 35%, transparent));
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-full {
  display: grid;
  gap: 0.05em;
}

.brand-line {
  display: block;
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.brand-line-sub {
  font-size: clamp(0.62rem, 2vw, 0.82rem);
  font-weight: 700;
  opacity: 0.92;
}

.brand-short {
  display: none;
  font-size: clamp(0.85rem, 3vw, 1rem);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .brand-full {
    display: none;
  }

  .brand-short {
    display: block;
  }
}

.nav {
  margin-left: auto;
  display: none;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.nav a {
  color: color-mix(in srgb, var(--white) 82%, transparent);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--touch) / 2 - 0.55rem);
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover {
  color: var(--lime);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--lime);
}

.header-cta {
  display: none;
}

.nav-toggle {
  margin-left: auto;
  width: var(--touch);
  height: var(--touch);
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--lime);
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile nav — full-screen drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: color-mix(in srgb, var(--violet-deep) 72%, transparent);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.mobile-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 39;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.15rem;
  padding: calc(var(--header-h) + var(--safe-top) + 1.25rem) calc(var(--gutter) + var(--safe-right)) calc(2rem + var(--safe-bottom)) calc(var(--gutter) + var(--safe-left));
  background: var(--violet-deep);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  padding: 0.85rem 0.25rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 6vw, 2rem);
  min-height: var(--touch);
  display: flex;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--lime) 12%, transparent);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--lime);
  padding-left: 0.5rem;
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  align-self: stretch;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border-bottom: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--lime) 22%, transparent);
}

.mobile-nav .btn:hover,
.mobile-nav .btn:focus-visible {
  color: var(--lime-ink);
  padding-left: 1.4rem;
  background: #b8ff2e;
  box-shadow: 0 14px 36px color-mix(in srgb, var(--lime) 35%, transparent);
}

@media (min-width: 900px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav,
  .mobile-nav-backdrop {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: var(--touch);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lime {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--lime) 40%, transparent);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-lime::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 42%,
    color-mix(in srgb, var(--white) 45%, transparent) 50%,
    transparent 58%
  );
  transform: translateX(-130%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

.btn-lime:hover {
  box-shadow: var(--glow-lime);
}

.btn-lime:hover::before {
  transform: translateX(130%);
}

.btn-violet {
  background: var(--violet);
  color: var(--white);
}

.btn-violet:hover {
  background: var(--violet-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: color-mix(in srgb, var(--white) 35%, transparent);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* Hero — compact lockup + full-bleed media */
.hero {
  position: relative;
  min-height: 72svh;
  min-height: 72dvh;
  max-height: 52rem;
  display: grid;
  place-items: end start;
  padding:
    calc(var(--header-h) + var(--safe-top) + clamp(1rem, 3vw, 1.75rem))
    calc(var(--gutter) + var(--safe-right))
    calc(clamp(2.25rem, 5vw, 3.25rem) + var(--safe-bottom))
    calc(var(--gutter) + var(--safe-left));
  color: var(--white);
  perspective: 1200px;
  overflow: hidden;
  background: var(--violet-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a0028;
  transform-style: preserve-3d;
}

/*
  Stream iframes letterbox inside their box. Size the iframe as a 16:9
  cover surface (like object-fit: cover) and clip overflow on .hero-media.
  max-width: none overrides the global iframe { max-width: 100% } rule.
*/
.hero-stream {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  max-width: none;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
  filter: saturate(1.05) contrast(1.05);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
  transition: opacity 0.6s var(--ease);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--violet-deep) 55%, transparent) 0%,
      color-mix(in srgb, var(--violet) 35%, transparent) 45%,
      color-mix(in srgb, var(--violet-deep) 92%, transparent) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      color-mix(in srgb, var(--lime) 18%, transparent),
      transparent 55%
    );
}

.hero-depth {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transform-style: preserve-3d;
}

.wave-canvas {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 18%;
  width: 90%;
  height: auto;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.depth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.depth-orb-a {
  width: clamp(9rem, 28vw, 18rem);
  height: clamp(9rem, 28vw, 18rem);
  top: 18%;
  right: 8%;
  background: radial-gradient(circle, color-mix(in srgb, var(--lime) 40%, transparent), transparent 70%);
}

.depth-orb-b {
  width: clamp(6rem, 20vw, 12rem);
  height: clamp(6rem, 20vw, 12rem);
  bottom: 28%;
  left: 10%;
  background: radial-gradient(circle, color-mix(in srgb, var(--violet-mid) 70%, transparent), transparent 70%);
}

.depth-ring {
  position: absolute;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  top: 22%;
  right: 12%;
  border: 1px solid color-mix(in srgb, var(--lime) 35%, transparent);
  border-radius: 50%;
  animation: spin-slow 28s linear infinite;
}

.depth-ring.is-paused,
.hero.is-fx-paused .depth-ring {
  animation-play-state: paused;
}

.depth-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed color-mix(in srgb, var(--white) 20%, transparent);
  border-radius: 50%;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: min(100%, 40rem);
  transform-style: preserve-3d;
}

.hero-brand {
  margin: 0 0 0.3rem;
  display: grid;
  gap: 0.12em;
  min-width: 0;
  max-width: 100%;
  animation: brand-in 1.1s var(--ease) both;
}

.hero-brand-main,
.hero-brand-rest {
  display: block;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px color-mix(in srgb, var(--lime) 40%, #1a2e00);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 color-mix(in srgb, var(--violet-deep) 90%, transparent),
    0 2px 10px color-mix(in srgb, var(--violet-deep) 85%, transparent),
    0 0 24px color-mix(in srgb, var(--violet-deep) 70%, transparent),
    0 0 36px color-mix(in srgb, var(--lime) 22%, transparent);
}

.hero-brand-main {
  font-size: clamp(1.75rem, 6.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  color: var(--lime);
  white-space: nowrap;
  max-width: 100%;
}

.hero-brand-rest {
  font-size: clamp(0.78rem, 2.1vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: color-mix(in srgb, var(--white) 92%, var(--lime));
  max-width: 100%;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(1.45rem, 4vw, 2.65rem);
  animation: rise 1s 0.12s var(--ease) both;
}

.hero-sub {
  margin-top: 0.7rem;
  max-width: 30ch;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: color-mix(in srgb, var(--white) 82%, transparent);
  font-weight: 300;
  animation: rise 1s 0.22s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
  animation: rise 1s 0.32s var(--ease) both;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(36px) rotateX(18deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: calc(1.4rem + var(--safe-bottom));
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid color-mix(in srgb, var(--lime) 55%, transparent);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(12px);
    opacity: 0.2;
  }
}

@media (min-width: 880px) {
  .hero {
    min-height: 70svh;
    min-height: 70dvh;
    padding:
      calc(var(--header-h) + var(--safe-top) + 2rem)
      calc(2rem + var(--safe-right))
      calc(3.5rem + var(--safe-bottom))
      calc(2rem + var(--safe-left));
  }

  .hero-copy {
    max-width: 42rem;
  }
}

/* Mobile — tighter hero + type */
@media (max-width: 720px) {
  .hero {
    min-height: 58svh;
    min-height: 58dvh;
    max-height: 32rem;
    place-items: end start;
    align-content: end;
    padding-top: calc(var(--header-h) + var(--safe-top) + 0.35rem);
    padding-bottom: calc(1.35rem + var(--safe-bottom));
  }

  .hero-veil {
    background:
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--violet-deep) 42%, transparent) 0%,
        color-mix(in srgb, var(--violet) 28%, transparent) 38%,
        color-mix(in srgb, var(--violet-deep) 88%, transparent) 72%,
        color-mix(in srgb, var(--violet-deep) 96%, transparent) 100%
      );
  }

  .hero-brand-main {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    letter-spacing: -0.07em;
    color: #c8ff3d;
    -webkit-text-stroke: 0;
    white-space: nowrap;
    text-shadow:
      0 0 2px var(--violet-deep),
      0 1px 0 var(--violet-deep),
      0 3px 14px color-mix(in srgb, var(--violet-deep) 95%, transparent),
      0 0 28px color-mix(in srgb, var(--violet-deep) 80%, transparent),
      0 0 32px color-mix(in srgb, var(--lime) 22%, transparent);
  }

  .hero-brand-rest {
    font-size: clamp(0.68rem, 2.8vw, 0.82rem);
    letter-spacing: 0.05em;
    max-width: 100%;
    -webkit-text-stroke: 0;
    color: color-mix(in srgb, var(--white) 94%, var(--lime));
    text-shadow:
      0 1px 0 var(--violet-deep),
      0 2px 10px color-mix(in srgb, var(--violet-deep) 90%, transparent);
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.25rem, 5.2vw, 1.7rem);
    max-width: 12ch;
    text-shadow: 0 2px 12px color-mix(in srgb, var(--violet-deep) 90%, transparent);
  }

  .hero-sub {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    max-width: 28ch;
    line-height: 1.4;
    text-shadow: 0 1px 8px color-mix(in srgb, var(--violet-deep) 85%, transparent);
  }

  .hero-actions {
    margin-top: 0.9rem;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    padding-inline: 0.95rem;
    font-size: 0.86rem;
  }

  .scroll-cue {
    display: none;
  }

  /* Soften the big lime orb so the top doesn’t read as empty green */
  .depth-orb-a {
    width: clamp(7rem, 42vw, 11rem);
    height: clamp(7rem, 42vw, 11rem);
    top: 10%;
    right: 4%;
    opacity: 0.55;
  }

  .depth-orb-b {
    width: clamp(5rem, 28vw, 8rem);
    height: clamp(5rem, 28vw, 8rem);
    bottom: 22%;
    opacity: 0.7;
  }

  .depth-ring {
    width: min(48vw, 14rem);
    height: min(48vw, 14rem);
    top: 12%;
    right: 6%;
    opacity: 0.65;
  }

  .wave-canvas {
    bottom: 12%;
    opacity: 0.4;
  }
}

/* Short landscape phones only — keep effects on normal mobile */
@media (max-height: 420px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    place-items: end start;
    padding-bottom: calc(1.5rem + var(--safe-bottom));
  }

  .hero-brand-main {
    font-size: clamp(2rem, 10vh, 2.75rem);
  }

  .hero-brand-rest {
    font-size: clamp(0.7rem, 3.5vh, 0.95rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.25rem, 6vh, 1.75rem);
  }

  .scroll-cue {
    display: none;
  }
}

/* Intro — The Great Equalizer */
.intro {
  position: relative;
  background:
    linear-gradient(
      135deg,
      var(--lime) 0%,
      color-mix(in srgb, var(--lime) 88%, var(--white)) 48%,
      var(--lime) 100%
    );
  background-size: 200% 200%;
  animation: intro-shimmer 14s ease-in-out infinite;
  color: var(--lime-ink);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  overflow: hidden;
}

@keyframes intro-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--violet) 6%, transparent) 0,
    color-mix(in srgb, var(--violet) 6%, transparent) 1px,
    transparent 1px,
    transparent 12px
  );
  mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
  pointer-events: none;
  opacity: 0.45;
}

.intro::after {
  content: "";
  position: absolute;
  width: clamp(10rem, 28vw, 18rem);
  height: clamp(10rem, 28vw, 18rem);
  top: -30%;
  right: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--violet) 14%, transparent), transparent 68%);
  pointer-events: none;
}

.intro-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.eq-bars {
  position: absolute;
  right: clamp(0.5rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-end;
  gap: clamp(0.2rem, 0.8vw, 0.35rem);
  height: clamp(3.5rem, 12vw, 5.5rem);
  opacity: 0.22;
}

.eq-bars span {
  display: block;
  width: clamp(0.2rem, 0.7vw, 0.32rem);
  height: 35%;
  border-radius: 999px;
  background: var(--violet);
  transform-origin: bottom;
  animation: eq-pulse 1.1s var(--ease) infinite;
}

.eq-bars span:nth-child(1) { animation-delay: 0s; }
.eq-bars span:nth-child(2) { animation-delay: 0.08s; }
.eq-bars span:nth-child(3) { animation-delay: 0.16s; }
.eq-bars span:nth-child(4) { animation-delay: 0.24s; }
.eq-bars span:nth-child(5) { animation-delay: 0.12s; }
.eq-bars span:nth-child(6) { animation-delay: 0.2s; }
.eq-bars span:nth-child(7) { animation-delay: 0.04s; }
.eq-bars span:nth-child(8) { animation-delay: 0.28s; }
.eq-bars span:nth-child(9) { animation-delay: 0.1s; }
.eq-bars span:nth-child(10) { animation-delay: 0.18s; }
.eq-bars span:nth-child(11) { animation-delay: 0.06s; }
.eq-bars span:nth-child(12) { animation-delay: 0.22s; }

@keyframes eq-pulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.55; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* The Great Equalizer */
.equalizer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
  align-items: center;
  padding-right: clamp(0rem, 8vw, 5rem);
}

.equalizer-heading {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 14ch;
}

.equalizer-heading::after {
  content: "";
  display: block;
  width: clamp(2.25rem, 6vw, 3.5rem);
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), color-mix(in srgb, var(--lime-ink) 40%, var(--violet)));
  box-shadow: 0 0 14px color-mix(in srgb, var(--violet) 35%, transparent);
}

.equalizer-body {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--lime-ink) 80%, transparent);
}

@media (min-width: 720px) {
  .equalizer {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: center;
    padding-right: clamp(3rem, 10vw, 7rem);
  }

  .equalizer-heading::after {
    margin-top: 0.75rem;
  }

  .equalizer-body {
    max-width: none;
    padding-left: clamp(1rem, 2.5vw, 1.75rem);
    border-left: 2px solid color-mix(in srgb, var(--violet) 18%, transparent);
  }
}

@media (max-width: 719px) {
  .eq-bars {
    right: 0.75rem;
    height: 2.75rem;
    opacity: 0.14;
  }
}

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(0.65rem, 2vw, 0.85rem) 0;
  border-block: 1px solid color-mix(in srgb, var(--lime) 22%, transparent);
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.band-violet {
  background: var(--violet);
  color: var(--lime);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(0.72rem, 2.2vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track,
.marquee.is-paused .marquee-track {
  animation-play-state: paused;
}

.marquee-dot {
  opacity: 0.55;
  font-size: 0.65em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections shared */
.section-head {
  margin-bottom: clamp(1.75rem, 5vw, 3.5rem);
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.68rem, 2vw, 0.72rem);
  font-weight: 700;
}

.lede {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  max-width: 38ch;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.reveal.is-in .work-list li,
.reveal.is-in .team-grid li,
.truth-inner.reveal.is-in .truth-copy p {
  animation: rise-in 0.65s var(--ease-out) both;
}

.reveal.is-in .work-list li:nth-child(1),
.reveal.is-in .team-grid li:nth-child(1),
.truth-inner.reveal.is-in .truth-copy p:nth-child(1) { animation-delay: 0.08s; }

.reveal.is-in .work-list li:nth-child(2),
.reveal.is-in .team-grid li:nth-child(2),
.truth-inner.reveal.is-in .truth-copy p:nth-child(2) { animation-delay: 0.16s; }

.reveal.is-in .work-list li:nth-child(3),
.reveal.is-in .team-grid li:nth-child(3) { animation-delay: 0.24s; }

.reveal.is-in .work-list li:nth-child(4) { animation-delay: 0.32s; }
.reveal.is-in .work-list li:nth-child(5) { animation-delay: 0.4s; }
.reveal.is-in .team-grid li:nth-child(4) { animation-delay: 0.32s; }

/* Below-fold sections — skip expensive layout until near viewport (avoid .work: YouTube iframe) */
.feedback,
.truth,
.services,
.about,
.clients,
.team,
.contact,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* Work */
.work {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.work::before {
  content: "";
  position: absolute;
  width: clamp(18rem, 45vw, 32rem);
  height: clamp(18rem, 45vw, 32rem);
  top: -10%;
  left: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--violet) 8%, transparent), transparent 70%);
  pointer-events: none;
}

.work-head {
  max-width: none;
}

.work-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  margin-bottom: 0.65rem;
}

.work-eyebrow-portfolio {
  margin: 0;
  font-size: clamp(0.72rem, 2vw, 0.78rem);
}

.work-eyebrow-selected {
  margin: 0;
  margin-left: auto;
  text-align: right;
  font-size: clamp(0.72rem, 2vw, 0.78rem);
  color: var(--muted);
  letter-spacing: 0.14em;
}

.work-head h2 {
  max-width: 20ch;
}

@media (min-width: 640px) {
  .work-head-row {
    gap: 1rem 3rem;
  }

  .work-eyebrow-selected {
    position: relative;
    padding-left: 1.5rem;
  }

  .work-eyebrow-selected::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.75rem;
    height: 1px;
    background: color-mix(in srgb, var(--violet) 35%, transparent);
    transform: translateY(-50%);
  }
}

.work-stage {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.work-player {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--violet-deep);
  border-radius: clamp(0.75rem, 2vw, 1rem);
  box-shadow: var(--shadow-soft);
  transform: none !important;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, var(--violet) 18%, transparent);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.work-player::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--lime) 55%, transparent),
    transparent 40%,
    color-mix(in srgb, var(--violet-mid) 45%, transparent)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.work-player.is-switching {
  opacity: 0.88;
  transform: scale(0.992) !important;
}

.work-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transition: opacity 0.35s var(--ease);
}

.work-list-wrap {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.work-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--white) 70%, transparent);
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  min-height: var(--touch);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.work-item::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-style: solid;
  border-width: 0.35rem 0 0.35rem 0.55rem;
  border-color: transparent transparent transparent color-mix(in srgb, var(--violet) 35%, transparent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.work-item:hover {
  background: var(--white);
  border-color: color-mix(in srgb, var(--violet) 12%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--violet) 8%, transparent);
}

.work-item:hover::after,
.work-item.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.work-item.is-active {
  background: var(--white);
  border-color: color-mix(in srgb, var(--violet) 16%, transparent);
  box-shadow: inset 3px 0 0 var(--lime), 0 10px 28px color-mix(in srgb, var(--violet) 10%, transparent);
}

.work-item.is-active::after {
  border-left-color: var(--lime);
}

@media (pointer: fine) {
  .work-item:hover {
    transform: translateX(3px);
  }

  .work-item.is-active:hover {
    transform: none;
  }
}

.work-num {
  color: var(--violet);
  font-size: 0.9rem;
  opacity: 0.5;
}

.work-item.is-active .work-num {
  opacity: 1;
}

.work-meta {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.work-meta strong {
  font-family: "Syne", sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  letter-spacing: -0.02em;
}

.work-meta em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (min-width: 960px) {
  .work-stage {
    grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.85fr);
    gap: 1.75rem;
    align-items: stretch;
  }

  .work-list {
    height: 100%;
    align-content: center;
  }
}

/* What most audio studios won't tell you */
.truth {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, color-mix(in srgb, var(--violet) 7%, transparent), transparent 55%),
    radial-gradient(ellipse 55% 70% at 100% 80%, color-mix(in srgb, var(--lime) 6%, transparent), transparent 50%),
    var(--paper);
  overflow: hidden;
}

.truth::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    color-mix(in srgb, var(--violet) 4%, transparent) 0,
    color-mix(in srgb, var(--violet) 4%, transparent) 1px,
    transparent 1px,
    transparent 48px
  );
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
  opacity: 0.6;
}

.truth-inner {
  position: relative;
  z-index: 1;
}

.truth-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, color-mix(in srgb, var(--violet-mid) 55%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, color-mix(in srgb, var(--lime) 10%, transparent), transparent 50%),
    var(--violet-deep);
  color: var(--white);
  border: 1px solid color-mix(in srgb, var(--lime) 22%, transparent);
  box-shadow:
    0 28px 64px color-mix(in srgb, var(--violet-deep) 35%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--white) 10%, transparent);
  overflow: hidden;
}

.truth-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -35% auto;
  width: clamp(14rem, 38vw, 26rem);
  height: clamp(14rem, 38vw, 26rem);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--lime) 18%, transparent);
  pointer-events: none;
  opacity: 0.45;
}

.truth-accent {
  width: clamp(3rem, 8vw, 4.5rem);
  height: 4px;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), color-mix(in srgb, var(--lime) 35%, transparent));
  box-shadow: 0 0 20px color-mix(in srgb, var(--lime) 45%, transparent);
}

.truth-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  max-width: 14ch;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
}

.truth-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.15rem, 3vw, 1.5rem);
}

.truth-copy p {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--white) 84%, transparent);
}

.truth-copy p:first-child {
  font-size: clamp(1.08rem, 2.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--white);
  padding-bottom: clamp(1rem, 2.5vw, 1.35rem);
  border-bottom: 1px solid color-mix(in srgb, var(--lime) 22%, transparent);
}

.truth-copy p:last-child {
  padding-left: clamp(0rem, 2vw, 0.5rem);
  border-left: 3px solid var(--lime);
}

@media (min-width: 900px) {
  .truth-panel {
    padding: clamp(2.75rem, 5vw, 4rem);
  }

  .truth-panel h2 {
    max-width: 11ch;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
  }

  .truth-copy {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }

  .truth-copy p:first-child {
    padding-bottom: 0;
    border-bottom: 0;
    padding-right: clamp(0.5rem, 2vw, 1rem);
    border-right: 1px solid color-mix(in srgb, var(--lime) 22%, transparent);
  }

  .truth-copy p:last-child {
    padding-left: clamp(0.5rem, 2vw, 1rem);
    border-left: 0;
    padding-top: 0.15rem;
  }
}

/* Feedback */
.feedback {
  position: relative;
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, color-mix(in srgb, var(--lime) 12%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, color-mix(in srgb, var(--violet-mid) 55%, transparent), transparent 50%),
    var(--violet-deep);
  color: var(--white);
  overflow: hidden;
}

.feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 18px,
    color-mix(in srgb, var(--white) 3%, transparent) 18px,
    color-mix(in srgb, var(--white) 3%, transparent) 19px
  );
  pointer-events: none;
  opacity: 0.5;
}

.feedback-wrap {
  position: relative;
  z-index: 1;
}

.feedback-head {
  max-width: 28rem;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.feedback .eyebrow {
  color: var(--lime);
}

.feedback-head h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.75rem);
  color: var(--white);
}

.feedback-stage {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: end;
}

.feedback-lead,
.feedback-side {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  transition: transform 0.45s var(--ease);
}

@media (pointer: fine) {
  .feedback-lead:hover,
  .feedback-side:hover {
    transform: translateY(-3px);
  }
}

.feedback-mark {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.55;
  letter-spacing: -0.08em;
  color: var(--lime);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 48px color-mix(in srgb, var(--lime) 40%, transparent);
  user-select: none;
}

.feedback-mark-sm {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 0.55rem;
  opacity: 0.9;
}

.feedback-lead {
  max-width: 38rem;
  padding-left: 1.15rem;
  border-left: 3px solid var(--lime);
}

.feedback-lead p {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.25rem, 3.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 1.75rem;
}

.feedback-side {
  max-width: 26rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--lime) 35%, transparent);
}

.feedback-side p {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: color-mix(in srgb, var(--white) 92%, transparent);
  margin: 0 0 1.35rem;
}

.feedback-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.feedback-avatar {
  flex-shrink: 0;
  width: var(--touch);
  height: var(--touch);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.feedback-side .feedback-avatar {
  background: transparent;
  color: var(--lime);
  border: 1.5px solid var(--lime);
}

.feedback-meta {
  display: grid;
  gap: 0.15rem;
}

.feedback-meta cite {
  font-style: normal;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.feedback-meta span {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--white) 62%, transparent);
}

@media (min-width: 900px) {
  .feedback-stage {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 4rem;
    align-items: end;
  }

  .feedback-side {
    justify-self: end;
    margin-bottom: 0.5rem;
  }
}

/* Split sections — Services + Mission */
.services {
  background: var(--paper);
}

.about {
  background: var(--white);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  margin-inline: auto;
  padding: 0;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 1.5rem) clamp(2.25rem, 6vw, 3rem);
  max-width: none;
}

.split-copy .eyebrow { margin: 0; }

.split-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 5.5vw, 2.1rem);
  text-transform: uppercase;
  color: var(--ink);
}

.split-media {
  margin: 0;
  line-height: 0;
  overflow: hidden;
  background: var(--violet-deep);
  border-radius: 0;
  max-height: none;
  width: 100%;
  transition: box-shadow 0.45s var(--ease);
}

.split-media img {
  width: 100%;
  height: clamp(15rem, 52vw, 20rem);
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .split-media:hover {
    box-shadow: var(--shadow-lift);
  }

  .split-media:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.03);
  }
}

.split-media-studio img {
  object-position: center 42%;
}

.about .split-media img {
  object-position: center 35%;
}

.service-blocks { display: grid; gap: 1rem; }

.service-blocks > div {
  padding: 1rem 1.05rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--white) 65%, transparent);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

@media (pointer: fine) {
  .service-blocks > div:hover {
    border-color: color-mix(in srgb, var(--violet) 16%, transparent);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--violet) 8%, transparent);
    transform: translateY(-2px);
  }
}

.service-blocks h3 {
  margin: 0 0 0.35rem;
  color: var(--violet);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.service-blocks ul {
  margin: 0;
  padding: 0 0 0 1.05rem;
  color: var(--muted);
  display: grid;
  gap: 0.28rem;
  font-size: 0.92rem;
}

.mv { display: grid; gap: 1.25rem; }

.mv h3 {
  margin: 0 0 0.4rem;
  color: var(--violet);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.mv p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile: Services = text → image; Mission = text → image */
@media (min-width: 900px) {
  .split-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3rem);
    width: min(100% - 3rem, var(--max));
    align-items: center;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  /* Mission: image left, text right (copy is first in DOM) */
  .split-row-flip .split-media {
    order: -1;
  }

  .split-media {
    border-radius: 1rem;
    max-height: 22rem;
  }

  .split-media img {
    height: 22rem;
    object-position: center center;
  }

  .split-media-studio img {
    object-position: center 40%;
  }

  .split-copy {
    padding: 0;
    max-width: 34rem;
  }
}

@media (min-width: 1100px) {
  .split-media {
    max-height: 24rem;
  }

  .split-media img {
    height: 24rem;
  }
}

/* Clients — official logo wall from kerplunkstudios.com + live HTML copy */
.clients { padding: 0; background: var(--violet); color: var(--white); overflow: hidden; }
.clients-band {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  padding: clamp(2.75rem, 7vw, 5.25rem) 0;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}
.clients-logos { margin: 0; line-height: 0; overflow: hidden; border-radius: 0.75rem; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.clients-logos img { display: block; width: 100%; height: auto; max-width: 100%; transition: transform 0.6s var(--ease); }

@media (pointer: fine) {
  .clients-logos:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-violet), var(--shadow-lift);
  }

  .clients-logos:hover img {
    transform: scale(1.015);
  }
}
.clients-copy { max-width: 28rem; }
.clients .eyebrow { color: var(--lime); }
.clients-copy h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.clients-copy p {
  color: color-mix(in srgb, var(--white) 88%, transparent);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
@media (min-width: 900px) {
  .clients-band {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.9fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    width: min(100% - 3rem, var(--max));
  }
}
@media (max-width: 899px) {
  .clients-band { grid-template-columns: 1fr; }
  .clients-copy { max-width: none; }
}

/* Team */
.team { padding: clamp(3rem, 8vw, 5.5rem) 0; background: var(--lime); color: var(--lime-ink); }
.team-head { margin-bottom: clamp(1.75rem, 4vw, 2.5rem); max-width: 36rem; }
.team .eyebrow { color: var(--violet); }
.team-head h2 { color: var(--ink); font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 0.65rem; }
.team .lede { color: color-mix(in srgb, var(--lime-ink) 78%, transparent); max-width: 36ch; margin: 0; }
.team-grid {
  list-style: none; margin: 0 0 clamp(1.75rem, 4vw, 2.5rem); padding: 0;
  display: grid; gap: 0.85rem; grid-template-columns: 1fr;
}
.team-grid li {
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--white) 55%, transparent);
  border-radius: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--violet) 12%, transparent);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

@media (pointer: fine) {
  .team-grid li:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px color-mix(in srgb, var(--violet) 12%, transparent);
    border-color: color-mix(in srgb, var(--violet) 22%, transparent);
  }
}
.team-grid h3 { margin: 0 0 0.25rem; font-size: 1.05rem; color: var(--ink); }
.team-grid p { margin: 0; font-size: 0.9rem; color: color-mix(in srgb, var(--lime-ink) 75%, transparent); }
.team-wall { margin: 0; overflow: visible; border-radius: clamp(0.75rem, 2vw, 1.15rem); line-height: 0; transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease); }
.team-wall img { width: 100%; height: auto; display: block; object-fit: contain; transition: transform 0.6s var(--ease); }

@media (pointer: fine) {
  .team-wall:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-3px);
  }

  .team-wall:hover img {
    transform: scale(1.01);
  }
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }


/* Contact */
.contact {
  padding: var(--section-y) 0 0;
  background: var(--violet-deep);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--lime);
}

.contact .lede {
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.contact-details {
  list-style: none;
  margin: clamp(1.5rem, 4vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.contact-details li {
  display: grid;
  gap: 0.25rem;
}

.contact-details span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lime);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.contact-details a {
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  word-break: break-word;
}

.contact-details a:hover,
.social-link:hover {
  color: var(--lime);
}

.contact-details address {
  font-style: normal;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border: 1px solid color-mix(in srgb, var(--lime) 35%, transparent);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.social-link:hover {
  border-color: var(--lime);
  background: color-mix(in srgb, var(--lime) 12%, transparent);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1rem);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  background: color-mix(in srgb, var(--white) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--lime) 28%, transparent);
  border-radius: clamp(1rem, 2vw, 1.4rem);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--white) 12%, transparent),
    0 20px 48px color-mix(in srgb, var(--violet-deep) 35%, transparent);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.contact-form:focus-within {
  border-color: color-mix(in srgb, var(--lime) 45%, transparent);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--white) 12%, transparent),
    0 20px 48px color-mix(in srgb, var(--violet-deep) 35%, transparent),
    var(--glow-lime);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--white) 18%, transparent);
  background: color-mix(in srgb, var(--violet) 35%, transparent);
  color: var(--white);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  min-height: var(--touch);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--white) 45%, transparent);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime) 25%, transparent);
}

.form-note {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--white) 55%, transparent);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.is-success {
  color: var(--lime);
}

.form-status.is-error {
  color: #ffb4b4;
}

.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.map-band {
  height: clamp(14rem, 42vh, 22rem);
  border-top: 1px solid color-mix(in srgb, var(--lime) 25%, transparent);
}

.map-band iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05) saturate(0.85);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--white) 75%, transparent);
  padding: clamp(2rem, 5vw, 2.5rem) 0 calc(2rem + var(--safe-bottom));
}

.footer-inner {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.footer-brand-block {
  display: grid;
  gap: 0.35rem;
}

.footer-brand-block .brand {
  align-self: start;
}

.footer-legal {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-location {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--white) 55%, transparent);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 3vw, 1.5rem);
}

.footer-nav a {
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-tag {
  margin: 0;
  color: var(--lime);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

.footer-meta {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.footer-socials {
  margin-top: 0;
}

.footer-socials .social-link {
  color: color-mix(in srgb, var(--white) 85%, transparent);
  border-color: color-mix(in srgb, var(--white) 22%, transparent);
}

.footer-socials .social-link:hover {
  color: var(--lime);
  border-color: var(--lime);
  background: color-mix(in srgb, var(--lime) 10%, transparent);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.2fr auto auto;
    align-items: center;
    gap: 2rem;
  }

  .footer-meta {
    grid-column: auto;
    justify-self: end;
    text-align: right;
    justify-items: end;
  }
}

/* Soften parallax transforms on touch — keep stream cover transform intact */
@media (max-width: 899px), (pointer: coarse) {
  .hero {
    perspective: none;
  }

  .hero-media,
  .hero-copy,
  .hero-depth {
    transform: none !important;
    transform-style: flat;
  }

  .hero-stream {
    transform: translate(-50%, -50%) scale(1.08) !important;
  }

  .service-panel {
    transform: none !important;
  }

  .noise {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .noise {
    display: none;
  }

  .reveal,
  .hero-brand,
  .hero-copy h1,
  .hero-sub,
  .hero-actions,
  .depth-ring,
  .scroll-cue span,
  .marquee-track,
  .work-item,
  .split-media img,
  .btn-lime::before,
  .intro,
  .eq-bars span,
  .reveal.is-in .work-list li,
  .reveal.is-in .team-grid li,
  .truth-inner.reveal.is-in .truth-copy p {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee-track {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0.25rem var(--gutter);
    text-align: center;
    gap: 0.75rem;
  }

  .btn:hover {
    transform: none;
  }
}
