/* index.html — page-specific styles */
body { overflow-x: clip; }


/* perspective intentionally not on body — it would trap position:fixed inside body's containing block. Local 3D scenes (.book3d) declare their own perspective. */

/* ============ AMBIENT MESH BACKDROP ============ */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.85;
  will-change: transform;
  mix-blend-mode: multiply;
}
.mesh-blob.b1 {
  top: -14%; left: -12%;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 40% 40%, #7ccaf0 0%, rgba(124,202,240,0) 65%);
  animation: meshDrift1 26s ease-in-out infinite alternate;
}
.mesh-blob.b2 {
  top: -18%; right: -14%;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 50%, #f0b9a3 0%, rgba(240,185,163,0) 65%);
  animation: meshDrift2 22s ease-in-out infinite alternate;
}
.mesh-blob.b3 {
  top: 32%; left: -18%;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 60% 40%, #b7e1f5 0%, rgba(183,225,245,0) 65%);
  animation: meshDrift3 30s ease-in-out infinite alternate;
  opacity: 0.8;
}
.mesh-blob.b4 {
  top: 48%; right: -16%;
  width: 680px; height: 680px;
  background: radial-gradient(circle at 40% 60%, #7ccaf0 0%, rgba(124,202,240,0) 65%);
  animation: meshDrift4 32s ease-in-out infinite alternate;
  opacity: 0.7;
}
.mesh-blob.b5 {
  bottom: -16%; left: 14%;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 40%, #f7cdbd 0%, rgba(247,205,189,0) 65%);
  animation: meshDrift5 28s ease-in-out infinite alternate;
  opacity: 0.75;
}
.mesh-blob.b6 {
  bottom: -20%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 50% 50%, #f0b9a3 0%, rgba(240,185,163,0) 65%);
  animation: meshDrift6 24s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes meshDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(-30px, 80px) scale(0.96); }
}
@keyframes meshDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-50px, 60px) scale(1.05); }
  100% { transform: translate(30px, 30px) scale(0.98); }
}
@keyframes meshDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -40px) scale(1.1); }
}
@keyframes meshDrift4 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-40px, -60px) scale(1.04); }
  100% { transform: translate(20px, 40px) scale(1); }
}
@keyframes meshDrift5 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, -50px) scale(1.08); }
}
@keyframes meshDrift6 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.05); }
  100% { transform: translate(-40px, -60px) scale(0.96); }
}
@media (prefers-reduced-motion: reduce) {
  .mesh-blob { animation: none; }
}
/* keep content crisp above the blobs */
main, footer, nav { position: relative; z-index: 1; }


.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .container { padding: 0 48px; } }

.section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 80px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
}

.h-xl { font-size: clamp(54px, 9.5vw, 168px); }
.h-lg { font-size: clamp(40px, 6vw, 96px); }
.h-md { font-size: clamp(32px, 4.6vw, 64px); }
.h-sm { font-size: clamp(22px, 2.2vw, 32px); }

.italic { font-style: italic; font-weight: 500; }
.hide-lg { display: initial; }
@media (min-width: 900px) { .hide-lg { display: none; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,250,241,0.75);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
@media (min-width: 900px) { .nav { padding: 14px 48px; } }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  display: block;
  height: 44px;
  width: auto;
  transition: transform .3s var(--ease-spring);
  user-select: none;
  -webkit-user-drag: none;
}
.logo:hover .logo-img { transform: rotate(-4deg) scale(1.04); }

.nav-links {
  display: none; gap: 2px; align-items: center;
  font-weight: 700; font-size: 13px;
}
@media (min-width: 1100px) { .nav-links { display: flex; } }
.nav-links a { padding: 8px 14px; border-radius: 999px; transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--pink-soft); color: #2e8dc4; }

/* Hamburger (visible <1100px) */
.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: transparent; border: 2px solid var(--line);
  transition: background .2s, border-color .2s;
}
.nav-burger:hover { background: var(--bg-2); border-color: var(--ink); }
.nav-burger-icon {
  position: relative; display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: background .2s;
}
.nav-burger-icon::before,
.nav-burger-icon::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease-spring), top .2s;
}
.nav-burger-icon::before { top: -6px; }
.nav-burger-icon::after  { top:  6px; }
.nav.menu-open .nav-burger-icon { background: transparent; }
.nav.menu-open .nav-burger-icon::before { top: 0; transform: rotate(45deg); }
.nav.menu-open .nav-burger-icon::after  { top: 0; transform: rotate(-45deg); }
@media (min-width: 1100px) { .nav-burger { display: none; } }

/* Mobile drawer */
.nav-mobile {
  position: fixed; top: 0; right: 0;
  width: min(86vw, 360px); height: 100vh; height: 100dvh;
  background: var(--bg);
  box-shadow: -20px 0 60px -20px rgba(26,20,16,0.25);
  padding: 96px 28px 32px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 55;
  transform: translateX(100%);
  transition: transform .35s var(--ease-spring);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  padding: 14px 16px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  letter-spacing: -0.02em; color: var(--ink);
  transition: background .2s;
}
.nav-mobile a:hover, .nav-mobile a:focus-visible { background: var(--bg-2); }
.nav-mobile-cta {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px; align-items: center;
}
.nav-overlay {
  position: fixed; inset: 0; z-index: 54;
  background: rgba(26,20,16,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
@media (min-width: 1100px) {
  .nav-mobile, .nav-overlay { display: none; }
}
body.nav-locked { overflow: hidden; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang {
  display: flex; gap: 2px; align-items: center;
  padding: 4px; border-radius: 999px;
  background: #fff; border: 2px solid var(--line);
  font-weight: 800; font-size: 11px; letter-spacing: .1em;
}
.lang button {
  padding: 6px 10px; border-radius: 999px; color: var(--muted);
  transition: background .2s, color .2s;
}
.lang button.on { background: var(--ink); color: #fff; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-weight: 800; font-size: 13px;
  letter-spacing: .02em;
  box-shadow: 0 4px 0 #000, 0 10px 24px -10px rgba(0,0,0,0.5);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #000, 0 14px 28px -10px rgba(0,0,0,0.5); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #000; }

.btn-primary.pink { background: var(--pink); box-shadow: 0 4px 0 #2e8dc4, 0 10px 24px -10px rgba(255,92,138,0.6); }
.btn-primary.pink:hover { box-shadow: 0 6px 0 #2e8dc4, 0 14px 28px -10px rgba(255,92,138,0.6); }
.btn-primary.pink:active { box-shadow: 0 2px 0 #2e8dc4; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  border: 2px solid var(--ink); color: var(--ink);
  font-weight: 800; font-size: 13px;
  transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ============ HERO MASCOT ============ */
.hero-mascot {
  display: inline-flex; align-items: flex-end; gap: 12px;
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.92);
  transition: opacity .6s var(--ease-out), transform .8s var(--ease-spring);
  pointer-events: none;
}
.hero-mascot.motion-in {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .hero-mascot { display: none; }
}

.hero-mascot-bubble {
  pointer-events: auto;
  position: relative;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 6px 0 var(--brand-deep), 0 14px 28px -12px rgba(46,141,196,0.28);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  max-width: 220px;
  min-height: 44px;
  display: flex; align-items: center;
  margin-top: 16px;
  transform-origin: right center;
  transform: scale(0.2);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,1.4,.3,1), opacity .3s ease-out;
}
.hero-mascot.bubble-in .hero-mascot-bubble {
  transform: scale(1);
  opacity: 1;
}
.hero-mascot-bubble::after {
  content: "";
  position: absolute;
  left: -14px; top: 50%;
  width: 16px; height: 16px;
  background: #fff;
  border-left: 2px solid var(--brand);
  border-top: 2px solid var(--brand);
  transform: translateY(-50%) rotate(-45deg);
  border-radius: 6px 0 0 0;
  box-shadow: -2px -2px 0 rgba(46,141,196,0.08);
}
.hero-mascot-bubble-text {
  min-height: 1.4em;
  display: inline-block;
}
.hero-mascot-bubble-caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--ink);
  margin-left: 3px;
  animation: mascotBlink 0.8s steps(1) infinite;
  vertical-align: middle;
  opacity: 0;
}
.hero-mascot.typing .hero-mascot-bubble-caret { opacity: 1; }
@keyframes mascotBlink {
  50% { opacity: 0; }
}

.hero-mascot-char {
  pointer-events: auto;
  position: relative;
  width: 200px; height: 200px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  filter: drop-shadow(0 18px 24px rgba(26,20,16,0.28));
  animation: mascotBob 3.4s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
  transition: transform .25s var(--ease-spring);
}
.hero-mascot-char img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity .2s ease;
}
.hero-mascot-char img.fading { opacity: 0; }
.hero-mascot.talking .hero-mascot-char {
  animation: mascotBob 3.4s ease-in-out infinite alternate, mascotTalkWobble 0.28s ease-in-out infinite alternate;
}
@keyframes mascotTalkWobble {
  from { transform: translateY(0) rotate(-1.5deg); }
  to   { transform: translateY(-2px) rotate(1.5deg); }
}
.hero-mascot-char:hover { transform: translateY(-6px) scale(1.04); }
.hero-mascot-char:active { transform: translateY(2px) scale(0.98); }
.hero-mascot.happy .hero-mascot-char { animation: mascotJump 0.5s var(--ease-spring); }

/* Contact shadow — grounds the mascot, syncs with bob, squashes on jump */
.hero-mascot-char { position: relative; z-index: 2; }
.mascot-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mascot-figure::after {
  content: "";
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(26,20,16,0.22) 0%, transparent 72%);
  filter: blur(6px);
  border-radius: 50%;
  pointer-events: none;
  animation: contactShadow 3.4s ease-in-out infinite alternate;
}
.hero-mascot-cloud {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  -webkit-user-drag: none;
  animation: cloudBob 3.4s ease-in-out infinite alternate;
}
@keyframes cloudBob {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-10px); }
}
/* Contact shadow between feet and cloud — gives 3D depth */
.hero-mascot-char::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 54%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(26,20,16,0.32) 0%, transparent 72%);
  filter: blur(4px);
  border-radius: 50%;
  pointer-events: none;
  animation: contactShadow 3.4s ease-in-out infinite alternate;
}
@keyframes contactShadow {
  from { opacity: 0.8; transform: translateX(-50%) scaleX(1); }
  to   { opacity: 0.3; transform: translateX(-50%) scaleX(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mascot-cloud { animation: none; }
  .hero-mascot-char::after { animation: none; }
}
@keyframes mascotBob {
  0% { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes mascotJump {
  0%   { transform: translateY(0) scale(1); }
  40%  { transform: translateY(-26px) scale(1.06, 0.94); }
  70%  { transform: translateY(4px) scale(0.96, 1.04); }
  100% { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mascot-char { animation: none; }
  .hero-mascot { transition: opacity .3s ease; transform: none; }
  .hero-mascot.motion-in { transform: none; }
}

/* ============ HERO SCENE (hero + expand, one combined experience) ============ */
.hero-scene {
  position: relative;
  height: 170vh;
}
@media (max-width: 720px) { .hero-scene { height: 200vh; } }
.hero-scene-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}
/* Hero background image */
.hero-scene-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/img/hero-bg.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.92;
  /* Gradient mask: left side fades to cream for text readability, right side shows image */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.85) 60%, black 75%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 30%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.85) 60%, black 75%);
  pointer-events: none;
}

