/* ═══════════════════════════════════════
   SHARED — Design Tokens, Reset, Chrome
   Used by all pages on wearetilt.com
═══════════════════════════════════════ */

:root {
  /* ── Colour Palette ── */
  --ink: #0a0a0a;
  --paper: #f7f5f2;
  --paper-warm: #f0eeeb;
  --accent: #ff4c74;
  --accent-light: #ff6b8e;
  --cream: #faf9f7;
  --deep: #1a1a1a;
  --muted: #5e5e5e;

  /* ── Typography ── */
  --serif: 'Playfair Display', 'Georgia', serif;
  --body: 'Spline Sans', 'DM Sans', 'Helvetica Neue', sans-serif;
  --display: 'Instrument Serif', 'Playfair Display', serif;

  /* ── Motion ── */
  --ease-out-expo: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ── Typography Scale ── */
  --h1: clamp(3.5rem, 9vw, 8rem);
  --h2: clamp(2rem, 5vw, 4.5rem);
  --h3: clamp(1.5rem, 3.5vw, 3rem);
  --h4: clamp(1.2rem, 2vw, 1.8rem);

  /* ── Spacing Scale ── */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  --space-3xl: 10rem;
  --section-pad: 5rem;
  --section-pad-lg: 10rem;

  /* ── Borders ── */
  --border-thin: 1px;
  --border-medium: 1.5px;
  --border-accent: 2px;

  /* ── Transitions ── */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s var(--ease-out-expo);

  /* ── Shadows ── */
  --shadow-card: 0 4px 24px rgba(10,10,10,0.08);

  /* ── Radii ── */
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;

  /* ── Nav ── */
  --nav-height: 4.5rem;

  /* ── Z-index Scale ── */
  --z-base: 0;
  --z-card: 1;
  --z-sticky: 10;
  --z-nav: 100;
  --z-overlay: 500;
  --z-modal: 1000;

  /* ── Text Opacity (on dark backgrounds) ── */
  --text-secondary: rgba(247,245,242,0.75);
  --text-tertiary: rgba(247,245,242,0.72);
  --text-muted-light: rgba(247,245,242,0.55);

  /* ── Text Opacity (on light backgrounds) ── */
  --text-muted-dark: rgba(10,10,10,0.5);

  /* ── Eyebrow Typography ── */
  --eyebrow-size: 0.72rem;
  --eyebrow-weight: 600;
  --eyebrow-spacing: 0.25em;

  /* ── Breakpoints (reference) ── */
  /* Mobile: 600px | Tablet: 900px | Desktop: 1024px */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--accent); color: var(--paper); }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
  background: var(--paper);
  color: var(--ink);
}

body[data-theme="dark"] {
  background: var(--deep);
  color: var(--paper);
}


/* ═══════════════════════════════════════
   EYEBROW — Shared label utility
═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
}

/* Eyebrow with leading accent line */
.eyebrow-lined {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow-lined::before {
  content: '';
  width: 3rem;
  height: 1px;
  background: var(--accent);
}

/* ═══════════════════════════════════════
   BODY COPY LINKS — Global
═══════════════════════════════════════ */
.panel-body a,
.bg-text a,
.insight-body a,
.impact-text a,
.grow-narrative-body a,
.hww-philosophy-body a,
.editorial-split-body a,
.manifesto-body a,
.tt-series-intro a,
.tt-series-speaker a {
  color: var(--accent);
  text-decoration: none;
  transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.panel-body a:hover,
.bg-text a:hover,
.insight-body a:hover,
.impact-text a:hover,
.grow-narrative-body a:hover,
.hww-philosophy-body a:hover,
.editorial-split-body a:hover,
.manifesto-body a:hover {
  text-decoration-color: var(--accent);
}
.tt-series-intro a:hover,
.tt-series-speaker a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}


/* ═══════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR — MAGNIFYING GLASS
═══════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: -30px; left: -30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  overflow: hidden;
  border: 1.5px solid rgba(255,76,116,0.35);
  backdrop-filter: brightness(1.18) contrast(1.1) saturate(1.3);
  -webkit-backdrop-filter: brightness(1.18) contrast(1.1) saturate(1.3);
  box-shadow:
    0 0 20px rgba(255,76,116,0.1),
    0 0 6px rgba(255,76,116,0.06);
  will-change: transform;
  transition: width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo),
              top 0.35s var(--ease-out-expo),
              left 0.35s var(--ease-out-expo),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              backdrop-filter 0.3s ease,
              -webkit-backdrop-filter 0.3s ease;
}

.cursor-ring.hovering {
  top: -40px; left: -40px;
  width: 80px; height: 80px;
  border-color: rgba(255,76,116,0.55);
  backdrop-filter: brightness(1.3) contrast(1.15) saturate(1.5);
  -webkit-backdrop-filter: brightness(1.3) contrast(1.15) saturate(1.5);
  box-shadow:
    0 0 30px rgba(255,76,116,0.18),
    0 0 8px rgba(255,76,116,0.08);
}

/* Glass shine highlight — specular reflection */
.cursor-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 70% 50% at 30% 25%,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.05) 45%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
}

