/* ─────────────────────────────────────────
   CASE STUDY — shared styles, matches main site
   ───────────────────────────────────────── */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --blue:#0EA5E9; --blue-dark:#0284C7; --blue-glow:rgba(14,165,233,0.28);
  --light:#F5F5F7; --white:#FFFFFF; --dark:#060608;
  --text:#1D1D1F; --text-dim:#6E6E73;
  --glass-light:rgba(255,255,255,0.72);
  --glass-dark:rgba(255,255,255,0.08);
  --font-d:'Manrope', sans-serif;
  --font-b:'DM Sans', sans-serif;
  --ease:cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cur {
  position: fixed; width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .18s ease, height .18s ease;
}
#cur-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(14,165,233,0.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: opacity .2s ease;
}
body.hovering #cur { transform: translate(-50%,-50%) scale(3); background: rgba(14,165,233,0.4); }
body.hovering #cur-ring { opacity: 0; }

/* ── SCROLL PROGRESS ── */
#scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--blue), #6cb4ff, var(--blue));
  z-index: 9991; box-shadow: 0 0 8px var(--blue-glow);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
/* Logo: ambient halo + idle figure-8 drift + wordmark on hover (matches main nav) */
.nav-logo { display:flex; align-items:center; text-decoration:none; gap: 0; }
.nav-logo img {
  width: 38px; height: 38px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(108,180,255,0.5))
    drop-shadow(0 0 22px rgba(14,165,233,0.32))
    drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: nav-logo-float 7s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes nav-logo-float {
  0%, 100% {
    transform: translate(-2px, 1px);
    filter:
      drop-shadow(0 0 10px rgba(108,180,255,0.45))
      drop-shadow(0 0 20px rgba(14,165,233,0.25))
      drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  33% {
    transform: translate(2px, -3px);
    filter:
      drop-shadow(0 0 14px rgba(108,180,255,0.6))
      drop-shadow(0 0 28px rgba(14,165,233,0.4))
      drop-shadow(0 3px 6px rgba(0,0,0,0.32));
  }
  66% {
    transform: translate(-1px, -5px);
    filter:
      drop-shadow(0 0 16px rgba(108,180,255,0.7))
      drop-shadow(0 0 32px rgba(14,165,233,0.48))
      drop-shadow(0 4px 7px rgba(0,0,0,0.34));
  }
}
.nav-logo-text {
  font-family: var(--font-d); font-weight: 700; font-size: 15px;
  letter-spacing: -.01em; color: var(--text);
  max-width: 0; overflow: hidden; opacity: 0;
  margin-left: 0;
  white-space: nowrap;
  transition:
    max-width 0.45s cubic-bezier(0.22,1,0.36,1),
    opacity 0.3s ease,
    margin-left 0.45s cubic-bezier(0.22,1,0.36,1);
}
.nav-logo:hover .nav-logo-text {
  max-width: 200px; opacity: 1; margin-left: 12px;
}
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  text-decoration: none; color: var(--text-dim);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 20px;
  background: var(--blue); color: #fff;
  font-family: var(--font-b); font-size: 13px; font-weight: 500;
  text-decoration: none; border-radius: 100px;
  transition: background .2s ease, transform .15s ease;
  cursor: none;
}
.nav-cta:hover { background: var(--blue-dark); transform: scale(1.03); }
.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-dim);
  text-decoration: none; transition: color .2s ease;
}
.nav-back:hover { color: var(--text); }
.nav-back-arrow { font-size: 14px; transition: transform .2s ease; }
.nav-back:hover .nav-back-arrow { transform: translateX(-3px); }

/* ── HERO ── */
.cs-hero {
  position: relative;
  height: 92vh; min-height: 700px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 52px 80px;
}
.cs-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 110%;
  object-fit: cover; object-position: center 35%;
  filter: brightness(1.0) saturate(1.05);
  z-index: 0;
}
.cs-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 110% 90% at 50% 50%, transparent 0%, transparent 35%, rgba(4,4,8,0.6) 80%, rgba(4,4,8,0.95) 100%),
    linear-gradient(to top, rgba(4,4,8,0.95) 0%, rgba(4,4,8,0.55) 22%, rgba(4,4,8,0.18) 55%, transparent 100%);
  z-index: 1;
}
.cs-hero-content {
  position: relative; z-index: 2;
  max-width: 1100px;
}
.cs-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(14,165,233,0.18);
  border: 1px solid rgba(14,165,233,0.35);
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #6cb4ff;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.cs-hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.cs-hero-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(56px, 8vw, 132px);
  letter-spacing: -.035em; line-height: .95;
  color: #fff; margin-bottom: 28px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.4), 0 0 120px rgba(255,255,255,0.06);
}
.cs-hero-title em { font-style: italic; color: #fff;
  text-shadow: 0 0 60px rgba(14,165,233,0.55), 0 0 120px rgba(14,165,233,0.25);
}
.cs-hero-sub {
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 300;
  color: rgba(255,255,255,0.78); max-width: 640px;
  line-height: 1.6;
}