/* Full-viewport image — clipped to a right-side card at start, expands to full */
.hs-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}
.hs-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
  will-change: transform;
}
/* Gradient that blends left edge of image into page background — disappears as image expands */
.hs-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    var(--bg) 0%,
    rgba(245,241,232,0.75) 5%,
    transparent 22%
  );
  opacity: var(--blend-op, 1);
  pointer-events: none;
}
/* Overlay: fades in when fully expanded — dark gradient + text */
.hs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,20,16,0.78) 0%,
    rgba(26,20,16,0.22) 42%,
    transparent 66%
  );
  opacity: 0;
  will-change: opacity;
  display: flex; align-items: flex-end;
  padding: clamp(28px, 4vw, 64px);
  pointer-events: none;
}
.hs-overlay.active { pointer-events: auto; }
.hs-overlay-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  width: 100%; gap: 24px; flex-wrap: wrap;
}

/* Left-side hero text — fades out on scroll */
.hs-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  will-change: opacity, transform;
}
.hs-content .container { width: 100%; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 8px rgba(255,252,248,0.7), 0 0 14px rgba(255,252,248,0.45);
  z-index: 3;
  opacity: 0;
  animation: hintFade 1s var(--ease-out) 2.4s forwards;
  pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.hero-scroll-hint-line {
  width: 1.5px; height: 26px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  animation: hintDrop 1.6s ease-in-out 2.4s infinite;
  opacity: .85;
  box-shadow: 0 0 6px rgba(255,252,248,0.7);
}
@keyframes hintFade { to { opacity: 0.85; } }
@keyframes hintDrop {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  60%       { transform: scaleY(0.4) translateY(8px); opacity: 0; }
}

/* Keep hero-mascot z above content */
.hero-scene-sticky .hero-mascot { z-index: 3; }

/* aura disabled — hero-bg.webp handles the visual depth now */
.hero-scene-sticky::before { display: none; }
@keyframes heroAura {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, -20px, 0) scale(1.08); }
}
.hero-line {
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 28px;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.hero-line span b { color: var(--ink); font-weight: 700; }

.hero-title {
  margin: 24px 0 56px;
  max-width: 56vw;
  padding-bottom: 0.12em;
}
.hero-title.h-xl {
  font-size: clamp(40px, 5vw, 88px);
  line-height: 1.04;
}
.hero-title .stroke {
  -webkit-text-stroke: 1.6px var(--ink);
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.hero-title .pink { color: var(--pink); }
.hero-title .yel  { color: var(--yellow); }

.hero-sub-row {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 0;
  max-width: 52vw;
}
@media (min-width: 900px) { .hero-sub-row { max-width: 46vw; } }

.hero-sub {
  font-size: clamp(16px, 1.25vw, 20px);
  color: var(--ink-2); font-weight: 600;
  max-width: 660px; line-height: 1.45;
}
.hero-sub b { font-weight: 900; color: var(--ink); }

.hero-actions {
  display: flex; align-items: center;
  width: 100%; gap: 12px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

body.motion-enabled [data-hero-step] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: none;
}
body.motion-enabled [data-hero-step].motion-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity .72s var(--ease-out),
    transform .92s var(--ease-spring);
}
body.motion-enabled .hero-title[data-hero-step] { transform: translate3d(0, 46px, 0) scale(.985); }
body.motion-enabled .hero-stats[data-hero-step] { transform: translate3d(0, 42px, 0); }
body.motion-enabled .hero-stats .hero-stat {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}
body.motion-enabled .hero-stats.motion-in .hero-stat {
  opacity: 1;
  transform: none;
  transition:
    opacity .55s var(--ease-out),
    transform .75s var(--ease-spring);
}
body.motion-enabled .hero-stats.motion-in .hero-stat:nth-child(1) { transition-delay: 110ms; }
body.motion-enabled .hero-stats.motion-in .hero-stat:nth-child(2) { transition-delay: 190ms; }
body.motion-enabled .hero-stats.motion-in .hero-stat:nth-child(3) { transition-delay: 270ms; }
body.motion-enabled .hero-stats.motion-in .hero-stat:nth-child(4) { transition-delay: 350ms; }

/* Reel viewer */
.reel-cast {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  pointer-events: none;
  transform: scale(1.04) translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform .35s var(--ease-out), filter .4s var(--ease-out);
  filter: saturate(1.03) contrast(1.02);
}
.reel-overlay::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(26,20,16,0.22) 100%);
  pointer-events: none; z-index: 0;
}
.reel-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; z-index: 2; }
.reel-tag, .reel-bottom { position: relative; z-index: 1; }
.reel-title { color: #fff; }
.reel-tag { color: #fff; }
.reel-meta { color: rgba(255,255,255,0.9); }
.reel {
  position: relative; overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 16 / 8.5;
  background: linear-gradient(180deg, #7cc8ec 0%, #c5e4f3 55%, #e9f3f9 100%);
  border: 2px solid var(--ink);
  margin-top: 34px;
  box-shadow: 0 28px 48px -34px rgba(46, 141, 196, 0.55), 0 28px 56px -40px rgba(26,20,16,0.45);
  transform-origin: 50% 60%;
  isolation: isolate;
}
.reel::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 54% 48% at 35% 35%, rgba(255,255,255,0.68) 0%, transparent 62%),
    radial-gradient(ellipse 48% 42% at 78% 72%, rgba(234,178,154,0.34) 0%, transparent 62%),
    linear-gradient(180deg, rgba(79,179,232,0.18) 0%, rgba(245,241,232,0.78) 100%);
  opacity: .86;
  transform: scale(1.04);
  animation: reelGlow 12s ease-in-out infinite alternate;
}
@keyframes reelGlow {
  from { transform: scale(1.02) translate3d(0, 0, 0); opacity: .72; }
  to { transform: scale(1.08) translate3d(0, -10px, 0); opacity: .9; }
}
.reel-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 40px;
}
.reel-scene svg { width: 16%; max-width: 160px; animation: reelBob 4s ease-in-out infinite; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3)); }
.reel-scene svg:nth-child(2) { animation-delay: -1s; }
.reel-scene svg:nth-child(3) { animation-delay: -2s; }
.reel-scene svg:nth-child(4) { animation-delay: -3s; }
@keyframes reelBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(3deg); }
}
.reel-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px 24px;
}
.reel-tag {
  align-self: flex-start;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.78); color: var(--ink);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 8px;
}
.reel-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #ff3d3d; box-shadow: 0 0 0 3px rgba(255,61,61,0.3);
  animation: pulse-red 1.6s ease-in-out infinite;
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,61,61,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255,61,61,0.1); }
}
.reel-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap;
}
.reel-title {
  color: #fff; font-family: var(--font-display); font-style: italic;
  font-weight: 900; font-size: clamp(22px, 2.6vw, 40px);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  line-height: 0.95; letter-spacing: -0.02em;
}
.reel-meta {
  display: flex; gap: 16px; color: rgba(255,255,255,0.75);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  flex-wrap: wrap;
}
.reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 0 var(--ink), 0 20px 40px rgba(0,0,0,0.4);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
  z-index: 3;
}
.reel-play:hover { transform: translate(-50%, calc(-50% - 5px)) scale(1.04); box-shadow: 0 12px 0 var(--ink), 0 26px 44px rgba(0,0,0,0.42); }
.reel-play::before {
  content: ""; width: 0; height: 0;
  border-left: 22px solid var(--ink);
  border-top: 14px solid transparent; border-bottom: 14px solid transparent;
  margin-left: 7px;
}

/* Hero stats strip */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 34px;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: 1fr 1fr; } }
.hero-stat {
  padding: 22px 18px;
  border-right: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 2px;
}
.hero-stat:last-child { border-right: 0; }
@media (max-width: 720px) {
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 2px solid var(--ink); }
}
.availbar {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.availbar .container {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.availbar-lbl {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.availbar-lbl::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 4px rgba(79,179,232,0.18);
}
.availbar-list {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; flex: 1;
}
.availbar-item {
  font-family: var(--font-body); font-weight: 800;
  font-size: 14px; letter-spacing: .04em;
  color: var(--ink); opacity: 0.55;
  padding: 4px 2px;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.availbar-item:hover { opacity: 1; color: var(--brand-deep); }
@media (max-width: 720px) {
  .availbar { padding: 18px 0; }
  .availbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .availbar-list {
    gap: 4px 16px;
    row-gap: 4px;
  }
  .availbar-item {
    font-size: 13px;
    padding: 2px 0;
    opacity: 0.7;
  }
}
.hero-stat b {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ============ MARQUEE (craft verbs) ============ */
.marquee {
  padding: 14px 0;
  background: var(--ink); color: #fff;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 28px; align-items: center;
  animation: slide 42s linear infinite;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 18px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.85;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 28px; }
.marquee-track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
  display: inline-block;
}
.marquee-track .dot.y { background: var(--yellow); }
.marquee-track .dot.s { background: var(--sky); }
.marquee-track .dot.m { background: var(--mint); }
.marquee-track .dot.p { background: var(--purple); }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTION HEADER ============ */
.sec-head {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-bottom: 48px; align-items: end;
}
@media (min-width: 900px) { .sec-head { grid-template-columns: 1.3fr 1fr; } }
/* Songs section overrides sec-head to top-align so mascot has room */
#songs .sec-head { align-items: start; }

/* Vertical drifting lyrics — decorative backdrop in songs section */
#songs {
  position: relative;
  overflow: hidden;
}
#songs::before,
#songs::after {
  content: "♪ Najlepší kamaráti ♪ V detskej izbe ♪ Pesnička pre Šiškáčov ♪ Dobré ráno svet ♪";
  position: absolute;
  top: -10%; bottom: -10%;
  width: auto; padding: 0 6px;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.045;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: lyricsDrift 36s linear infinite;
}
#songs::before { left: -1.5em; animation-direction: normal; }
#songs::after  { right: -1.5em; animation-direction: reverse; animation-duration: 44s; opacity: 0.035; }

#songs > .container { position: relative; z-index: 1; }

@keyframes lyricsDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(-40%); }
}
@media (max-width: 720px) {
  #songs::before, #songs::after { font-size: 24px; opacity: 0.03; }
}
@media (prefers-reduced-motion: reduce) {
  #songs::before, #songs::after { animation: none; }
}
.sec-head .sub { color: var(--muted); font-size: 16px; font-weight: 600; line-height: 1.55; max-width: 440px; }