.cursor-ring.idle {
  animation: cursorPulse 2.5s ease-in-out infinite;
}

@keyframes cursorPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,76,116,0.06), 0 0 6px rgba(255,76,116,0.04); border-color: rgba(255,76,116,0.12); }
  50%      { box-shadow: 0 0 28px rgba(255,76,116,0.2), 0 0 10px rgba(255,76,116,0.1); border-color: rgba(255,76,116,0.3); }
}

/* ═══════════════════════════════════════
   SHARED ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpCentered {
  from { opacity: 0; transform: translateX(-50%) translateY(25px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes heroLine {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes scrollPulse {
  0%   { top: -60px; }
  100% { top: 60px; }
}

@keyframes scrollFade {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link — hidden until focused */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10010;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 2rem;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Focus ring — visible only for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav[aria-label="Primary"] {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 3.5rem;
  transition: transform 0.5s var(--ease-out-expo),
              opacity 0.5s var(--ease-out-expo);
}
nav[aria-label="Primary"].nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* SVG Logo */
.nav-logo-svg {
  height: 40px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover .nav-logo-svg {
  transform: scale(1.12) rotate(-6deg);
}

.nav-logo-svg .logo-dot {
  fill: var(--accent);
  transition: fill 0.4s ease;
}

.nav-logo-svg .logo-type {
  fill: var(--paper);
  transition: fill 0.4s ease;
}

.nav-logo:hover .nav-logo-svg .logo-type {
  fill: rgba(255,255,255,0.8);
}

nav[aria-label="Primary"].nav-dark .nav-logo-svg .logo-type {
  fill: var(--ink);
}

nav[aria-label="Primary"].nav-dark .nav-logo:hover .nav-logo-svg .logo-type {
  fill: rgba(10,10,10,0.7);
}

.nav-links {
  display: none;
}

/* ── Burger Button ── */
.nav-burger {
  position: relative;
  width: 36px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--paper);
  border-radius: 1px;
  transition: transform 0.4s var(--ease-out-expo),
              opacity 0.3s ease,
              background 0.4s ease;
  transform-origin: center;
}

/* Dark nav — burger lines go dark */
nav[aria-label="Primary"].nav-dark .nav-burger span {
  background: var(--ink);
}

/* When overlay is open — burger always white, becomes X */
.nav-burger.is-open span {
  background: var(--paper) !important;
}

.nav-burger.is-open span:first-child {
  transform: translateY(11px) rotate(45deg);
}

.nav-burger.is-open span:last-child {
  transform: translateY(-11px) rotate(-45deg);
}

/* ── Half-Width Overlay ── */
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1001;
  background: var(--accent);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out-expo);
  overflow-x: hidden;
  overflow-y: auto;
}

.nav-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: -2rem;
  bottom: 0;
  width: 100%;
  background: url('/images/navigation/jump-in.png') no-repeat right bottom / auto 40%;
  opacity: 0.6;
  pointer-events: none;
}

.nav-overlay.is-open {
  transform: translateX(0);
  box-shadow: -100vw 0 0 100vw rgba(10, 10, 10, 0.4);
}

.nav-overlay-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-lg) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.nav-overlay-inner::before {
  content: '';
  flex: 1;
}

.nav-overlay-inner::after {
  content: '';
  flex: 1;
}

.nav-overlay-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nav-overlay-inner li {
  overflow: hidden;
}

.nav-overlay-inner a {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.35s ease, transform 0.35s var(--ease-out-expo);
  line-height: 1.25;
}

