/* ═══════════════════════════════════════════════════════════
   PIXELSHAKE v2 — CasualFilms-inspired editorial dark design
   Barlow Condensed 700/800 · Roboto 300/400/500
   Palette: harmonisée logo Pixelshake (bleu royal · cyan · charcoal)
═══════════════════════════════════════════════════════════ */

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

/* ─── Tokens ─── */
:root {
  /* Dark backgrounds — charcoal neutre (comme le texte du logo) */
  --bg:       #0C0C10;
  --bg2:      #111117;
  --surface:  #16161E;
  --text:     #EDEDF2;
  --muted:    #6B6B82;
  --dim:      #24242E;

  /* Accent — bleu royal du logo (#4169DE) + variation lumineuse */
  --accent:   #4169DE;
  --accent2:  #6A8FFF;

  /* Cyan du logo (dot du "i") — 2e accent */
  --cyan:     #1BB6E0;

  --white:    #F5F5FA;
  --ink:      #08080C;

  /* Light section — gris neutre (fonds blancs du logo) */
  --light-bg:   #F2F2F5;
  --light-text: #111117;
  --light-muted:#5A5A70;
  --light-dim:  #CECED8;

  --font-d: 'Barlow Condensed', system-ui, sans-serif;
  --font-b: 'Roboto', system-ui, sans-serif;

  --max: 1400px;
  --ph: 64px;
  --pv: 120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── Accessibility ─── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--accent); color: var(--ink);
  padding: .5rem 1rem; font-weight: 500; z-index: 9999;
}
.skip-link:focus { top: 1rem; }
.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;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ─── Shared labels ─── */
.section-label {
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1.5rem;
}
.section-label--dark { color: var(--light-muted); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  min-height: 44px;
  border: 2px solid var(--accent);
  transition: background .25s, color .25s, border-color .25s;
}
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-primary--lg { padding: 1.1rem 3rem; font-size: 1rem; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  min-height: 44px;
  border: 2px solid var(--white);
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--text); }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  min-height: 44px;
  border: 2px solid var(--ink);
  transition: background .25s;
}
.btn-dark:hover { background: #000; border-color: #000; }

/* ─── Focus ─── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ════════════════════════════════════════
   CURSOR
════════════════════════════════════════ */
#cur, #ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  will-change: left, top;
}
#cur {
  width: 8px; height: 8px;
  background: var(--accent);
  translate: -50% -50%;
  transition: transform .15s var(--ease), opacity .2s;
}
#ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(79,110,247,.4);
  translate: -50% -50%;
  transition: width .3s var(--ease), height .3s var(--ease), border-color .2s;
}
body.hovering #cur { transform: scale(0); }
body.hovering #ring { width: 56px; height: 56px; border-color: rgba(79,110,247,.65); }
@media (hover:none) { #cur, #ring { display: none; } }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(15,14,12,.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform .4s var(--ease), border-color .3s;
}
#nav.scrolled { border-color: var(--dim); }
#nav.hidden   { transform: translateY(-100%); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--ph);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo, .footer-logo {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--text);
  flex-shrink: 0;
}
.logo em, .footer-logo em { color: var(--accent); font-style: normal; }

/* Logo image — version blanche sur fond sombre, transparence RGBA */
.logo-img-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.logo-img-link:hover { opacity: .8; }
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-right: auto;
}
.nav-links a {
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--text);
  padding: .55rem 1.4rem;
  border: 1px solid var(--dim);
  min-height: 36px;
  /* Largeur fixe = texte le plus long (FR) — empêche le layout shift au changement de langue */
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  transition: border-color .2s, color .2s, background .2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Language switcher ─── */
.lang-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .3rem .5rem;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(65,105,222,.08);
}
.lang-switch--mob {
  margin-top: 1.5rem;
  gap: 6px;
}
.lang-switch--mob .lang-btn {
  font-size: 1rem;
  padding: .5rem .9rem;
  border-color: var(--dim);
}
.lang-switch--mob .lang-btn.active {
  color: var(--accent);
  border-color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
  min-width: 44px; min-height: 44px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform .3s, opacity .3s, width .3s;
}

/* Mobile overlay */
.mob {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.mob[hidden] { display: none !important; }
#mob-close {
  position: absolute; top: 1.5rem; right: var(--ph);
  background: none; border: none;
  color: var(--muted); font-size: 1.3rem;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
#mob-close:hover { color: var(--text); }
.mob-link {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.5rem);
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: -.02em;
  transition: color .2s;
}
.mob-link:hover { color: var(--text); }
.mob-link--gold { color: var(--accent); }