.sec-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
  margin-bottom: 10px;
}

/* ============ FEATURED WORK ============ */
.work-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.work-card {
  position: relative; overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  min-height: 360px;
}
.work-card:hover { transform: translateY(-8px) rotate(0deg) !important; box-shadow: 0 30px 46px -36px rgba(26,20,16,0.46); }
.work-card .wk-visual {
  position: absolute; top: 56px; right: 14px; bottom: auto; left: auto; z-index: 0;
  width: 46%; max-height: 60%;
  display: flex; align-items: flex-start; justify-content: flex-end;
  opacity: 1;
  pointer-events: none;
}
.work-card.w-hero .wk-visual { width: 38%; max-height: 70%; top: 70px; right: 28px; }
.work-card .wk-visual svg,
.work-card .wk-visual img {
  width: 100%; max-width: 260px; max-height: 260px; height: auto;
  object-fit: contain;
  transform: translate3d(0, 18px, 0) scale(.92) rotate(-5deg);
  transition: transform 1.1s var(--ease-spring);
  filter: drop-shadow(0 18px 26px rgba(26,20,16,0.22));
}
.work-card.in .wk-visual svg,
.work-card.in .wk-visual img { transform: none; }
.work-card:hover .wk-visual svg,
.work-card:hover .wk-visual img { transform: translate3d(0, -10px, 0) scale(1.04) rotate(4deg); }
.work-card .wk-top, .work-card .wk-bottom { position: relative; z-index: 2; }
.work-card .wk-top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.work-card .wk-bottom { max-width: 82%; }
.work-card.w-hero .wk-bottom { max-width: 72%; }
.work-card .wk-tag {
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 2px solid var(--ink);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.work-card .wk-year {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--ink);
  background: rgba(255,255,255,0.7);
  padding: 6px 10px; border-radius: 999px;
  border: 2px solid var(--ink);
}
.work-card .wk-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(24px, 2.45vw, 38px); line-height: 0.96;
  letter-spacing: -0.02em;
}
.work-card .wk-sub {
  font-size: 13px; font-weight: 700; color: var(--ink-2);
  margin-top: 4px;
}
.work-card .wk-client {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); font-weight: 700;
  margin-top: 12px; opacity: .8;
}
.work-card.w-hero { grid-column: span 8; background: var(--pink-soft); min-height: 520px; }
.work-card.w-2    { grid-column: span 4; background: var(--yellow-soft); }
.work-card.w-3    { grid-column: span 4; background: var(--sky-soft); }
.work-card.w-4    { grid-column: span 4; background: var(--mint-soft); }
.work-card.w-5    { grid-column: span 4; background: var(--purple-soft); }
@media (max-width: 900px) {
  .work-card.w-hero, .work-card.w-2, .work-card.w-3, .work-card.w-4, .work-card.w-5 {
    grid-column: span 12;
  }
}
.wk-play {
  position: absolute; bottom: 16px; right: 16px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); display: grid; place-items: center;
  box-shadow: 0 4px 0 rgba(0,0,0,0.4);
  transition: transform .15s;
}
.work-card:hover .wk-play { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,0.4); }
.wk-play::before {
  content: ""; width: 0; height: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  margin-left: 3px;
}

/* ============ BOOK ============ */
.book-sec {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,199,124,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(79,179,232,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #f3ede0 100%);
}
.book-sec::before,
.book-sec::after {
  content: ""; position: absolute; pointer-events: none; opacity: .12;
  background-repeat: no-repeat;
}
.book-sec::before {
  top: 40px; left: -40px; width: 320px; height: 380px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240' fill='none'><path d='M100 8 L120 70 L165 80 L130 115 L142 175 L100 145 L58 175 L70 115 L35 80 L80 70 Z' fill='%237cc77c'/><rect x='95' y='145' width='10' height='80' fill='%23a37c4f'/></svg>");
  background-size: contain;
  transform: rotate(-8deg);
}
.book-sec::after {
  bottom: 60px; right: -60px; width: 280px; height: 340px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240' fill='none'><path d='M100 8 L120 70 L165 80 L130 115 L142 175 L100 145 L58 175 L70 115 L35 80 L80 70 Z' fill='%234fb3e8'/><rect x='95' y='145' width='10' height='80' fill='%23a37c4f'/></svg>");
  background-size: contain;
  transform: rotate(12deg);
}
@media (max-width: 720px) {
  .book-sec { padding: 80px 0; }
  .book-sec::before { width: 200px; height: 240px; top: 20px; left: -60px; }
  .book-sec::after { width: 180px; height: 220px; bottom: 30px; right: -50px; }
}

.book-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .book-wrap { grid-template-columns: 1fr; gap: 48px; }
}

.book-visual {
  display: grid; place-items: center;
  padding: 60px 40px;
  background: radial-gradient(circle at 50% 45%, var(--brand-soft) 0%, transparent 68%);
  border-radius: 32px;
  position: relative;
  overflow: visible;
}
.book-visual::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 34px;
  width: min(70%, 280px);
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(26,20,16,0.35), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
  animation: bookShadow 6s ease-in-out infinite alternate;
}
@keyframes bookShadow {
  from { opacity: 0.55; transform: translateX(-50%) scale(1); }
  to   { opacity: 0.35; transform: translateX(-50%) scale(0.86); }
}

/* === 3D BOOK === */
.book3d {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1 / 1;
  perspective: 1800px;
  perspective-origin: 50% 42%;
  z-index: 1;
}
.book3d-scene {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--book-rx, 6deg))
    rotateY(var(--book-ry, -22deg));
  transition: transform .7s cubic-bezier(.2,.9,.18,1.12);
  animation: book3dFloat 7s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes book3dFloat {
  from { translate: 0 -4px; }
  to   { translate: 0 8px; }
}
.book3d:hover .book3d-scene {
  transition-duration: .25s;
}
.book3d-body {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  --book-depth: 32px;
}
.book3d-cover,
.book3d-back,
.book3d-spine,
.book3d-pages,
.book3d-top,
.book3d-bottom {
  position: absolute;
  backface-visibility: hidden;
}
.book3d-cover {
  inset: 0;
  transform: translateZ(calc(var(--book-depth) / 2));
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  box-shadow:
    inset 4px 0 10px rgba(0,0,0,0.25),
    inset -1px 0 0 rgba(255,255,255,0.15),
    0 6px 0 rgba(0,0,0,0.12),
    0 26px 40px -20px rgba(26,20,16,0.45),
    0 44px 64px -30px rgba(46,141,196,0.35);
}
.book3d-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.book3d-gloss {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.28) 48%,
    rgba(255,255,255,0) 66%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  transform: translateX(calc(var(--mx, 0) * -60%));
  transition: transform .4s ease-out;
}
.book3d-back {
  inset: 0;
  transform: translateZ(calc(var(--book-depth) / -2));
  background: linear-gradient(135deg, #1a1410, #2e1a0f 60%, #1a1410);
  border-radius: 4px 10px 10px 4px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}
.book3d-spine {
  left: 0; top: 0; bottom: 0;
  width: var(--book-depth);
  transform: rotateY(-90deg) translateZ(0);
  transform-origin: left center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.25), transparent 30%, transparent 70%, rgba(0,0,0,0.2)),
    linear-gradient(180deg, #3d6fa0 0%, #285989 45%, #1e4874 100%);
  box-shadow: inset 0 0 18px rgba(0,0,0,0.35);
  border-radius: 3px 0 0 3px;
}
.book3d-spine::before {
  content: "ŠIŠKÁČI";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 12px;
  letter-spacing: .24em;
  color: rgba(255,255,255,0.88);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.book3d-pages {
  right: 0; top: 0; bottom: 0;
  width: var(--book-depth);
  transform: rotateY(90deg) translateZ(0);
  transform-origin: right center;
  background: repeating-linear-gradient(
    180deg,
    #faf3dc 0px, #faf3dc 1px,
    #e6d9b2 1px, #e6d9b2 2px
  );
  box-shadow: inset 2px 0 4px rgba(0,0,0,0.12), inset -2px 0 4px rgba(0,0,0,0.08);
  border-radius: 0 2px 2px 0;
}
.book3d-top {
  left: 0; right: 0; top: 0;
  height: var(--book-depth);
  transform: rotateX(90deg) translateZ(0);
  transform-origin: top center;
  background: repeating-linear-gradient(
    90deg,
    #faf3dc 0px, #faf3dc 1px,
    #d8c78a 1px, #d8c78a 2px
  );
  border-radius: 4px 4px 0 0;
}
.book3d-bottom {
  left: 0; right: 0; bottom: 0;
  height: var(--book-depth);
  transform: rotateX(-90deg) translateZ(0);
  transform-origin: bottom center;
  background: repeating-linear-gradient(
    90deg,
    #faf3dc 0px, #faf3dc 1px,
    #d8c78a 1px, #d8c78a 2px
  );
  border-radius: 0 0 4px 4px;
}

.book-sticker {
  position: absolute;
  top: -8px; right: -20px;
  background: var(--pink);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  width: 88px; height: 88px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 17px;
  transform: rotate(14deg) translateZ(60px);
  box-shadow: 0 6px 0 var(--ink);
  line-height: 1;
  text-align: center;
  z-index: 5;
  animation: stickerWobble 4s ease-in-out infinite alternate;
}
@keyframes stickerWobble {
  from { transform: rotate(12deg) translateZ(60px); }
  to   { transform: rotate(18deg) translateZ(60px) translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .book3d-scene, .book-visual::after, .book-sticker { animation: none; }
}
@supports (animation-timeline: view()) {
  .book-visual {
    animation: bookFloat linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
  @keyframes bookFloat {
    0%   { transform: translateY(40px) rotate(-2deg); }
    50%  { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(1deg); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .book-visual { animation: none !important; }
  .book3d-scene { transition: none; }
}

.book-copy .sec-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  font-weight: 700; color: var(--brand-deep); text-transform: uppercase;
  margin-bottom: 18px; display: inline-block;
}
.book-copy h2 { margin-bottom: 18px; }
.book-lede {
  color: var(--ink-2); font-size: 17px; line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 28px;
}
.book-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
}
@media (max-width: 540px) { .book-specs { grid-template-columns: 1fr 1fr; gap: 16px; } }
.book-specs li {
  display: flex; flex-direction: column; gap: 2px;
}
.book-specs b {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.01em;
  color: var(--ink);
}
.book-specs span {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

.book-tags {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand-deep);
  margin: 0 0 4px;
}
.book-buy {
  display: flex; flex-direction: column; gap: 12px;
}
.book-buy-lbl {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.book-buy-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.book-store {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  color: var(--ink);
  background: #fff;
  transition: background .15s, color .15s, transform .15s, box-shadow .15s;
}
.book-store:hover {
  background: var(--ink); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--brand-deep);
}

/* ============ SONGS ============ */
.songs-sec-right {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 32px;
}
@media (max-width: 900px) {
  .songs-sec-right { justify-content: flex-start; }
}
.songs-lede {
  color: var(--muted); font-size: 16px; font-weight: 600;
  line-height: 1.55; max-width: 560px;
  margin: 0 0 32px;
}
.songs-wrap { display: flex; flex-direction: column; gap: 28px; }
.songs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 780px) { .songs-grid { grid-template-columns: 1fr; } }

.song-featured {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.song-featured:hover { transform: translateY(-4px); box-shadow: 0 30px 44px -30px rgba(26,20,16,0.4); }

.song-featured-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg,#7cc8ec 0%,#4fb3e8 50%,#2e8dc4 100%);
  overflow: hidden;
}
.song-featured-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(255,255,255,0.28), transparent 55%);
  pointer-events: none;
}
.song-featured-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
}
.song-featured-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: #E62117;
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 10px 0 var(--ink), 0 14px 28px rgba(0,0,0,0.35);
  transition: transform .2s;
  z-index: 2;
}
.song-featured:hover .song-featured-play { transform: translate(-50%, -52%) scale(1.04); }
.song-featured-duration {
  position: absolute; right: 14px; bottom: 14px;
  padding: 4px 10px;
  background: rgba(26,20,16,0.78);
  color: #fff;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  border-radius: 6px;
  z-index: 2;
}
.song-featured-meta {
  padding: 28px 28px 26px;
  display: flex; flex-direction: column; gap: 14px; justify-content: flex-start;
  background: var(--brand-softer);
  border-top: 2px solid var(--ink);
}
.song-featured-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.yt-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #E62117;
  box-shadow: 0 0 0 4px rgba(230,33,23,0.18);
  flex-shrink: 0;
}
.song-featured-title {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink);
}
.song-featured-desc { color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 42ch; }
.song-featured-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui, var(--font-body)); font-weight: 800; font-size: 14px;
  color: var(--brand-deep);
  margin-top: 4px;
}
.song-featured-cta span[aria-hidden] { transition: transform .2s; }
.song-featured:hover .song-featured-cta span[aria-hidden] { transform: translateX(4px); }

