/* ==========================================================================
   CLIQUE MRKT — Custom CSS (Tailwind can't handle these)
   ========================================================================== */

/* --- CSS Variables (Design Tokens) --- */
/* Brand fonts — per Clique MRKT Web Brand Guide
   Heading: Roc Grotesk           (Adobe Typekit — loaded via <link> in HTML)
   Body:    Roc Grotesk / New Standard Font
   Eyebrow pills: Roc Grotesk. Hero + contact headline emphasis: High Summit. Other heading em: Dunhill Script.
   Roc Grotesk + Dunhill Script load from Adobe Typekit (kit id hdr7jsr).
   High Summit + New Standard are self-hosted from /assets/fonts. */
@font-face {
  font-family: 'New Standard';
  src: url('../assets/fonts/NewStandard-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'High Summit';
  src: url('../assets/fonts/HighSummit-Regular.otf') format('opentype'),
       url('../assets/fonts/HighSummit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette — per Clique MRKT Web Brand Guide */
  --bg-primary: #000000;
  --bg-elevated: #141414;
  --bg-surface: #1C1C1C;
  --bg-surface-hover: #242424;
  --text-primary: #FEFEFE;
  --text-secondary: #A6A6A6;
  --text-tertiary: #787574;
  --neutral-200: #D9D9D9;
  --accent: #921111;
  --accent-hover: #C42828;
  --accent-muted: rgba(146, 17, 17, 0.15);
  --warm: #99726B;
  --warm-soft: #E0C3B7;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);

  --font-display: 'roc-grotesk', 'Roc Grotesk', system-ui, sans-serif;
  --font-body: 'roc-grotesk', 'Roc Grotesk', 'New Standard', system-ui, sans-serif;
  --font-accent: 'dunhill-script', 'Dunhill Script', cursive;
  --font-hero-emphasis: 'High Summit', Georgia, serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);

  --section-gap: clamp(5rem, 10vh, 8rem);
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --container: 1400px;
  --radius-lg: 1.25rem;
  --radius-pill: 100px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: var(--text-primary); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* h1/h2/h3 sizes handled by Tailwind classes in HTML */
h3 { font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 1.0938rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  display: inline-flex;
  align-items: center;
  padding: 0.6563rem 1.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}

/* Accent script font on emphasized words inside headings */
h1 em, h2 em, h3 em { font-family: var(--font-accent); font-style: italic; color: var(--accent); font-weight: 400; letter-spacing: 0; }

/* Eyebrow pill badges — Roc Grotesk */
.eyebrow { font-family: var(--font-display); letter-spacing: 0.25em; }


/* --- Film Grain (fixed, non-scrolling) --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.022;
  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='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ==========================================================================
   FLOATING PILL NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  z-index: 1000;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.625rem 0.625rem 0.625rem 1.5rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.7s var(--ease-spring), opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}

.nav.nav--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  width: 32px;
  height: 32px;
  filter: invert(1) brightness(2);
  transition: transform 0.5s var(--ease-spring);
}

.nav__logo:hover img { transform: rotate(-8deg) scale(1.08); }

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color 0.5s var(--ease-spring);
  white-space: nowrap;
}

.nav__link:hover { color: var(--text-primary); }

/* Button-in-Button CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4219rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--accent);
  padding: 0.875rem 0.875rem 0.875rem 2.1875rem;
  border-radius: var(--radius-pill);
  transition: all 0.5s var(--ease-spring);
  white-space: nowrap;
}

.nav__cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav__cta:active { transform: scale(0.97); }

.nav__cta-icon {
  width: 49px;
  height: 49px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-spring);
}

.nav__cta:hover .nav__cta-icon {
  transform: translateX(2px);
  background: rgba(255,255,255,0.25);
}

.nav__cta-icon svg { width: 21px; height: 21px; }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav__toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.4s var(--ease-spring);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.nav__mobile.open { opacity: 1; visibility: visible; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  transform: translateY(40px);
  opacity: 0;
  filter: blur(4px);
  transition: all 0.7s var(--ease-out-expo);
}

.nav__mobile.open a {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.nav__mobile.open a:nth-child(1) { transition-delay: 0.08s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.14s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.20s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.26s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.32s; }

/* ==========================================================================
   HERO SCROLL ANIMATION
   ========================================================================== */
.hero-scroll {
  position: relative;
  height: 800vh;
}

.hero-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-scroll__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-scroll__text {
  position: absolute;
  z-index: 2;
  left: clamp(1.5rem, 5vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  max-width: 55%;
  pointer-events: auto;
}

.hero-scroll__text h1 { margin-bottom: 1.75rem; }
.hero-scroll__text h1 em { font-family: var(--font-hero-emphasis); font-style: normal; color: var(--accent); font-weight: 400; letter-spacing: 0; font-size: 1.05em; line-height: 0.9; }

/* Hero eyebrow only — ~20% smaller than global .eyebrow (other sections unchanged). */
.hero-scroll__text .eyebrow { font-size: calc(1.0938rem * 0.8); }

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hero CTAs — sized for prominence; ~25% smaller than prior hero scale.
   .btn--hero-cta reuses the same treatment outside the hero (e.g. About). */
.hero__cta-group .btn,
.btn.btn--hero-cta {
  font-size: 1.4375rem;
}

.hero__cta-group .btn--primary,
.btn.btn--hero-cta.btn--primary {
  padding: 1.4375rem 1.4375rem 1.4375rem 2.875rem;
}

.hero__cta-group .btn--ghost {
  padding: 1.4375rem 2.875rem;
}

.hero__cta-group .btn__icon,
.btn.btn--hero-cta .btn__icon {
  width: 52.5px;
  height: 52.5px;
}

.hero__cta-group .btn__icon svg,
.btn.btn--hero-cta .btn__icon svg {
  width: 18px;
  height: 18px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero__scroll-line {
  width: 48px;
  height: 1px;
  background: var(--text-tertiary);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2.5s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {
  0% { left: -100%; }
  50% { left: 100%; }
  50.01% { left: -100%; }
  100% { left: 100%; }
}

/* ==========================================================================
   SCROLL ANNOTATION CARDS
   ========================================================================== */
.sa-card {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

/* Big Numbers */
.sa-card__big-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  opacity: 0.18;
  flex-shrink: 0;
}

/* Card Lines */
.sa-card__line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.25rem;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out-expo) 0.2s;
}

.sa-card.visible .sa-card__line {
  transform: scaleX(1);
}

/* Card Titles */
.sa-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sa-card__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 28ch;
}

/* Card 1: Left-aligned */
.sa-card--left {
  left: clamp(1.5rem, 5vw, 4rem);
  bottom: 8vh;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  transform: translateX(-60px);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}

/* Card 2: Right-aligned */
.sa-card--right {
  right: clamp(1.5rem, 5vw, 4rem);
  top: 15vh;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  text-align: right;
  transform: translateX(60px);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}

.sa-card--right .sa-card__line {
  margin-left: auto;
  transform-origin: right;
}

.sa-card--right .sa-card__desc {
  margin-left: auto;
}

/* Card 3: Centered */
.sa-card--center {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: scale(0.92);
}

.sa-card--center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sa-card__statement {
  position: relative;
  z-index: 1;
}

.sa-card__eyebrow-text {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.sa-card__giant-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.sa-card__giant-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.sa-card__sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card 4: Bottom stats strip */
.sa-card--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.sa-card__stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border);
}

.sa-card__stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.sa-card__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: block;
  line-height: 1.1;
}