/* ── FACTS STRIP — metadata row ── */
.cs-facts {
  background: var(--dark);
  padding: 36px 52px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cs-facts-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.cs-fact-label {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.cs-fact-value {
  font-family: var(--font-d); font-weight: 700;
  font-size: 16px; letter-spacing: -.005em;
  color: #fff;
}
.cs-fact-value em { color: var(--blue); font-style: normal; }

/* ── TAGLINE + DELIVERABLE CHIPS (compact) ── */
.cs-tagline {
  background: var(--white);
  padding: 80px 52px 80px;
  text-align: center;
}
.cs-tagline-inner {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px; align-items: center;
}
.cs-tagline-text {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -.02em; line-height: 1.25;
  color: var(--text);
  max-width: 760px;
}
.cs-deliver-row {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.cs-deliver-chip {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.20);
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  white-space: nowrap;
}

/* ── NARRATIVE (legacy, unused on one-pager) ── */
.cs-narrative {
  background: var(--white);
  padding: 120px 52px 100px;
}
.cs-narrative-inner {
  max-width: 880px; margin: 0 auto;
}
.cs-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px; display: block;
}
.cs-section-title {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -.025em; line-height: 1.12;
  color: var(--text); margin-bottom: 32px;
  padding-bottom: 6px;
}
.cs-section-title em { font-style: italic; color: var(--blue); }
.cs-paragraph {
  font-size: 17px; font-weight: 400;
  line-height: 1.75; color: var(--text-dim);
  margin-bottom: 24px;
  max-width: 720px;
}
.cs-paragraph strong {
  color: var(--text); font-weight: 600;
}
.cs-pullquote {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -.02em; line-height: 1.25;
  color: var(--text);
  border-left: 3px solid var(--blue);
  padding: 12px 0 12px 28px;
  margin: 48px 0 48px;
  max-width: 760px;
}

/* ── DELIVERABLES LIST ── */
.cs-deliver {
  background: var(--light);
  padding: 96px 52px;
}
.cs-deliver-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}
.cs-deliver-list {
  display: flex; flex-direction: column; gap: 14px;
}
.cs-deliver-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.55;
  color: var(--text-dim);
}
.cs-deliver-item::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; margin-top: 8px;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}
.cs-deliver-item strong {
  color: var(--text); font-weight: 600;
}

/* ── STORY BLOCK (stats grid + optional videos + brand chips + pullout) ── */
.cs-story {
  background: var(--dark);
  padding: 80px 52px 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.cs-story-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.cs-story-section {
  display: flex; flex-direction: column; gap: 16px;
}
.cs-story-label {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(108,180,255,0.85);
  display: inline-block;
}
.cs-story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cs-story-stat { text-align: left; }
.cs-story-stat-num {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -.025em; line-height: 1;
  color: #fff; margin-bottom: 6px;
}
.cs-story-stat:nth-child(odd) .cs-story-stat-num {
  color: var(--blue);
  text-shadow: 0 0 32px rgba(14,165,233,0.35);
}
.cs-story-stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.cs-story-videos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.cs-story-video {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  aspect-ratio: 16 / 9;
}
.cs-story-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cs-story-video figcaption {
  position: absolute; left: 16px; bottom: 14px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(6,6,8,0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
}
.cs-story-pullout {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.02em; line-height: 1.25;
  color: #fff;
  border-left: 3px solid var(--blue);
  padding: 8px 0 8px 26px;
  max-width: 720px;
  text-shadow: 0 0 40px rgba(14,165,233,0.18);
}
.cs-story-brands {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cs-story-brand {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-d); font-size: 13px; font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  transition: all .25s ease;
}
.cs-story-brand:hover {
  background: rgba(14,165,233,0.14);
  border-color: rgba(14,165,233,0.45);
  color: #fff;
}
/* Episode cards (Where to Watch) — Spice Spice Baby */
.cs-episode-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.cs-episode-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(14,165,233,0.04) 100%);
  border: 1px solid rgba(108,180,255,0.18);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.cs-episode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108,180,255,0.45);
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(14,165,233,0.10) 100%);
}
.cs-episode-card-label {
  font-family: var(--font-d); font-weight: 700;
  font-size: 15px; letter-spacing: -.01em;
  color: #fff; line-height: 1.3;
}
.cs-episode-card-arrow {
  font-family: var(--font-d); font-weight: 600;
  font-size: 20px; color: rgba(108,180,255,0.85);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.cs-episode-card:hover .cs-episode-card-arrow {
  transform: translateX(6px);
  color: var(--blue);
}

/* ── GALLERY MASONRY ── */
.cs-gallery {
  background: var(--dark);
  padding: 80px 52px 80px;
}
.cs-gallery-header {
  max-width: 1280px; margin: 0 auto 40px;
}
.cs-gallery-header .cs-eyebrow { color: rgba(255,255,255,0.55); }
.cs-gallery-header h2 {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.02em; line-height: 1.1;
  color: #fff;
}
.cs-gallery-masonry {
  max-width: 1280px; margin: 0 auto;
  columns: 3; column-gap: 14px;
}
.cs-gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px; overflow: hidden;
  cursor: none;
  position: relative;
  background: rgba(255,255,255,0.04);
}
.cs-gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform .9s var(--ease), filter .5s ease;
}
.cs-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}
.cs-gallery-item.wide-2 { /* span 2 cols when needed via grid override */ }
@media (max-width: 900px) {
  .cs-gallery-masonry { columns: 2; }
}
/* Tablet breakpoint — pad sides + tighten credits/next */
@media (min-width: 601px) and (max-width: 1024px) {
  .cs-hero { padding: 0 36px 80px; }
  .cs-facts, .cs-deliver, .cs-gallery, .cs-credits, .cs-next, .cs-footer, .cs-story { padding-left: 36px; padding-right: 36px; }
  .cs-credits-inner { grid-template-columns: 1fr; gap: 32px; }
  .cs-credits-list { grid-template-columns: 1fr 1fr; gap: 10px 28px; }
  .cs-next-inner { gap: 36px; }
  .cs-story-stats { grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 24px 24px; }
  .cs-story-stat-num { font-size: 32px; }
  /* Hero gets a touch tighter on tablet */
  .cs-hero-title { font-size: clamp(54px, 9vw, 96px); }
}
@media (max-width: 600px) {
  .cs-gallery-masonry { columns: 1; }
  .cs-facts-grid { grid-template-columns: 1fr 1fr; }
  .cs-deliver-inner { grid-template-columns: 1fr; gap: 32px; }
  /* Hero text — left-aligned, tighter padding */
  .cs-hero { padding: 0 22px 56px; align-items: flex-end; }
  .cs-hero-content { text-align: left; max-width: 100%; }
  .cs-hero-pill, .cs-hero-eyebrow, .cs-hero-title, .cs-hero-sub { text-align: left; }
  .cs-hero-title { font-size: clamp(40px, 11vw, 64px); margin-bottom: 18px; }
  .cs-hero-eyebrow { margin-bottom: 12px; }
  .cs-hero-pill { margin-bottom: 14px; }
  .cs-hero-sub { font-size: 15px; max-width: 100%; }
  /* Story block */
  .cs-story { padding: 48px 22px 48px; }
  .cs-story-inner { gap: 28px; }
  .cs-tagline { padding: 48px 22px; }
  .cs-tagline-inner { gap: 20px; }
  .cs-gallery { padding: 48px 22px; }
  .cs-gallery-header { margin-bottom: 24px; }
  .cs-next { padding: 48px 22px; }
  .cs-facts { padding: 28px 22px; }
  .cs-story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    padding: 22px 20px;
  }
  .cs-story-stat-num { font-size: 28px; }
  .cs-story-videos { grid-template-columns: 1fr; gap: 14px; }
  .cs-story-pullout { font-size: 20px; padding-left: 20px; }
  .cs-episode-cards { grid-template-columns: 1fr; gap: 12px; }
  .cs-episode-card { padding: 18px 20px; }
  .cs-episode-card-label { font-size: 14px; }
}