.song-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .song-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .song-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.song-card {
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.song-card:hover { transform: translateY(-4px); box-shadow: 0 18px 26px -22px rgba(26,20,16,0.35); }
.song-card-thumb {
  position: relative; aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.song-card-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center 110%;
  filter: drop-shadow(0 8px 14px rgba(26,20,16,0.18));
}
.song-card-thumb::before {
  content: "▶"; position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(26,20,16,0.82); color: #fff;
  display: grid; place-items: center;
  font-size: 10px; padding-left: 2px;
  z-index: 2;
}
.song-card-body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.song-card-duration {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.song-card-title {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 18px; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.songs-cta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap;
  padding: 22px 28px;
  border: 2px dashed rgba(26,20,16,0.18);
  border-radius: 22px;
  margin-top: 4px;
}
.songs-cta-note {
  color: var(--ink-2); font-size: 14px; line-height: 1.5;
  max-width: 48ch; margin: 0;
}
.songs-cta .btn-primary { display: inline-flex; align-items: center; gap: 8px; }

/* ============ SERVICES ============ */
.services {
  background: var(--ink); color: #fff;
  padding: 120px 0;
  border-radius: 48px;
  margin: 0 24px;
  position: relative; overflow: hidden;
}
@media (min-width: 900px) { .services { margin: 0 48px; } }
.services h2, .services .sec-head .sub { color: #fff; }
.services .sec-head .sub { color: #c9c0b8; }
.services .eyebrow, .services .sec-num { color: #fff; }
.services .sec-num { color: rgba(255,255,255,0.6); }
.services .eyebrow::before { background: var(--yellow); }

.services-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle 400px at 10% 10%, rgba(255,92,138,0.2), transparent 60%),
    radial-gradient(circle 400px at 90% 90%, rgba(165,105,255,0.18), transparent 60%);
}

.svc-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  padding: 28px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  transition: border-color .2s, background .2s, transform .2s;
  display: flex; flex-direction: column; gap: 16px;
}
.svc:hover { border-color: var(--yellow); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.svc-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  font-weight: 700; color: var(--yellow);
}
.svc-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 26px; letter-spacing: -0.02em; color: #fff;
  line-height: 1;
}
.svc-desc { color: #c9c0b8; font-size: 14px; font-weight: 500; line-height: 1.55; }
.svc-list {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: #fff; font-weight: 600;
  margin-top: auto;
}
.svc-list li { display: flex; align-items: center; gap: 10px; }
.svc-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
}

.svc-cta {
  margin-top: 60px; position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 24px;
  gap: 20px; flex-wrap: wrap;
}
.svc-cta p {
  color: #fff; font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.15; max-width: 640px;
  letter-spacing: -0.02em;
}

/* ============ CLIENTS / BROADCASTERS ============ */
.clients-strip {
  padding: 60px 0;
  border-top: 2px dashed var(--line);
  border-bottom: 2px dashed var(--line);
}
.clients-lbl {
  text-align: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
  margin-bottom: 32px;
}
.clients-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  align-items: center;
}
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); row-gap: 20px; } }
@media (max-width: 540px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.client {
  display: grid; place-items: center;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  height: 80px;
  filter: grayscale(1); opacity: 0.6;
  transition: filter .3s, opacity .3s;
}
.client:hover { filter: grayscale(0); opacity: 1; }
.client:last-child { border-right: 0; }
.client-logo {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 22px; letter-spacing: -0.02em; color: var(--ink);
}
.client-logo.mono { font-family: var(--font-mono); font-style: normal; font-weight: 700; font-size: 14px; letter-spacing: .08em; }
.client-logo.sans { font-family: var(--font-body); font-style: normal; font-weight: 900; font-size: 18px; letter-spacing: -0.01em; }

/* ============ CRAFT / BEHIND THE SCENES ============ */
.craft {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 900px) { .craft { grid-template-columns: 1fr; } }
.craft-card {
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.craft-card:hover { transform: translateY(-6px) rotate(0deg) !important; box-shadow: 0 24px 38px -34px rgba(26,20,16,0.35); }
.craft-card.c-1 { background: var(--bg); }
.merch-footer-cta { margin-top: 64px; display: flex; justify-content: center; }
@media (max-width: 720px) { .merch-footer-cta { margin-top: 40px; } }
.craft-card.c-2 { background: var(--sky-soft); grid-row: span 2; }
.craft-card.c-3 { background: var(--yellow-soft); }
.craft-card.c-4 { background: var(--mint-soft); grid-column: span 2; }
@media (max-width: 900px) {
  .craft-card.c-2 { grid-row: auto; }
  .craft-card.c-4 { grid-column: auto; }
}
.craft-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  font-weight: 700; text-transform: uppercase; color: var(--ink);
}
.craft-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1;
  letter-spacing: -0.02em;
}
.craft-desc { color: var(--ink-2); font-size: 14px; font-weight: 600; line-height: 1.55; }
.craft-art {
  flex: 1; display: grid; place-items: center;
  min-height: 120px;
  padding: 10px;
}
.craft-art svg {
  width: 100%; max-width: 360px; height: auto;
  transform: translate3d(0, 26px, 0) scale(.96);
  transition: transform 1s var(--ease-spring);
}
.craft-card.in .craft-art svg { transform: none; }

/* Pipeline step visuals */
.pipe {
  display: flex; gap: 6px; align-items: center;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); flex-wrap: wrap;
}
.pipe-step {
  padding: 6px 10px; border-radius: 999px;
  background: #fff; border: 2px solid var(--ink);
  opacity: .35;
  transform: translate3d(0, 8px, 0) scale(.96);
  transition:
    opacity .42s var(--ease-out),
    transform .58s var(--ease-spring),
    background .3s var(--ease-out);
}
.craft-card.in .pipe-step {
  opacity: 1;
  transform: none;
  background: rgba(255,255,255,0.95);
}
.pipe-step.is-lit { background: #fff; box-shadow: 0 6px 0 rgba(26,20,16,0.12); }

.merch-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.merch-card,
.merch-card.c-1,
.merch-card.c-2,
.merch-card.c-3,
.merch-card.c-4 {
  min-height: 420px;
  grid-row: auto;
  grid-column: auto;
  justify-content: space-between;
  background: var(--brand-soft);
  container-type: inline-size;
  container-name: merch-card;
}
@container merch-card (max-width: 280px) {
  .merch-card .craft-title { font-size: 22px; }
  .merch-card .craft-desc { font-size: 13px; }
  .merch-visual { height: 180px; }
}
.merch-card.c-1 { background: var(--bg); }
.merch-card.c-2 { background: var(--brand-soft); }
.merch-card.c-3 { background: var(--accent-soft); }
.merch-visual {
  position: relative;
  height: 220px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 70%, rgba(255,255,255,.95), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #fff 0%, var(--brand-softer) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.merch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.merch-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.merch-card .craft-title {
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.02;
}
@media (max-width: 900px) and (min-width: 721px) {
  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }
  .merch-card,
  .merch-card.c-1,
  .merch-card.c-2,
  .merch-card.c-3 {
    min-height: 0;
  }
}
@media (max-width: 720px) {
  .merch-sec .container { position: relative; }
  .merch-grid.craft {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    padding: 8px 24px 16px;
    margin: 0 -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .merch-grid.craft::-webkit-scrollbar { display: none; }
  .merch-card,
  .merch-card.c-1,
  .merch-card.c-2,
  .merch-card.c-3 {
    flex: 0 0 78%;
    max-width: 320px;
    min-height: 0;
    scroll-snap-align: center;
  }
  .merch-sec .container::after {
    content: ""; position: absolute;
    top: 0; right: 0; bottom: 80px;
    width: 32px;
    background: linear-gradient(to left, var(--bg), transparent);
    pointer-events: none;
    z-index: 2;
  }
}
.pipe-arr { opacity: .5; }

/* ============ TEAM ============ */
.team-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.member {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 18px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 14px;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 2px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.member:hover { transform: translateY(-8px) !important; box-shadow: 0 24px 34px -30px rgba(26,20,16,0.38); }
.member.m1 { background: var(--pink-soft); }
.member.m2 { background: var(--yellow-soft); }
.member.m3 { background: var(--sky-soft); }
.member.m4 { background: var(--mint-soft); }
.member.m5 { background: var(--purple-soft); }
.member.m6 { background: #f5dcd0; }
.member-avatar {
  position: absolute; top: 12%; left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
.member-avatar svg { width: 100%; height: auto; }
.member-name {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 18px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.member-role {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); opacity: .7; font-weight: 600;
}

/* ============ IP SHOWCASE (Jojo Donut deep-dive) ============ */
.ip-showcase {
  position: relative; overflow: hidden;
  border-radius: 32px;
  margin: 0 24px 110px;
  max-width: calc(1320px + 48px);
  margin-left: auto; margin-right: auto;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--yellow-soft) 100%);
  padding: 110px 0;
  border: 3px solid var(--ink);
  width: calc(100% - 48px);
}
@media (min-width: 900px) { .ip-showcase { width: calc(100% - 96px); } }
@media (max-width: 720px) { .ip-showcase { margin-bottom: 80px; } }
.ip-showcase::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle 300px at 90% 10%, rgba(255,204,63,0.4), transparent 60%),
    radial-gradient(circle 300px at 10% 90%, rgba(92,198,255,0.3), transparent 60%);
  pointer-events: none;
}
.ip-showcase .container { position: relative; z-index: 1; }