.sa-card__stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-top: 0.25rem;
  line-height: 1.35;
}

.sa-card__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.sa-card__stat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scroll progress bar */
.sa-progress {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  z-index: 20;
}

.sa-progress__fill {
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: height 0.1s linear;
}

/* Frame loader */
.frame-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s var(--ease-out-expo);
}

.frame-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.frame-loader__text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.frame-loader__bar {
  width: 160px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.frame-loader__fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.15s linear;
}

/* ==========================================================================
   KINETIC MARQUEE
   ========================================================================== */
.marquee-band {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-band__track {
  display: inline-flex;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-band__item {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Separator: Clique CM mark in place of the red dot.
   The source PNG is dark-on-transparent, so we invert + brighten to render
   it as a soft light mark on the dark band. */
.marquee-band__item::after {
  content: '';
  width: 22px;
  height: 22px;
  background-image: url('../assets/img/cm-logo-circle.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  opacity: 0.55;
  filter: invert(1) brightness(2);
}

@media (min-width: 768px) {
  .marquee-band__item::after { width: 26px; height: 26px; }
}

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

/* ==========================================================================
   SECTION SYSTEM
   ========================================================================== */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* Double-Bezel Image Container */
.about__image-shell {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.about__image-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  pointer-events: none;
}

.about__image-core {
  border-radius: calc(var(--radius-lg) - 0.375rem);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about__image-core img,
.about__image-core video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out-expo);
}

.about__image-shell:hover .about__image-core img,
.about__image-shell:hover .about__image-core video {
  transform: scale(1.04);
}

.about__content h2 { margin-bottom: 2rem; }

.about__content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  max-width: 55ch;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* ==========================================================================
   SERVICES — Work Card Stack (sequential reveal)
   Cards live absolutely centered in the viewport; GSAP slides them in one at
   a time as the user scrolls through the pinned section.
   ========================================================================== */
.work-stage {
  position: relative;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.work-stage__header {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 5;
  padding: clamp(2rem, 5vh, 3.5rem) 0 clamp(0.75rem, 1.5vh, 1rem);
  pointer-events: none;
}
.work-stage__header > * { pointer-events: auto; }

.work-stage__header-row {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.work-stage__title {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 720px;
}

.work-stage__caption {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

/* Cards wrapper. Despite the legacy "grid" classname, this is now just a
   block container that holds the absolutely-positioned cards. */
.work-stage__grid {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  gap: 0;
  grid-template-columns: none;
  grid-template-rows: none;
}

.work-stage__progress {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2px;
  height: 80px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
}

.work-stage__progress-fill {
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Card shell --- */
.work-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(320px, 36vw, 540px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  will-change: transform;
  pointer-events: auto;
  cursor: pointer;
  transform-origin: center;
  isolation: isolate;
}

/* Image layers (B&W base + color reveal) fill the card */
.work-card__bw,
.work-card__color {
  position: absolute;
  inset: 0;
  display: block;
}

.work-card__bw img,
.work-card__color img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card__bw img {
  filter: grayscale(1) contrast(1.04) brightness(0.92);
  transition: transform 1.6s var(--ease-out-expo);
}

.work-card__color {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out-expo);
  z-index: 1;
}

.work-card__color img {
  transition: transform 1.6s var(--ease-out-expo);
}

.work-card:hover .work-card__color {
  opacity: 1;
}

.work-card:hover .work-card__bw img,
.work-card:hover .work-card__color img {
  transform: scale(1.04);
}

/* Vignette so meta text stays legible on top of any image */
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s var(--ease-out-expo);
}

/* --- Meta (always visible) --- */
.work-card__meta {
  position: absolute;
  left: clamp(1.25rem, 2vw, 2rem);
  right: clamp(1.25rem, 2vw, 2rem);
  bottom: clamp(1.25rem, 2vw, 2rem);
  z-index: 3;
  color: var(--text-primary);
  transition: transform 0.55s var(--ease-spring), opacity 0.4s var(--ease-spring);
}

.work-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 2.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.work-card__desc {
  font-size: clamp(1.0625rem, 1.15vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 46ch;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Back face (slides up on hover) --- */
.work-card__back {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.92) 100%);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-spring), transform 0.5s var(--ease-spring);
  pointer-events: none;
}

.work-card:hover .work-card__back {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.work-card:hover .work-card__meta {
  opacity: 0;
  transform: translateY(-12px);
}

.work-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--text-primary);
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.work-card__list li::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.work-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.4s var(--ease-spring), transform 0.4s var(--ease-spring);
}

.work-card__cta svg {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 5px;
  box-sizing: content-box;
}

.work-card__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}


/* ==========================================================================
   CLIENT MARQUEE
   ========================================================================== */
.clients-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 4rem 0;
}

.clients-marquee__track {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  animation: marqueeScroll 40s linear infinite;
}

.clients-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.5s var(--ease-spring);
}