/* ════════════════════════════════════════
   01 — HERO
════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--pv);
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  background: var(--bg);
  overflow: hidden;
}

/* ─── Vimeo background video ─── */
.hero-video-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-iframe {
  position: absolute;
  top: 50%; left: 50%;
  /* Couvre tout en conservant le ratio 16:9 */
  width: 177.78vh;   /* = 100vh × (16/9) */
  min-width: 100%;
  height: 56.25vw;   /* = 100vw × (9/16) */
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Subtle gradient texture instead of solid black */
.hero-media::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(79,110,247,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(79,110,247,.03) 0%, transparent 50%);
}
.hero-media__overlay {
  position: absolute; inset: 0;
  /* Assombri pour lisibilité du texte sur la vidéo */
  background: linear-gradient(to bottom,
    rgba(12,12,16,.55) 0%,
    rgba(12,12,16,.25) 40%,
    rgba(12,12,16,.75) 100%);
  z-index: 1;
}
/* Film grain noise overlay */
.hero-media__noise {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--ph);
  padding-top: 68px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.hero-h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 2.5rem;
}
.hero-h1 span { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Showreel play button ─── */
.btn-showreel {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: rgba(237,237,242,.65);
  transition: color .2s;
}
.btn-showreel:hover { color: var(--white); }
.btn-showreel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(237,237,242,.3);
  border-radius: 50%;
  font-size: .65rem;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.btn-showreel:hover .btn-showreel__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--ph);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero-scroll__line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--dim), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════
   02 — CLIENTS
════════════════════════════════════════ */
#clients {
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
  padding: 3rem var(--ph);
}
.clients-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.clients-label {
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.client-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(.85rem, 1.3vw, 1.1rem);
  letter-spacing: .12em;
  color: rgba(237,237,242,.35);
  transition: color .3s;
  white-space: nowrap;
}
.client-name:hover { color: rgba(237,237,242,.75); }

/* ════════════════════════════════════════
   03 — BIG CLAIM
════════════════════════════════════════ */
#claim {
  padding: var(--pv) var(--ph);
  border-bottom: 1px solid var(--dim);
}
.claim-inner {
  max-width: var(--max);
  margin: 0 auto;
  max-width: 900px;
}
.claim-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.claim-body {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ════════════════════════════════════════
   04 — PILLARS  (3 colonnes like CasualFilms)
════════════════════════════════════════ */
#pillars {
  border-bottom: 1px solid var(--dim);
}
.pillars-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 4rem var(--ph) 4rem;
  border-right: 1px solid var(--dim);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background .3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(79,110,247,.04); }

.pillar-num {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--accent);
}
.pillar-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--text);
}
.pillar-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}
.pillar-cta {
  font-family: var(--font-b);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--accent);
  transition: letter-spacing .2s;
  display: inline-block;
  align-self: flex-start;
}
.pillar-cta:hover { letter-spacing: .14em; }

/* ════════════════════════════════════════
   05 — STATS BAND
════════════════════════════════════════ */
#stats {
  border-bottom: 1px solid var(--dim);
  background: var(--surface);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem var(--ph);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: .1em;
}
.stat-suf { font-size: .6em; color: var(--accent); }
.stat-lbl {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--dim);
  flex-shrink: 0;
  margin: 0 3rem;
}

/* ════════════════════════════════════════
   06 — VIDÉOS
════════════════════════════════════════ */
/* Videos — intégrées dans section-light (#work) */
.videos-head {
  margin-top: 6rem;
  margin-bottom: 3rem;
  padding-top: 4rem;
  border-top: 1px solid var(--light-dim);
}
.videos-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--light-text);
}
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--light-dim);
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card__title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--light-text);
  margin-bottom: .3rem;
}
.video-card__sub {
  font-size: .85rem;
  color: var(--light-muted);
  letter-spacing: .03em;
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; gap: 2rem; }
  .videos-head { margin-top: 4rem; padding-top: 3rem; }
}

/* ════════════════════════════════════════
   07 — WORK GRID  (light section)
════════════════════════════════════════ */
.section-light { background: var(--light-bg); color: var(--light-text); }
.section-light .section-label { color: var(--light-muted); }
.section-light .reveal { color: var(--light-text); }

#work {
  padding: var(--pv) var(--ph);
}
.work-inner { max-width: var(--max); margin: 0 auto; }
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.work-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--light-text);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.work-card { background: var(--light-bg); }
.work-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-dim);
}
.work-card__img img {
  transition: transform .6s var(--ease);
}
.work-card:hover .work-card__img img {
  transform: scale(1.04);
}
.work-card__overlay {
  position: absolute; inset: 0;
  background: rgba(15,14,12,.0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background .3s;
}
.work-card:hover .work-card__overlay { background: rgba(15,14,12,.35); }
.work-card__tag {
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: .3rem .7rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.work-card:hover .work-card__tag { opacity: 1; transform: none; }

.work-card__title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--light-text);
  padding: 1.1rem 0 .3rem;
}
.work-card__sub {
  font-size: .95rem;
  color: var(--light-muted);
  letter-spacing: .03em;
}