.ip-head {
  display: grid; grid-template-columns: 1fr; gap: 20px; align-items: end;
  margin-bottom: 48px;
}
@media (min-width: 900px) { .ip-head { grid-template-columns: 1.4fr 1fr; } }
.ip-wordmark {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: clamp(48px, 8vw, 128px);
  letter-spacing: -0.04em; line-height: 0.85;
  color: var(--ink);
}
.ip-wordmark .stroke { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.ip-wordmark .pk { color: var(--pink); }
.ip-sub {
  font-size: 16px; font-weight: 600; color: var(--ink-2);
  line-height: 1.55; max-width: 440px;
}

.ip-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 32px 0 48px;
}
@media (max-width: 720px) { .ip-facts { grid-template-columns: 1fr 1fr; } }
.fact {
  padding: 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
}
.fact b {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-style: italic; font-size: clamp(24px, 3vw, 36px); line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.fact span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* Cast horizontal */
.ip-cast {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  align-items: end;
}
@media (max-width: 1100px) { .ip-cast { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) {
  .ip-cast {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    padding: 16px 24px 20px;
    margin: 0 -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }
  .ip-cast::-webkit-scrollbar { display: none; }
  .ip-cast-card {
    flex: 0 0 76%;
    max-width: 300px;
    scroll-snap-align: center;
    aspect-ratio: 1 / 1;
    border: 1.5px solid rgba(26,20,16,0.1);
    border-radius: 22px;
    padding: 14px 16px 16px;
    box-shadow: 0 8px 24px -16px rgba(26,20,16,0.25);
  }
  /* Bigger character, fills the card, slight overflow up for personality */
  .ip-cast-card .ip-cast-char {
    width: 100%; height: 88%;
    top: -8%; left: 50%;
    transform: translateX(-50%) scale(1) translateY(0);
    object-position: center bottom;
    filter: drop-shadow(0 14px 18px rgba(26,20,16,0.18));
  }
  .ip-cast-card.in .ip-cast-char {
    transform: translateX(-50%) scale(1) translateY(0);
  }
  .ip-cast-name { font-size: 22px; }
  .ip-cast-role {
    font-size: 9px;
    letter-spacing: .12em;
    line-height: 1.5;
    /* Cap to 2 lines so card height stays consistent */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* Disable chaos tilt on mobile carousel — needs flat baseline for swipe */
  .ip-cast-card.c1, .ip-cast-card.c2, .ip-cast-card.c3,
  .ip-cast-card.c4, .ip-cast-card.c5 {
    --tilt-y: 0; --tilt-r: 0;
  }
  /* Fade indicator at right edge — hint there's more to swipe */
  .ip-showcase { position: relative; }
  .ip-showcase::after {
    content: ""; position: absolute;
    top: 0; right: 0; bottom: 80px;
    width: 28px;
    background: linear-gradient(to left, var(--bg), transparent);
    pointer-events: none;
    z-index: 2;
  }
}
.ip-cast-card {
  position: relative;
  border-radius: 20px;
  padding: 16px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .35s var(--ease-spring), box-shadow .3s var(--ease-out);
  transform: translateY(var(--tilt-y, 0)) rotate(var(--tilt-r, 0));
  container-type: inline-size;
}
@container (max-width: 200px) {
  .ip-cast-name { font-size: 18px; }
  .ip-cast-role { font-size: 9px; letter-spacing: .1em; }
}
.ip-cast-card:hover {
  transform: translateY(calc(var(--tilt-y, 0) - 10px)) rotate(var(--tilt-r, 0)) scale(1.02);
  box-shadow: 0 30px 38px -34px rgba(26,20,16,0.45);
  z-index: 5;
}
/* Donut chaos — uneven heights, slight rotations, per-card character */
.ip-cast-card.c1 { --tilt-y: -22px; --tilt-r: -3deg; }
.ip-cast-card.c2 { --tilt-y: 14px;  --tilt-r:  2deg; }
.ip-cast-card.c3 { --tilt-y: -10px; --tilt-r: -1deg; }
.ip-cast-card.c4 { --tilt-y: 22px;  --tilt-r:  3deg; }
.ip-cast-card.c5 { --tilt-y: -16px; --tilt-r: -2deg; }
@media (max-width: 900px) {
  .ip-cast-card.c1, .ip-cast-card.c2, .ip-cast-card.c3, .ip-cast-card.c4, .ip-cast-card.c5 {
    --tilt-y: 0; --tilt-r: 0;
  }
}
/* Character card colors — warm palette, ready for transparent PNGs */
.ip-cast-card.c1 { background: #d6edf9; }  /* Niko — sky blue */
.ip-cast-card.c2 { background: #fef0c7; }  /* Zara — warm yellow */
.ip-cast-card.c3 { background: #d1f0dc; }  /* Maylo — soft mint */
.ip-cast-card.c4 { background: #dce8f5; }  /* Sami — periwinkle */
.ip-cast-card.c5 { background: #fde8e4; }  /* Layla — coral blush */
.ip-cast-char {
  position: absolute; top: 0%; left: 50%; transform: translateX(-50%) translateY(28px) scale(.9);
  width: 90%; height: 78%; object-fit: contain; object-position: center bottom; z-index: 1;
  filter: drop-shadow(0 20px 20px rgba(26,20,16,0.18));
  transition: transform .95s var(--ease-spring);
}
.ip-cast-card.in .ip-cast-char { transform: translateX(-50%) translateY(0) scale(1); }
.ip-cast-card:hover .ip-cast-char { transform: translateX(-50%) translateY(-10px) scale(1.05); }
.ip-cast-name {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 22px; letter-spacing: -0.02em; color: var(--ink);
  line-height: 1;
}
.ip-cast-role {
  position: relative; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); font-weight: 600;
  opacity: .7; margin-top: 4px;
}

.ip-watch {
  margin-top: 48px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.ip-watch-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.platform {
  padding: 10px 16px; border-radius: 999px;
  background: #fff; border: 2px solid var(--ink);
  font-weight: 800; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s, box-shadow .15s;
}
.platform:hover { transform: translateY(-2px); box-shadow: 0 4px 0 var(--ink); }
.platform .ic { width: 16px; height: 16px; }

/* ============ PRESS / AWARDS ============ */
.press-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
}
@media (max-width: 900px) { .press-row { grid-template-columns: 1fr; } }

.laurels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 540px) { .laurels { grid-template-columns: 1fr 1fr; } }
.laurel {
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform .2s;
}
.laurel:hover { transform: translateY(-3px); }
.laurel svg { width: 56px; height: 56px; }
.laurel-fest {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 16px; line-height: 1; letter-spacing: -0.01em;
}
.laurel-prize {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.laurel-year {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--pink);
}

.press-quotes { display: flex; flex-direction: column; gap: 14px; }
.quote {
  border-left: 3px solid var(--pink);
  padding: 4px 0 4px 18px;
}
.quote p {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 18px; line-height: 1.35; color: var(--ink);
  margin-bottom: 8px;
}
.quote cite {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; font-style: normal; color: var(--muted);
  font-weight: 600;
}

/* ============ CONTACT — split ============ */
.contact {
  padding: 110px 0;
  background: var(--ink); color: #fff;
}
.contact h2 { color: #fff; }
.contact .h-lg.light { color: #fff; }

.contact-card-single {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 32px;
  background: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .contact-card-single { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}
.contact-card-single::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 0%, rgba(79,179,232,0.2), transparent 55%),
              radial-gradient(circle at 0% 100%, rgba(234,178,154,0.18), transparent 55%);
  pointer-events: none; z-index: 0;
}
.contact-card-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; }
.contact-card-copy .sec-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  font-weight: 700; color: var(--brand); text-transform: uppercase;
}
.contact-card-copy .h-lg {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
}
.contact-card-copy > p {
  color: #c9c0b8; font-size: 16px; line-height: 1.6;
  max-width: 52ch;
}
.contact-card-actions { margin-top: 4px; }
.contact-card-actions .btn-primary {
  gap: 12px;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 15px; letter-spacing: .02em;
  text-transform: none;
}
.contact-card-actions .btn-primary span[aria-hidden] { transition: transform .2s; }
.contact-card-actions .btn-primary:hover span[aria-hidden] { transform: translateX(4px); }
.contact-card-note {
  color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.5;
  max-width: 52ch;
}
.contact-card-art {
  position: relative; z-index: 1;
  display: grid; place-items: center;
}
.contact-card-art img {
  width: min(100%, 360px);
  height: auto; display: block;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,0.45));
  animation: bookBob 8s ease-in-out infinite alternate;
}
@media (max-width: 900px) { .contact-card-art { order: -1; } }
.contact .sec-num { color: rgba(255,255,255,0.5); }
.contact .eyebrow { color: #fff; }
.contact .eyebrow::before { background: var(--pink); }

.contact-top {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end;
  margin-bottom: 60px;
}
@media (min-width: 900px) { .contact-top { grid-template-columns: 1.3fr 1fr; } }
.contact-top .sub { color: #c9c0b8; font-size: 16px; font-weight: 500; line-height: 1.55; max-width: 440px; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  transition: background .2s, border-color .2s, transform .2s;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card:hover { background: rgba(255,255,255,0.06); border-color: var(--yellow); transform: translateY(-3px); }
.contact-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.contact-tag.families { color: var(--pink); }
.contact-tag.partners { color: var(--yellow); }
.contact-tag.press { color: var(--sky); }
.contact-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
}
.contact-card h3 {
  color: #fff; font-size: 28px; font-style: italic; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1;
}
.contact-card p { color: #c9c0b8; font-size: 14px; font-weight: 500; line-height: 1.55; }
.contact-mail {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.2);
}
.contact-mail::after {
  content: "→"; margin-left: auto; transition: transform .2s;
}
.contact-card:hover .contact-mail::after { transform: translateX(4px); }

/* Newsletter strip */
.news {
  margin-top: 60px; padding: 32px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 24px;
  display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center;
}
@media (min-width: 800px) { .news { grid-template-columns: 1.2fr 1fr; } }
.news-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); color: #fff; line-height: 1.1;
  letter-spacing: -0.02em;
}
.news-title + p { color: #c9c0b8; font-size: 14px; margin-top: 6px; }
.news-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 6px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.2);
}
.news-form input {
  flex: 1;
  background: transparent; border: 0;
  padding: 10px 16px;
  color: #fff; font: inherit; font-size: 14px; font-weight: 600;
  outline: none;
}
.news-form input::placeholder { color: rgba(255,255,255,0.45); }
.news-form button {
  padding: 10px 18px; border-radius: 999px;
  background: var(--pink); color: #fff;
  font-weight: 800; font-size: 13px;
  transition: background .2s;
}
.news-form button:hover { background: #fff; color: var(--ink); }

.news-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============ PROOF ============ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  border: 2px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.proof-card:hover { transform: translateY(-8px) !important; box-shadow: 0 30px 42px -34px rgba(26,20,16,0.28); }
.proof-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.3s var(--ease-soft), filter .8s var(--ease-out);
}
.proof-card.in .proof-media img { transform: scale(1.02); }
.proof-card:hover .proof-media img { transform: scale(1.08); }
.proof-copy {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.proof-copy h3 {
  font-size: 28px;
}
.proof-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.proof-list li {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.proof-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 6px;
  background: var(--brand);
  flex-shrink: 0;
}

/* ============ PREVIEW MODAL ============ */
/* ============ VIDEO MODAL ============ */
.video-modal[hidden] { display: none; }
.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  overflow: hidden;
  transition: opacity .25s ease;
}
.video-modal.is-open { opacity: 1; }
.video-modal-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(8,6,4,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0; padding: 0; cursor: pointer;
  margin: 0;
}
.video-modal-dialog {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.55), 0 0 0 2px rgba(255,255,255,0.08);
  transform: scale(0.94);
  transition: transform .35s var(--ease-spring);
  flex-shrink: 0;
}
.video-modal.is-open .video-modal-dialog { transform: scale(1); }
.video-modal-stage {
  position: absolute;
  inset: 0;
  display: block;
}
.video-modal-stage iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-modal-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: min(96vw, 1100px);
  flex-shrink: 0;
}
.video-modal-close {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.28);
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s, border-color .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-modal-close:hover { background: rgba(255,255,255,0.26); border-color: rgba(255,255,255,0.5); transform: scale(1.08) rotate(90deg); }
@media (max-width: 720px) {
  .video-modal { padding: 12px; }
  .video-modal-dialog { border-radius: 14px; }
  .video-modal-wrap { gap: 8px; }
  .video-modal-close { width: 44px; height: 44px; }
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease-out);
}
.preview-modal[hidden] { display: none; }
.preview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .34s var(--ease-out);
}
.preview-modal.is-open .preview-backdrop { opacity: 1; }
.preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translate3d(0, 38px, 0) scale(.96);
  opacity: 0;
  transition:
    transform .52s var(--ease-spring),
    opacity .32s var(--ease-out);
}
@media (max-width: 900px) { .preview-dialog { grid-template-columns: 1fr; } }
.preview-modal.is-open .preview-dialog {
  transform: none;
  opacity: 1;
}
.preview-stage {
  background: var(--bg-2);
  min-height: 320px;
  overflow: hidden;
}
.preview-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform .85s var(--ease-soft), filter .5s var(--ease-out), opacity .24s var(--ease-out);
}
.preview-modal.is-open .preview-stage img { transform: scale(1.01); }
.preview-copy-wrap {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.preview-copy-wrap > * {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity .42s var(--ease-out),
    transform .52s var(--ease-spring);
}
.preview-modal.is-open .preview-copy-wrap > * {
  opacity: 1;
  transform: none;
}
.preview-modal.is-open .preview-copy-wrap > *:nth-child(1) { transition-delay: 80ms; }
.preview-modal.is-open .preview-copy-wrap > *:nth-child(2) { transition-delay: 130ms; }
.preview-modal.is-open .preview-copy-wrap > *:nth-child(3) { transition-delay: 180ms; }
.preview-modal.is-open .preview-copy-wrap > *:nth-child(4) { transition-delay: 230ms; }
.preview-copy-wrap p {
  color: var(--muted);
  font-size: 15px;
}
.preview-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.preview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 2px solid var(--ink);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

/* ============ FOOTER ============ */
/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  font-size: 13px; font-weight: 500;
  overflow: hidden;
}
.foot-wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(60px, 11vw, 160px);
  line-height: 0.9; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  padding: 0 24px;
  margin-bottom: -0.12em;
  text-align: center;
  pointer-events: none; user-select: none;
  white-space: nowrap; overflow: hidden;
}
.foot-main {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; padding: 48px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
@media (min-width: 900px) { .foot-main { padding-left: 48px; padding-right: 48px; } }
@media (min-width: 800px) { .foot-main { grid-template-columns: 1fr 1fr 1fr; gap: 60px; text-align: left; } }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; }
@media (max-width: 799px) { .foot-brand { align-items: center; } .foot-social { justify-content: center; } }