.nav-overlay-inner a:hover {
  color: var(--deep);
  transform: translateX(8px);
}

.nav-overlay-inner a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--paper);
  opacity: 0;
  transition: width 0.5s var(--ease-out-expo), opacity 0.3s ease;
}

.nav-overlay-inner a:hover::after {
  width: 100%;
  opacity: 1;
}

/* ── Nav Social Icons ── */
.nav-social {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-lg);
}

.nav-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 242, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.nav-social a::after {
  display: none;
}

.nav-social a:hover {
  color: var(--deep);
  border-color: var(--deep);
  transform: translateY(-3px);
}

.nav-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── Nav Pillar Links ── */
.nav-pillars {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 245, 242, 0.15);
  align-self: flex-start;
}

.nav-pillars-label {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.6);
  margin-bottom: 0.8rem;
}

.nav-pillars-links {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.nav-pillars-links a {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.35s var(--ease-out-expo);
  display: inline-block;
}

.nav-pillars-links a::after {
  display: none;
}

.nav-pillars-links a:hover {
  color: var(--deep);
  transform: translateX(4px);
}

.nav-pillars-sep {
  color: rgba(247, 245, 242, 0.35);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  user-select: none;
}

/* Scroll lock when overlay open */
body.nav-open {
  overflow: hidden;
}

body.nav-open nav[aria-label="Primary"] {
  z-index: 1002;
}

/* Mobile: overlay goes full width */
@media (max-width: 600px) {
  .nav-overlay {
    width: 100%;
    justify-content: center;
  }
  .nav-overlay::before {
    display: none;
  }
  .nav-overlay-inner {
    padding: var(--space-lg) 2rem;
    text-align: center;
    align-items: center;
  }
  .nav-pillars {
    text-align: center;
  }
  .nav-pillars-links {
    justify-content: center;
  }
  .nav-social {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--ease-out-expo);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ═══════════════════════════════════════
   HERO — FULL-BLEED CINEMATIC (Case Study)
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--deep) 0%, rgba(26,26,26,0.6) 35%, rgba(26,26,26,0.2) 60%, rgba(26,26,26,0.4) 100%),
    linear-gradient(to right, rgba(26,26,26,0.7) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 5;
  padding: 0 var(--space-xl) 6rem;
  max-width: 850px;
}

.hero-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-client {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
}
.hero-divider { width: 40px; height: 1px; background: rgba(255,76,116,0.5); }
.hero-type {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(247,245,242,0.55);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 400; line-height: 0.95;
  margin-bottom: 2rem;
}
.hero-title .line {
  display: block;
  opacity: 0; transform: translateY(70px) rotate(1.5deg);
  animation: heroLine 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.8s; }
.hero-title .line:nth-child(2) { animation-delay: 1s; }
.hero-title .line:nth-child(3) { animation-delay: 1.2s; }
.hero-title em { font-style: italic; }

.hero-scroll {
  position: absolute; bottom: 3rem; left: 5rem; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp 1s ease 2s forwards;
  text-decoration: none; cursor: pointer;
}
.hero-scroll span {
  font-family: var(--body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(247,245,242,0.55); position: relative;
  padding-bottom: 3px; transition: color 0.4s ease;
}
.hero-scroll span::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}
.hero-scroll:hover span { color: var(--paper); }
.hero-scroll:hover span::after { width: 100%; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulseDown 2s ease-in-out infinite;
}
@keyframes scrollPulseDown {
  0%   { opacity: 0; transform: translateY(-10px); }
  50%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ═══════════════════════════════════════
   HERO — CINEMATIC AMBIENT VIDEO (News)
═══════════════════════════════════════ */
.hero-cin {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--deep);
  display: flex;
  align-items: flex-end;
}

.hero-cin video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-cin::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--deep) 0%, rgba(26,26,26,0) 50%),
    linear-gradient(to right, rgba(26,26,26,0.7) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-cin-content {
  position: relative;
  z-index: 5;
  padding: 0 var(--space-xl) 6rem;
  max-width: 900px;
}

.hero-cin-eyebrow {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-cin-eyebrow::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--accent);
}

.hero-cin-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--paper);
  margin-bottom: 2rem;
}