/* ── CREDITS ── */
.cs-credits {
  background: var(--light);
  padding: 80px 52px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cs-credits-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  align-items: start;
}
.cs-credits-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 36px;
}
.cs-credit-row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.cs-credit-role {
  font-size: 9px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-dim);
}
.cs-credit-name {
  font-family: var(--font-d); font-size: 14px; font-weight: 600;
  color: var(--text); letter-spacing: -.005em;
}

/* Adjacent dark sections: tighten the boundary so it reads as one continuous zone */
.cs-story:has(+ .cs-gallery) { padding-bottom: 32px; }
.cs-story + .cs-gallery { padding-top: 24px; }
.cs-gallery + .cs-next { padding-top: 24px; }
@media (max-width: 600px) {
  .cs-story:has(+ .cs-gallery) { padding-bottom: 20px; }
  .cs-story + .cs-gallery { padding-top: 16px; }
}

/* ── NEXT CASE / FOOTER CTA ── */
.cs-next {
  background: var(--dark);
  padding: 80px 52px;
  position: relative; overflow: hidden;
}
.cs-next-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center;
}
.cs-next-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 16px; display: block;
}
.cs-next-title {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(32px, 3.6vw, 56px);
  letter-spacing: -.025em; line-height: 1.05;
  color: #fff;
}
.cs-next-title a {
  color: #fff; text-decoration: none;
  display: inline-block;
  transition: color .25s ease, transform .35s var(--ease);
}
.cs-next-title a:hover {
  color: var(--blue);
  transform: translateX(8px);
}
.cs-next-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--blue); color: #fff;
  font-family: var(--font-b); font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 100px;
  transition: all .25s ease; cursor: none;
  border: none;
}
.cs-next-cta:hover { background: var(--blue-dark); transform: scale(1.04); }

/* ── FOOTER ── */
.cs-footer {
  background: var(--dark);
  padding: 40px 52px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cs-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.cs-footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
.cs-footer a:hover { color: #fff; }

/* ── FILM GRAIN ── */
#grain {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 9990;
  opacity: 0.04; mix-blend-mode: overlay;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── A11Y: keyboard focus indicators ── */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── REDUCED MOTION ── */
@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;
  }
  .cs-hero-img, .reveal { transform: none !important; opacity: 1 !important; }
}