.foot-brand .logo-img { height: 44px; }
.foot-brand p {
  color: rgba(255,255,255,0.42); margin-top: 16px;
  max-width: 280px; font-size: 13px; line-height: 1.6;
}
.foot-social {
  display: flex; align-items: center; gap: 8px; margin-top: 20px;
}
.foot-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.foot-social a:hover {
  background: var(--brand); border-color: var(--brand); color: #fff;
  transform: translateY(-2px);
}
.foot-col h5 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.3);
  margin: 0 0 16px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: rgba(255,255,255,0.55); transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-col li { color: rgba(255,255,255,0.42); }

.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 28px 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.foot-bot a { color: rgba(255,255,255,0.28); transition: color .2s; }
.foot-bot a:hover { color: rgba(255,255,255,0.7); }
.foot-bot-links { display: flex; gap: 20px; }
@media (min-width: 900px) { .foot-bot { padding-left: 48px; padding-right: 48px; } }
.funders {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-top: 12px;
}
.funder {
  padding: 6px 10px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; color: rgba(255,255,255,0.7);
}

/* TWEAKS */
.tweaks {
  position: fixed; bottom: 20px; right: 20px; width: 280px;
  padding: 16px; z-index: 90;
  background: #fff; border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
}
.tweaks[hidden] { display: none; }
.tweaks h4 {
  margin: 0 0 12px; font-family: var(--font-display); font-weight: 900;
  font-style: italic; font-size: 18px; display: flex; justify-content: space-between; align-items: center;
}
.tweaks h4 button { font-size: 22px; }
.tw-row { display: grid; grid-template-columns: 70px 1fr 28px; gap: 8px; align-items: center; margin-bottom: 8px; font-size: 11px; }
.tw-row .lbl { font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-size: 10px; }
.tw-sw-grp { display: flex; gap: 6px; grid-column: 2 / span 2; }
.tw-sw { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--ink); cursor: pointer; }
.tw-sw.on { box-shadow: 0 0 0 3px var(--yellow); }
.tw-row input[type="range"] { accent-color: var(--pink); }
.tw-row .val { font-family: ui-monospace, monospace; font-size: 10px; text-align: right; }

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
  transition:
    opacity .58s var(--ease-out),
    transform .82s var(--ease-spring),
    filter .58s var(--ease-out);
  transition-delay: var(--stagger, 0ms);
  will-change: transform, opacity, filter;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
}
/* Failsafe: if JS doesn't run, content reveals via native view-timeline.
   Browsers without view() support fall back to JS observer (existing). */
@supports (animation-timeline: view()) {
  [data-reveal]:not(.in) {
    animation: revealView linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
  @keyframes revealView {
    from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(8px); }
    to   { opacity: 1; transform: none; filter: none; }
  }
}
.sec-head[data-reveal],
.clients-strip[data-reveal],
.news[data-reveal] {
  transform: translate3d(0, 24px, 0);
}
.work-card[data-reveal] {
  transform: translate3d(0, 60px, 0) rotate(var(--card-tilt, 0deg)) scale(.97);
}
.craft-card[data-reveal] {
  transform: translate3d(0, 42px, 0) rotate(var(--craft-tilt, 0deg));
}
.ip-cast-card[data-reveal] {
  transform: translate3d(0, 54px, 0) rotate(var(--cast-tilt, 0deg)) scale(.92);
}
.proof-card[data-reveal] {
  transform: translate3d(0, 32px, 0) scale(.985);
}
.contact-card[data-reveal] {
  transform: translate3d(var(--contact-shift, 0px), 30px, 0);
}
.member[data-reveal] {
  transform: translate3d(0, 34px, 0) scale(.96);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reel-cast,
  .preview-stage img,
  .proof-media img,
  .work-card .wk-visual svg,
  .craft-art svg,
  .ip-cast-char {
    transform: none !important;
  }
}

/* Stability pass after brand rewrite */
.hero-line {
  row-gap: 10px;
}
.hero-line > span {
  max-width: 32ch;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 34px;
  }
  .hero-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-title.h-xl {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1.06;
    margin-top: 20px;
    text-wrap: balance;
  }
  /* Let title flow on mobile — desktop hard breaks don't fit narrow viewport */
  .hero-title br { display: none; }
  .hero-sub-row {
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .nav {
    padding: 12px 22px;
  }
  .logo {
    gap: 8px;
  }
  .logo-img {
    height: 36px;
  }
  .nav-right {
    gap: 8px;
  }
  .nav-right > .btn-primary {
    padding: 10px 14px;
    font-size: 12px;
  }
  .lang button {
    padding: 5px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: none !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    white-space: normal;
  }
  .marquee-track > span {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
  }
  .marquee-track > span[aria-hidden="true"] {
    display: none;
  }
}

.clients-strip {
  padding: 46px 0;
}
.client {
  min-width: 0;
}
.client-logo {
  text-align: center;
  overflow-wrap: anywhere;
}