/* ════════════════════════════════════════
   07 — SERVICES LIST
════════════════════════════════════════ */
#services {
  padding: var(--pv) var(--ph);
  border-top: 1px solid var(--dim);
}
.services-inner { max-width: var(--max); margin: 0 auto; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.svc-list { border-top: 1px solid var(--dim); }
.svc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--dim);
  transition: padding-left .3s var(--ease);
}
.svc-item:hover { padding-left: 12px; }
.svc-item:hover .svc-title { color: var(--accent); }

.svc-left { display: flex; align-items: center; gap: 2.5rem; }
.svc-n {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: .88rem;
  color: var(--dim);
  flex-shrink: 0;
}
.svc-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text);
  transition: color .25s;
}
.svc-desc {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}
.svc-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--dim);
  padding: .4rem .85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   08 — PROCESS  (light)
════════════════════════════════════════ */
#process { padding: var(--pv) var(--ph); }
.process-inner { max-width: var(--max); margin: 0 auto; }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.process-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--light-text);
}
.process-intro {
  font-size: 1.05rem;
  color: var(--light-muted);
  line-height: 1.8;
  max-width: 440px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--light-dim);
  margin-bottom: 2.5rem;
}
.pstep {
  background: var(--light-bg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background .25s;
}
.pstep::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--light-dim);
  transition: background .25s;
}
.pstep:hover { background: #EAE7DF; }
.pstep:hover::after { background: var(--accent); }

.pstep-num {
  display: block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 3rem;
  color: var(--light-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .25s;
}
.pstep:hover .pstep-num { color: rgba(79,110,247,.5); }
.pstep-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--light-text);
  margin-bottom: .75rem;
}
.pstep-body {
  font-size: 1rem;
  color: var(--light-muted);
  line-height: 1.75;
}

.process-note {
  border-left: 2px solid var(--accent);
  padding: 1.25rem 1.75rem;
  background: rgba(79,110,247,.06);
}
.process-note p {
  font-size: 1rem;
  color: var(--light-muted);
  line-height: 1.75;
}
.process-note strong { color: var(--light-text); font-weight: 500; }

/* ════════════════════════════════════════
   09 — ABOUT
════════════════════════════════════════ */
#about {
  padding: var(--pv) var(--ph);
  border-top: 1px solid var(--dim);
  overflow: hidden;
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 4.5rem);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.about-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 1.5rem;
}
.about-sig {
  font-size: .9rem;
  color: var(--dim);
  letter-spacing: .05em;
  margin-top: 2rem;
}
.about-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}
.about-img-wrap img { transition: transform .8s var(--ease); }
.about-img-wrap:hover img { transform: scale(1.03); }

/* ════════════════════════════════════════
   10 — CONTACT CTA
════════════════════════════════════════ */
#contact {
  padding: var(--pv) var(--ph);
  border-top: 1px solid var(--dim);
  text-align: center;
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.contact-eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2rem;
}
.contact-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 9rem);
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3.5rem;
}
.contact-h2 span { color: var(--accent); }

.contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact-details {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .03em;
}
a.contact-details span:first-child:hover { color: var(--text); }
.contact-sep { color: var(--dim); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--dim);
  padding: 1.5rem var(--ph);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copy, .footer-loc {
  font-size: .88rem;
  color: var(--dim);
  letter-spacing: .05em;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --ph: 40px; --pv: 96px; }
  .pillars-inner { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--dim); }
  .pillar:last-child { border-bottom: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --ph: 24px; --pv: 72px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  /* Hero */
  #hero { align-items: flex-end; padding-bottom: 4rem; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-scroll { display: none; }

  /* Clients */
  .clients-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .clients-logos { gap: 1.5rem; }

  /* Claim */
  .claim-h2 { font-size: clamp(2.2rem, 9vw, 4rem); }

  /* Work */
  .work-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .work-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Services */
  .services-head { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .svc-item { grid-template-columns: 1fr; gap: 1rem; }
  .svc-tag { display: none; }
  .svc-left { flex-direction: row; }

  /* Process */
  .process-head { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { aspect-ratio: 4/3; }

  /* Stats */
  .stats-inner { flex-wrap: wrap; gap: 2rem; }
  .stat-sep { display: none; }
  .stat { flex: 1 1 40%; }

  /* Contact */
  .contact-h2 { font-size: clamp(2.5rem, 10vw, 5rem); }
  .contact-details { flex-direction: column; gap: .75rem; }
  .contact-sep { display: none; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: .5rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .process-steps { grid-template-columns: 1fr; }
  .work-grid { gap: 1px; }
}