.clients-marquee__item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.clients-marquee__item img {
  max-height: 56px;
  max-width: 56px;
  object-fit: contain;
  border-radius: 6px;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item { text-align: left; }

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 1rem;
  color: var(--text-tertiary);
  letter-spacing: 0.035em;
  line-height: 1.45;
}

/* ==========================================================================
   TESTIMONIALS MARQUEE
   ========================================================================== */
.testimonial-marquee-mask {
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonial-marquee-row {
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid white;
}

.testimonial-marquee-track {
  display: inline-flex;
  align-items: stretch;
  will-change: transform;
  animation: testimonialScroll var(--marquee-speed, 45s) linear infinite;
}

.testimonial-card {
  width: min(88vw, 380px);
  white-space: normal;
}

@media (min-width: 768px) {
  .testimonial-card { width: 420px; }
}

.testimonial-marquee-row:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

/* Industry eyebrow at top of each testimonial — replaces placeholder client logo */
.testimonial-card__industry {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

/* Industry icon chip — replaces headshot in attribution row */
.testimonial-card__icon-chip {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-muted);
  color: var(--accent);
  border: 1px solid rgba(173, 45, 45, 0.28);
}

.testimonial-card__icon-chip svg {
  width: 22px;
  height: 22px;
  display: block;
}

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

/* ==========================================================================
   CTA BREAK
   ========================================================================== */
.cta-break h2 { margin-bottom: 1.25rem; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2rem;
}

/* Double-Bezel Blog Card */
.blog-card-shell {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  transition: all 0.6s var(--ease-spring);
}

.blog-card-shell:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.blog-card-core {
  background: var(--bg-elevated);
  border-radius: calc(var(--radius-lg) - 0.375rem);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.blog-card-shell:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__body { padding: 1.75rem; }

.blog-card__date {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.blog-card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.4s var(--ease-spring);
  letter-spacing: -0.01em;
}

.blog-card-shell:hover .blog-card__body h3 { color: var(--accent); }

.blog-card__body p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card--placeholder {
  opacity: 0.35;
  pointer-events: none;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 7rem);
}

.contact__info h2 { margin-bottom: 1.5rem; }

.contact__info h2 em {
  font-family: var(--font-hero-emphasis);
  font-style: normal;
  color: var(--accent);
}

.contact__info p {
  color: var(--text-secondary);
  max-width: 40ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2.5rem;
  transition: opacity 0.4s var(--ease-spring);
}

.contact__email:hover { opacity: 0.7; }
.contact__email svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact__email-stack .contact__email {
  margin-bottom: 0;
}

.contact__social-link svg { width: 22px; height: 22px; }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.5rem; }

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

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.875rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  outline: none;
  transition: border-color 0.5s var(--ease-spring);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.form__textarea { min-height: 100px; resize: vertical; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1.5313rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: all 0.5s var(--ease-spring);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--text-primary);
  padding: 1.5313rem 1.5313rem 1.5313rem 3.0625rem;
}