.hero-cin-title .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroLine 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-cin-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-cin-title .line:nth-child(2) { animation-delay: 0.7s; }
.hero-cin-title .line:nth-child(3) { animation-delay: 0.9s; }

.hero-cin-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-cin-sub {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-cin-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
  text-decoration: none;
  cursor: pointer;
}

a.hero-cin-scroll:hover span:not(.scroll-line) {
  color: var(--accent);
  transition: color 0.3s var(--ease-out-expo);
}

.hero-cin-scroll span {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--text-tertiary);
  writing-mode: vertical-lr;
}

.hero-cin-scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollFade 2s ease-in-out infinite;
}

.hero-cin-issue {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(8rem, 15vw, 14rem);
  font-weight: 400;
  color: rgba(255,76,116,0.06);
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.5s ease 1.2s forwards;
}

/* ═══════════════════════════════════════
   PARALLAX IMAGE BREAK
═══════════════════════════════════════ */
.parallax-break {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  background: var(--deep);
}

.parallax-break-img {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  opacity: 0.5;
  will-change: transform;
}

.parallax-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--deep) 0%, transparent 30%),
    linear-gradient(to bottom, var(--deep) 0%, transparent 30%);
  pointer-events: none;
}

.parallax-break-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-break-text blockquote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
  text-align: center;
  max-width: 750px;
  line-height: 1.3;
  padding: 0 2rem;
}

.parallax-break-text blockquote em {
  color: var(--accent);
  font-style: italic;
}

/* ═══════════════════════════════════════
   EDITORIAL INTERSTITIAL — DARK STRIP
═══════════════════════════════════════ */
.interstitial {
  background: var(--deep);
  padding: 6rem var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.interstitial-left {
  max-width: 520px;
}

.interstitial-eyebrow {
  font-family: var(--body);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.interstitial-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.interstitial-heading {
  font-family: var(--display);
  font-size: var(--h3);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.interstitial-text {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,245,242,0.5);
}

.interstitial-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.interstitial-stat {
  display: flex;
  flex-direction: column-reverse;
  padding: 2rem;
  border: 1px solid rgba(255,76,116,0.1);
  text-align: center;
}

.interstitial-stat-num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.interstitial-stat-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.4);
}

/* ═══════════════════════════════════════
   VISUAL STRIP — INFINITE IMAGE SCROLL
═══════════════════════════════════════ */
.vis-strip {
  overflow: hidden;
  background: var(--deep);
  padding: 0;
}

.vis-strip-track {
  display: flex;
  animation: stripScroll 50s linear infinite;
  width: max-content;
}

.vis-strip-track img {
  height: 320px;
  aspect-ratio: 16/9;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.5s ease;
}