.work-card {
  isolation: isolate;
}
.work-card .wk-top {
  min-height: 38px;
}
.work-card .wk-tag,
.work-card .wk-year {
  white-space: normal;
  line-height: 1.15;
}
.work-card .wk-visual {
  z-index: 1;
}
.work-card .wk-visual::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 62%);
  z-index: -1;
}
.work-card .wk-top,
.work-card .wk-bottom,
.wk-play {
  z-index: 3;
}
.work-card .wk-title,
.work-card .wk-sub,
.work-card .wk-client {
  text-wrap: balance;
}
@media (max-width: 900px) {
  .work-card,
  .work-card.w-hero {
    min-height: 330px;
  }
  .work-card .wk-bottom,
  .work-card.w-hero .wk-bottom {
    max-width: 86%;
  }
}
@media (max-width: 540px) {
  .work-card {
    min-height: 310px;
    padding: 18px;
  }
  .work-card .wk-visual {
    width: 48%;
    opacity: .28;
  }
  .work-card .wk-title {
    font-size: clamp(25px, 10vw, 36px);
  }
}

.svc {
  min-width: 0;
}
.svc-title,
.svc-desc,
.svc-list {
  overflow-wrap: anywhere;
}

.ip-wordmark {
  text-wrap: balance;
}
.ip-cast-card {
  min-height: 260px;
}
/* Bottom fade — subtle, matches card color, not white */
.ip-cast-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.06) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: 0 0 18px 18px;
}
.ip-cast-char {
  height: 68%;
}
.ip-cast-name,
.ip-cast-role {
  z-index: 3;
}
@media (max-width: 900px) {
  .ip-showcase {
    margin: 0 16px;
    border-radius: 32px;
    padding: 72px 0;
  }
  .ip-wordmark {
    font-size: clamp(42px, 14vw, 82px);
    line-height: .9;
  }
}
@media (max-width: 540px) {
  .ip-cast {
    grid-template-columns: 1fr;
  }
  .ip-cast-card {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
  .ip-cast-char {
    height: 78%;
    left: 72%;
    top: 6%;
  }
}

.proof-copy h3,
.contact-card h3,
.member-name {
  text-wrap: balance;
}

/* i18n — hide opposite lang */
[data-lang]:not(.active) { display: none; }

/* ============ SCROLL REVEAL (hero image expand) ============ */
.reveal-section {
  position: relative;
  height: 260vh;
  background: var(--ink);
}
.reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
.reveal-bg-word {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(100px, 21vw, 300px);
  font-weight: 900; font-style: italic;
  color: rgba(255,255,255,0.045);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none; user-select: none;
  overflow: hidden;
}
.reveal-frame {
  position: absolute;
  inset: 0;
  clip-path: inset(18vh 14vw 18vh 14vw round 32px);
  will-change: clip-path;
}
.reveal-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.1);
  will-change: transform;
  display: block;
}
.reveal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,20,16,0.72) 0%,
    rgba(26,20,16,0.28) 44%,
    transparent 68%
  );
  opacity: 0;
  will-change: opacity;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 60px);
}
.reveal-overlay-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}
.reveal-chars {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.reveal-headline {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 0.95; letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  margin: 0;
}
.reveal-headline.reveal-headline--sm {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05; letter-spacing: -0.02em;
  max-width: 560px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  margin: 0 0 10px;
}
.reveal-desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.45;
  max-width: 480px;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  margin: 0;
}
.reveal-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  color: #fff;
  font-weight: 800; font-size: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.reveal-cta-link:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.55); }
@media (max-width: 720px) {
  .reveal-section { height: 220vh; }
  .reveal-frame { clip-path: inset(14vh 6vw 14vh 6vw round 24px); }
  .reveal-headline { font-size: clamp(28px, 8vw, 48px); }
}

/* ============ STICKY AUDIO PLAYER ============ */
.audio-player[hidden] { display: none; }
.audio-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(20,16,12,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform .4s var(--ease-spring);
}
.audio-player.visible { transform: translateY(0); }
.ap-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: 1320px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.ap-song-info { display: flex; align-items: center; gap: 12px; flex-shrink: 0; min-width: 0; }
.ap-avatar {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(79,179,232,0.15);
  border: 1px solid rgba(79,179,232,0.3);
  display: grid; place-items: center; flex-shrink: 0;
}
.ap-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ap-song-title { font-size: 13px; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ap-artist { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: .04em; }
.ap-controls { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; }
.ap-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  border: 0; cursor: pointer; display: grid; place-items: center; flex-shrink: 0;
  transition: transform .15s, background .15s;
}
.ap-play-btn:hover { transform: scale(1.08); background: var(--brand-deep); }
.ap-progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ap-progress-bar {
  position: relative; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.12); cursor: pointer;
}
.ap-progress-bar:hover { height: 6px; }
.ap-progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--brand); border-radius: 2px;
  width: 0%; pointer-events: none;
  transition: width .1s linear;
}
.ap-progress-thumb {
  position: absolute; top: 50%; right: -6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; transform: translateY(-50%);
  pointer-events: none; opacity: 0;
  transition: opacity .15s;
}
.ap-progress-bar:hover .ap-progress-thumb { opacity: 1; }
.ap-times { display: flex; justify-content: space-between; }
.ap-times span { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: .06em; }
.ap-close-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); cursor: pointer; display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s, color .2s;
}
.ap-close-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
@media (max-width: 600px) {
  .ap-song-info { display: none; }
  .ap-inner { gap: 12px; padding: 0 16px; }
}

/* eyelid clip-paths */
.eye-group { transition: clip-path .08s linear; }
.eye-group.blinking { clip-path: inset(45% 0 45% 0); }