.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn--primary:active { transform: scale(0.97); }

.btn__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-spring);
  flex-shrink: 0;
}

.btn:hover .btn__icon {
  transform: translateX(3px);
  background: rgba(255,255,255,0.25);
}

.btn__icon svg { width: 24px; height: 24px; }

.btn--ghost {
  color: var(--text-secondary);
  padding: 1.5313rem 3.0625rem;
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer__quote { max-width: 420px; }

.footer__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer__quote cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  opacity: 0.5;
  display: block;
  margin-top: 0.5rem;
}

/* ==========================================================================
   SCROLL REVEAL — Initial States
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(4px);
  will-change: transform, opacity, filter;
}

/* ==========================================================================
   RESPONSIVE — Mobile First Overrides
   ==========================================================================
   Desktop sizes (eyebrows, nav CTA, .btn, hero CTAs) were intentionally
   scaled up for visual prominence. The breakpoints below scale them back
   proportionally so they don't overflow narrower viewports. */
@media (max-width: 1024px) {
  :root { --section-gap: clamp(4rem, 8vh, 6rem); }
  .hero-scroll { height: 650vh; }
  .about__layout { grid-template-columns: 1fr; gap: 3rem; }
  .about__content { padding-top: 0; }
  .blog__grid { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }

  /* Tablet — slight scale-down on the bumped CTAs/badges */
  .eyebrow {
    font-size: 0.9375rem;
    letter-spacing: 0.22em;
    padding: 0.5625rem 1.5rem;
  }
  .btn { font-size: 1.25rem; gap: 0.875rem; }
  .btn--primary { padding: 1.25rem 1.25rem 1.25rem 2.5rem; }
  .btn--ghost { padding: 1.25rem 2.5rem; }
  .btn__icon { width: 48px; height: 48px; }
  .btn__icon svg { width: 20px; height: 20px; }
  .nav__cta {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem 0.625rem 1.5rem;
  }
  .nav__cta-icon { width: 42px; height: 42px; }
  .nav__cta-icon svg { width: 18px; height: 18px; }
  .hero-scroll__text .eyebrow { font-size: calc(0.9375rem * 0.8); }
  .hero__cta-group .btn,
  .btn.btn--hero-cta { font-size: 1.125rem; }
  .hero__cta-group .btn--primary,
  .btn.btn--hero-cta.btn--primary { padding: 1.125rem 1.125rem 1.125rem 2.25rem; }
  .hero__cta-group .btn--ghost { padding: 1.125rem 2.25rem; }
  .hero__cta-group .btn__icon,
  .btn.btn--hero-cta .btn__icon { width: 43.5px; height: 43.5px; }
  .hero__cta-group .btn__icon svg,
  .btn.btn--hero-cta .btn__icon svg { width: 15px; height: 15px; }

  /* --- Work Stage: drop the pin/scrub on tablet/mobile,
        fall back to a simple 1-col stacked feed --- */
  .work-stage {
    height: auto;
    overflow: visible;
    padding: 0 0 clamp(2rem, 5vh, 3rem);
  }
  .work-stage__header {
    position: relative;
    padding: clamp(2rem, 6vh, 4rem) 0 clamp(1rem, 3vh, 2rem);
  }
  .work-stage__grid {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
  }
  .work-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    transform: none !important;
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
  .work-card .work-card__color { opacity: 1; }
  .work-card.is-active .work-card__back { opacity: 1; transform: translateY(0); }
  .work-card.is-active .work-card__meta { opacity: 0; transform: translateY(-12px); }
  .work-stage__progress { display: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 5rem; }
  .hero-scroll__text {
    max-width: 100%;
    left: 1.25rem;
    right: 1.25rem;
    top: 38%;
  }
  .hero-scroll__text h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: 1rem;
  }
  .hero__sub {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 30ch;
  }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 2rem; text-align: center; }
  .footer__quote { text-align: center; }

  /* Eyebrow pill — drop size, allow wrapping for long copy */
  .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    padding: 0.5rem 1.125rem;
    line-height: 1.45;
    text-align: center;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .hero-scroll__text .eyebrow { font-size: calc(0.75rem * 0.8); }

  /* General buttons (Send Message, Start a Conversation, etc.) */
  .btn { font-size: 1rem; gap: 0.625rem; }
  .btn--primary { padding: 0.9375rem 0.9375rem 0.9375rem 1.875rem; }
  .btn--ghost { padding: 0.9375rem 1.875rem; }
  .btn__icon { width: 40px; height: 40px; }
  .btn__icon svg { width: 18px; height: 18px; }

  /* Nav CTA must fit alongside logo + hamburger on small screens */
  .nav { padding: 0.5rem 0.5rem 0.5rem 1.125rem; gap: 0.5rem; }
  .nav__cta {
    font-size: 0.875rem;
    padding: 0.5rem 0.5rem 0.5rem 1.125rem;
    gap: 0.5rem;
  }
  .nav__cta-icon { width: 34px; height: 34px; }
  .nav__cta-icon svg { width: 14px; height: 14px; }

  /* Hero CTAs — stacked, sized to be tappable but not overflow */
  .hero__cta-group { flex-direction: column; align-items: flex-start; }
  .hero__cta-group .btn,
  .btn.btn--hero-cta { font-size: 0.796875rem; }
  .hero__cta-group .btn--primary,
  .btn.btn--hero-cta.btn--primary {
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  }
  .hero__cta-group .btn--ghost {
    padding: 0.75rem 1.5rem;
  }
  .hero__cta-group .btn__icon,
  .btn.btn--hero-cta .btn__icon {
    width: 33px;
    height: 33px;
  }
  .hero__cta-group .btn__icon svg,
  .btn.btn--hero-cta .btn__icon svg { width: 13.5px; height: 13.5px; }
  .hero__scroll-hint { display: none; }
  .hero-scroll { height: 550vh; }

  /* Annotation cards mobile */
  .sa-card--left,
  .sa-card--right {
    flex-direction: column;
    gap: 0.75rem;
    left: 1.25rem;
    right: 1.25rem;
  }
  .sa-card--left { bottom: 4vh; }
  .sa-card--right { top: auto; bottom: 4vh; text-align: left; }
  .sa-card--right .sa-card__line { margin-left: 0; transform-origin: left; }
  .sa-card--right .sa-card__desc { margin-left: 0; }
  .sa-card__big-number { font-size: 3.5rem; }
  .sa-card__title { font-size: 1.5rem; }
  .sa-card__desc { font-size: 0.875rem; max-width: 24ch; line-height: 1.65; }
  .sa-card__giant-text { font-size: clamp(2rem, 9vw, 3rem); }
  .sa-card__sub { font-size: 0.9375rem; line-height: 1.65; }
  .sa-card__eyebrow-text { font-size: 0.875rem; letter-spacing: 0.16em; }
  .sa-card__stat-strip { flex-wrap: wrap; gap: 0; padding: 1.25rem 1.25rem; }
  .sa-card__stat-item { flex: 0 0 33.33%; padding: 0.5rem; }
  .sa-card__stat-divider { display: none; }
  .sa-card__stat-cta { flex: 0 0 100%; margin-top: 0.5rem; }
  .sa-progress { display: none; }

  /* Services section: tighten header so the eyebrow + title sit higher and
     guarantee clear breathing room before the first card image. The previous
     vh-based padding ballooned on tall phones; we also force an explicit gap
     between the header and the grid so the soft card shadow + tall card
     aspect-ratio can't optically crowd the title. */
  .work-stage__header {
    padding: 0.75rem 0 4rem;
    position: relative;
    z-index: 2;
  }
  .work-stage__title {
    margin-bottom: 0.75rem;
  }
  .work-stage__grid {
    padding-top: 1.25rem;
  }
}

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

  /* Tighter scaling for narrow phones */
  .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    padding: 0.4375rem 1rem;
  }
  .btn { font-size: 0.9375rem; }
  .btn--primary { padding: 0.875rem 0.875rem 0.875rem 1.625rem; }
  .btn--ghost { padding: 0.875rem 1.625rem; }
  .btn__icon { width: 36px; height: 36px; }
  .btn__icon svg { width: 16px; height: 16px; }
  .nav__cta { font-size: 0.8125rem; padding: 0.4375rem 0.4375rem 0.4375rem 1rem; }
  .nav__cta-icon { width: 32px; height: 32px; }
  .hero-scroll__text .eyebrow { font-size: calc(0.6875rem * 0.8); }
  .hero__cta-group .btn,
  .btn.btn--hero-cta { font-size: 0.75rem; }
  .hero__cta-group .btn--primary,
  .btn.btn--hero-cta.btn--primary { padding: 0.703125rem 0.703125rem 0.703125rem 1.40625rem; }
  .hero__cta-group .btn--ghost { padding: 0.703125rem 1.40625rem; }
  .hero__cta-group .btn__icon,
  .btn.btn--hero-cta .btn__icon { width: 30px; height: 30px; }
  .hero__cta-group .btn__icon svg,
  .btn.btn--hero-cta .btn__icon svg { width: 12px; height: 12px; }
}

/* ==========================================================================
   PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee-band__track,
  .clients-marquee__track,
  .testimonial-marquee-track { animation: none; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; filter: none;
  }
  /* Work stage: skip the pin/scrub experience entirely; render cards as a
     simple vertical stack (mirrors the mobile fallback). */
  .work-stage { height: auto; overflow: visible; }
  .work-stage__header { position: relative; }
  .work-stage__grid {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 clamp(1.25rem, 5vw, 3rem) clamp(2rem, 5vh, 3rem);
  }
  .work-stage .work-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .work-stage .work-card__color { opacity: 1; }
}