.vis-strip-track img:hover {
  filter: brightness(1) saturate(1);
}

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   CTA — CINEMATIC CLOSE
═══════════════════════════════════════ */
.cin-cta {
  background: var(--deep);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cin-cta::before {
  content: 'TILT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(12rem, 20vw, 22rem);
  font-weight: 400;
  color: rgba(255,76,116,0.03);
  pointer-events: none;
  white-space: nowrap;
}

.cin-cta-inner {
  position: relative;
  z-index: 2;
}

.cin-cta-heading {
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.cin-cta-heading em {
  font-style: italic;
  color: var(--accent);
}

.cin-cta-sub {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(247,245,242,0.45);
  margin-bottom: var(--space-lg);
}

.cin-cta-badge {
  display: block;
  height: auto;
  margin: 1rem auto 1.2rem;
  opacity: 0.6;
}

/* Keep badge and CTA button the same width */
.cin-cta-inner .cin-cta-badge,
.cin-cta-inner .cin-cta-btn {
  width: 240px;
  box-sizing: border-box;
  text-align: center;
}

.cin-cta-btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 1.2rem 3rem;
  border: 1px solid rgba(247,245,242,0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 0;
}
.cin-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}
.cin-cta-btn:hover::before { transform: scaleX(1); }
.cin-cta-btn:hover { border-color: var(--accent); }

/* ═══════════════════════════════════════
   BRIEF & SOLUTION — SPLIT EDITORIAL
═══════════════════════════════════════ */
.brief-solution {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.brief-panel, .solution-panel {
  padding: 6rem var(--space-xl);
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}
.brief-panel { background: var(--paper); color: var(--ink); }
.solution-panel { background: var(--deep); color: var(--paper); }

.panel-number {
  font-family: var(--display); font-size: 6rem;
  font-weight: 400; line-height: 1;
  position: absolute; top: var(--space-lg); right: var(--space-xl);
  opacity: 0.04;
}
.brief-panel .panel-number,
.background-section .panel-number,
.assets-panel .panel-number,
.insights .panel-number { color: var(--ink); }
.solution-panel .panel-number,
.approach .panel-number,
.impact-panel .panel-number { color: var(--paper); }

.panel-label {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.panel-label::before {
  content: ''; width: 40px; height: 1px; background: var(--accent); opacity: 0.7;
}

.panel-title {
  font-family: var(--display);
  font-size: var(--h3);
  font-weight: 400; line-height: 1.35;
  margin-bottom: 2rem;
}
.panel-title em { font-style: italic; color: var(--accent); }
.solution-panel .panel-title { color: var(--paper); }

.panel-body {
  font-size: 1rem; font-weight: 400;
  line-height: 1.9; max-width: 440px;
}
.brief-panel .panel-body { color: var(--muted); }
.solution-panel .panel-body { color: rgba(247,245,242,0.65); }

/* ═══════════════════════════════════════
   BACKGROUND NARRATIVE
═══════════════════════════════════════ */
.background-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--paper);
  color: var(--ink);
  position: relative;
}

.bg-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
}
.bg-label {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.bg-label::before {
  content: ''; width: 40px; height: 1px; background: var(--accent); opacity: 0.7;
}
.bg-lead {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.35;
  color: var(--ink); margin-bottom: 2.5rem;
}
.bg-lead em { font-style: italic; color: var(--accent); }
.bg-text {
  font-size: 1rem; font-weight: 400;
  line-height: 1.9; color: var(--muted);
}
.bg-text p + p { margin-top: 1.5rem; }
.bg-right {
  padding-top: 4rem;
  border-left: 1px solid rgba(10,10,10,0.06);
  padding-left: 4rem;
}
.bg-right .bg-text { color: rgba(10,10,10,0.65); }

/* ═══════════════════════════════════════
   VIDEO SECTION — CINEMATIC
═══════════════════════════════════════ */
.video-section {
  position: relative;
  background: var(--deep);
  padding: var(--space-2xl) var(--space-xl);
}
.video-wrapper {
  max-width: 1100px; margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.video-wrapper video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,76,116,0.15);
  transition: background 0.5s ease, opacity 0.5s ease;
}
.video-wrapper:hover .video-play-overlay {
  background: rgba(255,76,116,0.08);
}
.video-play-btn {
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}
.video-play-btn::before {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(255,76,116,0.15);
  animation: vPulse 3s ease infinite;
}
@keyframes vPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}
.video-wrapper:hover .video-play-btn {
  border-color: var(--accent);
  background: rgba(255,76,116,0.12);
  transform: scale(1.15);
}
.video-play-btn svg { fill: var(--paper); width: 26px; height: 26px; margin-left: 4px; }
.video-caption {
  text-align: center; margin-top: 2rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(247,245,242,0.45);
}

/* ═══════════════════════════════════════
   FULLSCREEN VIDEO OVERLAY
═══════════════════════════════════════ */
.video-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.video-fullscreen.active {
  opacity: 1;
  pointer-events: auto;
}
.video-fullscreen-stage {
  width: 0;
  height: 0;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.5s var(--ease-out-expo), height 0.5s var(--ease-out-expo);
}
.video-fullscreen.active .video-fullscreen-stage {
  width: 100vw;
  height: 100vh;
}
.video-fullscreen-stage video,
.video-fullscreen > video {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}
.video-fullscreen-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.video-fullscreen-close:hover {
  border-color: var(--accent);
  transform: scale(1.1);
}
.video-fullscreen-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--paper);
  stroke-width: 2;
  fill: none;
}