/* ============ HERO SPRINKLES ============ */
.hero-sprinkles {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.sp {
  position: absolute;
  border-radius: 999px;
  will-change: transform;
}
/* dots */
.sp1  { width:9px;  height:9px;  top:10%; left:70%;  background:#4fb3e8; opacity:.5; animation:spF 4.2s ease-in-out infinite alternate; }
.sp2  { width:6px;  height:6px;  top:72%; left:64%;  background:#eab29a; opacity:.55; animation:spF 5.1s ease-in-out infinite alternate-reverse; animation-delay:.6s; }
.sp3  { width:7px;  height:7px;  top:8%;  right:9%;  background:#b7e1f5; opacity:.6; animation:spF 3.8s ease-in-out infinite alternate; animation-delay:.3s; }
.sp4  { width:5px;  height:5px;  top:82%; left:18%;  background:#4fb3e8; opacity:.4; animation:spF 4.8s ease-in-out infinite alternate-reverse; animation-delay:1s; }
/* sprinkle rects */
.sp5  { width:4px;  height:13px; top:18%; right:7%;  background:#eab29a; opacity:.5; transform:rotate(35deg);  animation:spFr 4.4s ease-in-out infinite alternate; animation-delay:.2s; }
.sp6  { width:4px;  height:11px; top:58%; right:20%; background:#4fb3e8; opacity:.45; transform:rotate(-20deg); animation:spFr 5.3s ease-in-out infinite alternate-reverse; animation-delay:.8s; }
.sp7  { width:4px;  height:14px; top:33%; left:62%;  background:#eab29a; opacity:.4; transform:rotate(55deg);  animation:spFr 3.9s ease-in-out infinite alternate; animation-delay:1.2s; }
.sp8  { width:4px;  height:10px; top:88%; left:52%;  background:#4fb3e8; opacity:.45; transform:rotate(-40deg); animation:spFr 4.6s ease-in-out infinite alternate-reverse; animation-delay:.5s; }

@keyframes spF  { from{transform:translateY(0);} to{transform:translateY(-12px);} }
@keyframes spFr { from{transform:translateY(0) rotate(var(--r,35deg));} to{transform:translateY(-10px) rotate(calc(var(--r,35deg) + 8deg));} }

/* Curved-path sprinkles using native CSS offset-path — no GSAP needed */
@supports (offset-path: path("M0,0")) {
  .hero-sprinkles .sp.curve-1,
  .hero-sprinkles .sp.curve-2,
  .hero-sprinkles .sp.curve-3 {
    position: absolute;
    width: 6px; height: 14px; border-radius: 999px;
    top: 0; left: 0;
    offset-rotate: auto;
    will-change: offset-distance, opacity;
  }
  .hero-sprinkles .sp.curve-1 {
    background: #4fb3e8; opacity: 0;
    offset-path: path("M 80 -20 Q 120 200, 60 420 T 100 800");
    animation: spCurve 14s cubic-bezier(.4,.05,.6,.95) infinite;
  }
  .hero-sprinkles .sp.curve-2 {
    background: #eab29a; opacity: 0;
    offset-path: path("M 720 -30 Q 660 240, 740 460 T 700 820");
    animation: spCurve 16s cubic-bezier(.4,.05,.6,.95) infinite;
    animation-delay: 4s;
  }
  .hero-sprinkles .sp.curve-3 {
    background: #2e8dc4; opacity: 0;
    offset-path: path("M 400 -25 Q 460 180, 380 380 T 420 760");
    animation: spCurve 18s cubic-bezier(.4,.05,.6,.95) infinite;
    animation-delay: 8s;
  }
  @keyframes spCurve {
    0%   { offset-distance: 0%;   opacity: 0; }
    8%   { opacity: .55; }
    92%  { opacity: .55; }
    100% { offset-distance: 100%; opacity: 0; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sprinkles .sp.curve-1,
  .hero-sprinkles .sp.curve-2,
  .hero-sprinkles .sp.curve-3 { animation: none; }
}

/* Scroll-driven falling sprinkles — only in browsers that support animation-timeline.
   Drift downward across the hero-scene as user scrolls. Pure CSS, no JS. */
@supports (animation-timeline: scroll()) {
  .hero-sprinkles::before,
  .hero-sprinkles::after {
    content: ""; position: absolute;
    width: 5px; height: 14px; border-radius: 999px;
    pointer-events: none;
    animation: spDrop linear both;
    animation-timeline: scroll(nearest);
  }
  .hero-sprinkles::before {
    background: #4fb3e8; opacity: .55;
    top: -10%; left: 22%;
    transform: rotate(18deg);
  }
  .hero-sprinkles::after {
    background: #eab29a; opacity: .55;
    top: -10%; right: 18%;
    transform: rotate(-22deg);
  }
  @keyframes spDrop {
    to { transform: translateY(110vh) rotate(calc(var(--r, 0deg) + 360deg)); }
  }
}

@media (prefers-reduced-motion: reduce) { .sp { animation: none; } }

/* ============ HERO NOW PLAYING ============ */
.hero-now-playing {
  position: absolute;
  right: clamp(32px, 5vw, 80px);
  bottom: 28%;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,252,248,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--line), 0 10px 28px -8px rgba(26,20,16,0.14);
  color: var(--ink); cursor: pointer;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  white-space: nowrap;
}
.hero-now-playing:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 6px 0 var(--line), 0 14px 32px -8px rgba(26,20,16,0.18); }
@media (max-width: 720px) {
  .hero-now-playing {
    right: 16px; left: 16px;
    bottom: 16px;
    top: auto;
    width: auto;
    padding: 8px 14px 8px 10px;
    justify-content: flex-start;
  }
  .hnp-play { width: 28px; height: 28px; }
}
.hnp-play {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); display: grid; place-items: center; flex-shrink: 0;
}
.hnp-play svg { margin-left: 2px; }
.hnp-text { display: flex; flex-direction: column; gap: 1px; }
.hnp-label { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hnp-title { font-family: var(--font-body); font-size: 13px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.hnp-wave {
  display: flex; align-items: center; gap: 2px; margin-left: 4px;
}
.hnp-wave span {
  display: block; width: 3px; border-radius: 2px; background: var(--brand);
  animation: waveBar .9s ease-in-out infinite alternate;
}
.hnp-wave span:nth-child(1) { height:6px;  animation-delay:0s; }
.hnp-wave span:nth-child(2) { height:14px; animation-delay:.12s; }
.hnp-wave span:nth-child(3) { height:10px; animation-delay:.06s; }
.hnp-wave span:nth-child(4) { height:16px; animation-delay:.18s; }
.hnp-wave span:nth-child(5) { height:8px;  animation-delay:.09s; }
@keyframes waveBar { from{transform:scaleY(.25);} to{transform:scaleY(1);} }
@media (prefers-reduced-motion: reduce) { .hnp-wave span { animation: none; } }

/* ============ O NÁS ============ */
.about-sec {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (min-width: 900px) { .about-inner { padding-left: 48px; padding-right: 48px; } }
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 80px; padding-bottom: 80px; } }

.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  border-radius: 32px;
  filter: drop-shadow(0 32px 48px rgba(26,20,16,0.18));
}
.about-location {
  position: absolute;
  bottom: -18px; right: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(26,20,16,0.3), 0 12px 28px -8px rgba(26,20,16,0.4);
}
.about-location::before {
  content: "📍"; font-size: 14px;
}

.about-copy { display: flex; flex-direction: column; gap: 28px; }
.about-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 10px;
}
.about-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.about-headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink);
}
.about-headline em { font-style: italic; color: var(--brand); }
.about-body {
  color: var(--muted); font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7; max-width: 480px;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.about-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2);
}
.about-pill b { color: var(--brand); font-style: italic; font-family: var(--font-display); font-size: 15px; }

/* ============================================================
   ===== MOBILE FIXES (≤480px) =====
   Consolidated tweaks for small phones (iPhone SE through Pro Max).
   ============================================================ */
@media (max-width: 480px) {
  /* Tighter section rhythm — reclaim vertical space */
  .section { padding: 60px 0; }

  /* Hero CTAs full-width stacked — no awkward wrap */
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost { justify-content: center; width: 100%; }

  /* About location badge — pull in from the right edge */
  .about-location { right: 12px; bottom: -14px; padding: 10px 16px; }

  /* Marquee — smaller text on phone */
  .marquee-track { font-size: 14px; }
  .marquee-track span { gap: 20px; }

  /* Book 3D — keep readable, don't stretch the cover */
  .book3d { max-width: 280px; margin-left: auto; margin-right: auto; }

  /* Character name — clamp to fit narrow cards */
  .ip-cast-name { font-size: clamp(18px, 5vw, 22px); word-break: break-word; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-sec { padding-top: 40px; padding-bottom: 80px; }
.tm-stage {
  position: relative;
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.tm-viewport {
  overflow: hidden;
  border-radius: 28px;
  outline: none;
}
.tm-viewport:focus-visible { box-shadow: 0 0 0 3px var(--brand); }
.tm-track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.tm-card {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 44px clamp(24px, 4vw, 64px) 40px;
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 360px;
}
.tm-card + .tm-card { margin-left: 0; }
.tm-quote-mark {
  position: absolute;
  top: 14px; left: 28px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  color: var(--pink);
  opacity: 0.18;
  pointer-events: none;
}
.tm-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  position: relative;
}
.tm-author {
  display: flex; align-items: flex-start; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(26,20,16,0.1);
  margin-top: auto;
}
.tm-author-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tm-avatar {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--av-bg, var(--brand));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 4px 14px -4px rgba(26,20,16,0.25);
}
.tm-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tm-role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.5;
}
.tm-nav {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .15s;
}
.tm-nav:hover { background: var(--ink); color: #fff; }
.tm-nav:active { transform: scale(.94); }
.tm-nav:disabled { opacity: .35; cursor: default; }
.tm-nav:disabled:hover { background: #fff; color: var(--ink); }
.tm-controls {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.tm-dots { display: flex; gap: 8px; flex-wrap: wrap; }
.tm-dot {
  width: 28px; height: 6px;
  border-radius: 999px;
  background: rgba(26,20,16,0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .25s;
}
.tm-dot.is-active { background: var(--pink); width: 44px; }
.tm-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-2);
}
.tm-counter span { color: var(--ink); }

@media (max-width: 720px) {
  .tm-stage { grid-template-columns: 1fr; }
  .tm-nav { display: none; }
  .tm-card { padding: 36px 22px 28px; min-height: 320px; }
  .tm-quote-mark { font-size: 80px; top: 8px; left: 16px; }
  .tm-controls { justify-content: center; flex-direction: column; gap: 10px; }
}

/* ============ HERO TITLE — CHARACTER CASCADE ============ */
.hero-title-split .hero-word {
  display: inline-block;
  white-space: nowrap;
}
.hero-title-split .hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em) scale(0.92);
  filter: blur(6px);
  animation: heroChar 0.7s cubic-bezier(.2,.9,.2,1.05) both;
  animation-delay: calc(var(--char-delay, 0ms) + 380ms);
  will-change: transform, opacity, filter;
}
@keyframes heroChar {
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title-split .hero-char { animation: none; opacity: 1; transform: none; filter: none; }
}

/* ============ HERO CHIP (above title) ============ */
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(26,20,16,0.08);
  border-radius: 999px;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .08em; color: var(--ink);
  align-self: flex-start;
}
.hero-chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(79,179,232,0.18);
  animation: chipPulse 2.2s ease-in-out infinite;
}
@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(79,179,232,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(79,179,232,0.05); }
}
@media (max-width: 540px) {
  .hero-chip { font-size: 10px; padding: 6px 12px 6px 10px; gap: 8px; margin-bottom: 14px; }
  .hero-chip-dot { width: 6px; height: 6px; }
}

/* ============ MOBILE CAROUSEL UI ============ */
.ip-cast-dots, .ip-cast-swipe-hint { display: none; }
@media (max-width: 720px) {
  .ip-cast-dots {
    display: flex;
    justify-content: center; gap: 8px;
    margin-top: 8px;
  }
  .ip-cast-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--ink); opacity: 0.18;
    transition: opacity .25s, transform .25s;
  }
  .ip-cast-dots span.is-active {
    opacity: 1; transform: scale(1.4);
  }
  .ip-cast-swipe-hint {
    display: block;
    margin-top: 14px; text-align: center;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--ink-2); opacity: 0.55;
    animation: swipeHint 2.4s ease-in-out infinite;
  }
  @keyframes swipeHint {
    0%, 100% { transform: translateX(-4px); opacity: .4; }
    50%      { transform: translateX(4px);  opacity: .7; }
  }
}

/* ============ HERO TRUST BADGE — inline, no pill ============ */
.hero-trust {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 22px;
  text-decoration: none;
  align-self: flex-start;
  transition: transform .2s;
}
.hero-trust:hover { transform: translateX(2px); }
.hero-trust:hover .hero-trust-arrow { transform: translateX(4px); }
.hero-trust-avs { display: inline-flex; align-items: center; }
.hero-trust-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--av-bg, var(--brand));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 9px;
  letter-spacing: .04em;
  border: 2px solid var(--bg);
  box-shadow: 0 2px 6px rgba(26,20,16,0.15);
}
.hero-trust-av + .hero-trust-av { margin-left: -9px; }
.hero-trust-av-more {
  background: var(--ink) !important;
  font-size: 8px;
}
.hero-trust-text {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 15px; color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: inline-flex; align-items: center; gap: 4px;
}
.hero-trust-text em { font-style: italic; color: var(--brand-deep); }
.hero-trust-arrow {
  display: inline-block; transition: transform .2s var(--ease-out);
  font-style: normal; font-weight: 700;
}
@media (max-width: 540px) {
  .hero-trust { gap: 10px; margin-top: 18px; }
  .hero-trust-av { width: 24px; height: 24px; font-size: 8px; }
  .hero-trust-av + .hero-trust-av { margin-left: -8px; }
  .hero-trust-text { font-size: 13px; }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center; gap: 12px;
  padding: 10px 12px 10px 16px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(26,20,16,0.3);
  transform: translateY(140%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .25s;
  opacity: 0;
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sticky-cta-title {
  font-weight: 800; font-size: 13px; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  letter-spacing: -0.01em;
}
.sticky-cta-meta {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-2);
}
.sticky-cta-meta b { color: var(--brand-deep); font-weight: 800; }
.sticky-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
  text-decoration: none;
  transition: background .2s;
}
.sticky-cta-btn:hover { background: var(--brand-deep); }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; z-index: 95;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 560px;
  padding: 18px 22px;
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 14px 40px -16px rgba(26,20,16,0.4);
  display: flex; flex-direction: column; gap: 12px;
  animation: cookieIn .42s var(--ease-spring) both;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text { font-size: 13px; line-height: 1.5; }
.cookie-banner-text strong { display: block; font-weight: 800; font-size: 14px; margin-bottom: 4px; }
.cookie-banner-text a { color: var(--brand-deep); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 18px; border-radius: 999px;
  font-weight: 800; font-size: 13px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}
.cookie-btn-primary {
  background: var(--ink); color: #fff;
  flex: 1;
}
.cookie-btn-primary:hover { background: var(--brand-deep); }
.cookie-btn-secondary {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.cookie-btn-secondary:hover { background: var(--bg-2); }
@media (max-width: 540px) {
  .cookie-banner { padding: 14px 16px; gap: 10px; }
}

/* Highlight pulse for #referencie when linked from hero trust badge */
.highlight-pulse { animation: highlight-pulse 1.4s ease-out 1; }
@keyframes highlight-pulse {
  0% { box-shadow: 0 0 0 0 rgba(79,179,232,0.55); }
  100% { box-shadow: 0 0 0 24px rgba(79,179,232,0); }
}