/* --- Video Controls Bar --- */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.video-fullscreen.active:hover .video-controls,
.video-fullscreen.active .video-controls.visible {
  opacity: 1;
}
.video-controls button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-controls svg {
  width: 20px;
  height: 20px;
  fill: var(--paper);
  stroke: none;
  transition: fill 0.2s ease;
}
.video-controls button:hover svg {
  fill: var(--accent);
}
.vc-time {
  font-family: var(--body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  min-width: 5.5rem;
  -webkit-user-select: none;
  user-select: none;
}
.vc-scrub {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  position: relative;
}
.vc-scrub::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
}
.vc-scrub::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: -4px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.vc-scrub:hover::-webkit-slider-thumb {
  transform: scale(1.3);
}
.vc-scrub::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.vc-scrub::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}
.vc-volume {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
.vc-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.vc-volume::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.vc-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  border: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════
   APPROACH — STORYTELLING LAYOUT
═══════════════════════════════════════ */
.approach {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: var(--watermark, '');
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: clamp(12rem, 25vw, 22rem);
  font-weight: 900; color: rgba(255,255,255,0.015);
  white-space: nowrap; pointer-events: none;
}
.approach-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.approach-left .bg-label { color: var(--accent); }
.approach-left .bg-lead { color: var(--paper); }
.approach-left .bg-lead em { color: var(--accent); }
.approach-left .bg-text { color: rgba(247,245,242,0.6); }
.approach-left .bg-text p + p { margin-top: 1.5rem; }

.approach-right {
  padding-top: 4rem;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding-left: 4rem;
}
.approach-right .bg-text { color: rgba(247,245,242,0.55); }
.approach-right .bg-text p + p { margin-top: 1.5rem; }

/* ═══════════════════════════════════════
   PULLQUOTE MOMENT
═══════════════════════════════════════ */
.pullquote-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--paper);
  position: relative;
  text-align: center;
}
.pullquote-section::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(10,10,10,0.08), transparent);
}
.pullquote-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.pullquote-mark {
  font-family: var(--display);
  font-size: 14rem;
  color: rgba(255,76,116,0.08);
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.pullquote-text {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.pullquote-text em {
  font-style: italic;
  color: var(--accent);
}
.pullquote-text footer {
  margin-top: 2.5rem;
}

.pullquote-source {
  display: block;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ═══════════════════════════════════════
   PROJECT INSIGHTS — EDITORIAL
═══════════════════════════════════════ */
.insights {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--paper);
  color: var(--ink);
  position: relative;
}
.insights-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.insight-pull {
  font-family: var(--display);
  font-size: var(--h3);
  font-weight: 400; line-height: 1.35;
  color: var(--ink);
}
.insight-pull em { font-style: italic; color: var(--accent); }
.insight-body {
  font-size: 1.05rem; font-weight: 400;
  line-height: 1.9; color: var(--muted);
  padding-top: 1rem;
}
.insight-body p + p { margin-top: 1.5rem; }

/* ═══════════════════════════════════════
   CTA — LAUNCH PROJECT
═══════════════════════════════════════ */
.launch-cta {
  padding: 6rem var(--space-xl);
  background: var(--deep);
  text-align: center;
  position: relative;
}
.launch-cta::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,76,116,0.2), transparent);
}
.launch-btn {
  display: inline-flex; align-items: center; gap: 1.2rem;
  font-family: var(--body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper); text-decoration: none;
  padding: 1.4rem 3.5rem;
  border: 1px solid rgba(247,245,242,0.15);
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 0;
}
.launch-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}
.launch-btn:hover::before { transform: scaleX(1); }
.launch-btn:hover { border-color: var(--accent); }
.launch-btn svg {
  width: 18px; height: 18px; fill: currentColor;
  transition: transform 0.3s ease;
}
.launch-btn:hover svg { transform: translateX(5px); }

/* ═══════════════════════════════════════
   RELATED PROJECTS
═══════════════════════════════════════ */
.related {
  padding: 6rem var(--space-xl) var(--space-2xl);
  background: var(--deep);
}
.related-label {
  font-family: var(--body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-lg);
  display: flex; align-items: center; gap: 1rem;
}
.related-label::before {
  content: ''; width: 40px; height: 1px; background: var(--accent); opacity: 0.7;
}
.related-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 1200px;
}
.related-card {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer; text-decoration: none; display: block;
}
.related-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
  filter: brightness(0.75);
}
.related-card:hover img { transform: scale(1.06); filter: brightness(0.9); }
.related-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.related-card-client {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.related-card-title {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 400;
  font-style: italic; color: var(--paper);
}

/* ═══════════════════════════════════════
   PILLAR NAVIGATION — HERO BOTTOM-RIGHT
   Frosted-glass pills that read on any bg
═══════════════════════════════════════ */
.pillar-nav {
  position: absolute;
  right: 3.5rem;
  bottom: 3rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pillar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  padding: 0.55rem 1.15rem 0.55rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(20,20,20,0.45);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  transition: border-color 0.4s var(--ease-out-expo),
              background 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo);
}

.pillar-nav-link:hover {
  border-color: rgba(255,76,116,0.5);
  background: rgba(255,76,116,0.12);
  transform: translateY(-1px);
}

/* Active state — current page */
.pillar-nav-link.is-active {
  border-color: rgba(255,76,116,0.45);
  background: rgba(255,76,116,0.14);
}

.pillar-nav-link.is-active .pillar-nav-num {
  background: var(--accent);
  color: #fff;
}

.pillar-nav-link.is-active .pillar-nav-label {
  color: #fff;
}

.pillar-nav-num {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(255,76,116,0.15);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s ease, color 0.4s ease;
}

.pillar-nav-link:hover .pillar-nav-num {
  background: rgba(255,76,116,0.25);
}

.pillar-nav-label {
  font-family: var(--display);
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  transition: color 0.4s ease;
}

.pillar-nav-link:hover .pillar-nav-label {
  color: #fff;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
body > footer {
  padding: 4.5rem 3.5rem 2rem;
  background: var(--ink);
  color: rgba(245,240,232,0.72);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 0.8rem;
}

.footer-logo-svg {
  height: 28px;
  width: auto;
}

.footer-tagline {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.72);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px) rotate(-4deg);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-col {
  display: block;
}

.footer-col ul {
  list-style: none;
}

.footer-col .footer-social {
  margin-top: 1.5rem;
}

.footer-col .footer-social a {
  display: flex;
  margin-bottom: 0;
  font-size: inherit;
}

.footer-col-title {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin: 0 0 1.5rem;
  line-height: inherit;
}

.footer-col a {
  display: block;
  font-family: var(--body);
  font-size: 0.92rem;
  color: rgba(245,240,232,0.72);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  max-width: 1240px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.72);
}

.footer-bcorp {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.72);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-bcorp:hover {
  opacity: 0.8;
}

.bcorp-badge {
  width: auto;
  height: 28px;
  display: block;
}


/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s var(--ease-out-expo),
              opacity 0.4s ease;
  pointer-events: none;
}

.cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 3.5rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-top: 1px solid rgba(255, 76, 116, 0.15);
}

.cookie-consent p {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 245, 242, 0.7);
  margin: 0;
}

.cookie-consent a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.cookie-consent a:hover {
  color: var(--accent-light);
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent-accept {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.15);
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 0;
}

.cookie-consent-accept::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}

.cookie-consent-accept:hover::before {
  transform: scaleX(1);
}

.cookie-consent-accept:hover {
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem 1.5rem;
    gap: 1.2rem;
  }
}

/* ═══════════════════════════════════════
   REDUCED MOTION — RESPECT USER PREFS
═══════════════════════════════════════ */
@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;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SHARED BREAKPOINTS
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Editorial grid: keep two-tier at this breakpoint */
}

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
  .pillar-nav { display: none; }

  nav[aria-label="Primary"] { padding: 1.2rem 1.5rem; }
  .hero-content { padding: 0 2rem 4rem; }
  .hero-scroll { left: 2rem; bottom: 2rem; }

  .brief-solution, .approach-inner, .bg-inner, .insights-inner { grid-template-columns: 1fr; }
  .brief-panel, .solution-panel { padding: 4rem 2rem; }
  .background-section, .approach, .insights, .video-section { padding: var(--space-xl) 2rem; }

  .bg-right, .approach-right {
    border-left: none; padding-left: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Hero cinematic */
  .hero-cin-content { padding: 0 2rem 4rem; }
  .hero-cin-issue { display: none; }
  .hero-cin-scroll { right: 2rem; }

  /* Interstitial */
  .interstitial { grid-template-columns: 1fr; padding: var(--space-xl) 2rem; }

  /* CTA cinematic */
  .cin-cta { padding: 6rem 2rem; }

  /* Parallax */
  .parallax-break { height: 40vh; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Interstitial stats */
  .interstitial-right { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Visual strip */
  .vis-strip-track img { height: 200px; }
}
