/* ============================================================
   CREATIVE BANJARA® — styles
   Brutalist editorial · sharp corners · 12-col grid · bold ink
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* palette */
  --bone:   #EFE9DF;
  --ink:    #15120D;
  --ver:    #E57A73;
  --ver-gradient: linear-gradient(
  90deg,
  #FFA726 0%,
  #FF7043 30%,
  #FF5252 65%,
  #EC407A 100%
);
  --cobalt: #2A3CFF;
  --acid:   #D6F94A;
  --mag:    #F1309B;
  --forest: #0E5A36;
  --amber:  #FFAE2E;

  --line:   rgba(21, 18, 13, .22);
  --line-l: rgba(239, 233, 223, .22);

  /* grid */
  --cols: 12;
  --margin: clamp(16px, 2.5vw, 44px);
  --gutter: clamp(12px, 1.25vw, 24px);

  /* type */
  --font-d: "Archivo", "Arial Black", sans-serif;
  --font-m: "Fragment Mono", "Courier New", monospace;

  /* rhythm (8px scale) */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s6: 48px; --s8: 64px; --s12: 96px; --s16: 128px;

  --sec-pad: clamp(96px, 14vh, 168px);

  /* z-scale */
  --z-nav: 900;
  --z-head: 1000;
  --z-grain: 1300;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0 !important; }

/* Lenis recommended */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* themed native scrollbar — bone track, vermilion thumb, sharp corners */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bone); border-left: 1px solid var(--line); }
::-webkit-scrollbar-thumb {
  background: var(--ver-gradient);
  border: 2px solid var(--bone);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--ink); }
::-webkit-scrollbar-corner { background: var(--bone); }
/* Firefox (no ::-webkit-scrollbar support) */
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-color: var(--ver) var(--bone); scrollbar-width: thin; }
}

body {
  font-family: var(--font-d);
  font-size: 16px;
  line-height: 1.5; /* default rhythm for --font-d everywhere */
  background: var(--bone);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* form controls don't inherit line-height from body — keep them on the same default */
input, textarea, select, button { line-height: 1.5; }

::selection { background: var(--ver); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, li { list-style: none; }
address { font-style: normal; }
sup { font-size: .45em; }

:focus-visible { outline: 2px solid var(--ver); outline-offset: 3px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* JS-revealed text: hidden until SplitText takes over */
.js [data-split], .js [data-reveal] { visibility: hidden; }

.mono {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.u-line { position: relative; }
.u-line::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right center;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
}
.u-line:hover::after { transform: scaleX(1); transform-origin: left center; }

/* visually hidden, still read by assistive tech + search engines */
.u-vh {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---------- 3. GRID OVERLAY + GRAIN ---------- */
.grid-overlay {
  position: fixed; inset: 0; z-index: 800; /* above content, below header/nav */
  display: grid; grid-template-columns: repeat(var(--cols), 1fr);
  column-gap: var(--gutter); padding-inline: var(--margin);
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.grid-overlay.is-on { opacity: 1; }
.grid-overlay i { border-inline: 1px solid rgba(255, 74, 23, .14); }

.grain {
  position: fixed; inset: -50%; z-index: var(--z-grain);
  pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-5%, -2%); }
  80% { transform: translate(4%, 4%); }
}

/* ---------- 3b. PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column;
  padding: var(--s3) var(--margin) 0;
  clip-path: inset(0 0 0% 0); /* explicit start state for the exit wipe */
}
.preloader__brand { opacity: .75; }

.preloader__countwrap {
  margin-top: auto; align-self: flex-end;
  overflow: clip;
  height: 1em;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(120px, 28vh, 340px);
  line-height: 1;
  letter-spacing: -.02em;
}
.preloader__count { display: flex; flex-direction: column; }
.preloader__count span { display: block; height: 1em; line-height: 1; text-align: right; }
.preloader__count span:last-child {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.preloader__bar {
  margin-top: clamp(16px, 4vh, 40px);
  margin-inline: calc(var(--margin) * -1);
  height: 3px; background: rgba(239, 233, 223, .15);
}
.preloader__bar i {
  display: block; height: 100%; background: var(--ver-gradient);
  transform: scaleX(0); transform-origin: left center;
}

/* ---------- 4. HEADER ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-head);
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3) var(--margin);
  pointer-events: none;
  transition: transform .55s cubic-bezier(.9, 0, .1, 1);
  will-change: transform;
}
.site-head > * { pointer-events: auto; }
/* scroll-down tucks the header up out of view; scroll-up brings it back */
.site-head.is-hidden { transform: translateY(-115%); }

.logo { display: inline-flex; align-items: center; }
.logo__img {
  display: block; height: clamp(30px, 3.4vw, 42px); width: auto;
  /* soft bone halo keeps the dark wordmark readable on ink sections */
  filter: drop-shadow(0 0 10px rgba(239, 233, 223, .55));
  transition: filter .4s ease;
}
/* over the dark hero (or the open nav) the wordmark flips to a bone silhouette */
body.on-dark .logo__img,
body.nav-open .logo__img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, .4));
}

.menu-btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 8px 2px; min-height: 44px;
  color: var(--ink);
  transition: color .4s ease;
}
/* the fullnav overlay is ink — flip the button to bone while it's open */
/* flip the button to bone over the dark hero, and while the nav is open */
body.on-dark .menu-btn,
body.nav-open .menu-btn { color: var(--bone); }
.menu-btn__label {
  position: relative; overflow: clip; height: 14px;
  font-family: var(--font-m); font-size: 11px; letter-spacing: .1em;
}
.menu-btn__lbl { display: block; line-height: 14px; transition: transform .45s cubic-bezier(.77, 0, .18, 1); }
.menu-btn__lbl--close { position: absolute; inset: 0; transform: translateY(110%); }
body.nav-open .menu-btn__lbl--menu { transform: translateY(-110%); }
body.nav-open .menu-btn__lbl--close { transform: translateY(0); }

.menu-btn__icon { position: relative; width: 26px; height: 12px; display: block; }
.menu-btn__icon i {
  position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1), top .45s cubic-bezier(.77, 0, .18, 1);
}
.menu-btn__icon i:nth-child(1) { top: 0; }
.menu-btn__icon i:nth-child(2) { top: 10px; }
body.nav-open .menu-btn__icon i:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.nav-open .menu-btn__icon i:nth-child(2) { top: 5px; transform: rotate(-45deg); }

/* ---------- 6. FULL PAGE NAVIGATION ---------- */
.fullnav {
  position: fixed; top: 0; left: 0; width: 100%;
  height: 100vh; height: 100dvh; /* dvh tracks mobile browser chrome */
  z-index: var(--z-nav);
  background: var(--ink); color: var(--bone);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  overflow-y: auto; overflow-x: clip;
  /* safety scroll only — never show a bar */
  scrollbar-width: none; -ms-overflow-style: none;
}
.fullnav::-webkit-scrollbar { width: 0; height: 0; display: none; }

.fullnav__inner {
  display: grid; grid-template-columns: repeat(var(--cols), 1fr);
  column-gap: var(--gutter);
  min-height: 100%;
  padding: clamp(80px, 11vh, 116px) var(--margin)
           calc(clamp(20px, 3.5vh, 40px) + env(safe-area-inset-bottom, 0px));
}

.fullnav__tag {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: clamp(14px, 2.4vh, 28px);
}

.fullnav__links {
  grid-column: 1 / span 6;
  display: flex; flex-direction: column; /* tag + list pinned to top, aligned with the form column */
}
.fullnav__meta { margin-top: auto; padding-top: var(--s6); }
.fullnav__meta a { overflow-wrap: anywhere; }
.fullnav__list li { overflow: clip; border-bottom: 1px solid var(--line-l); }
.fullnav__link {
  display: flex; align-items: baseline; gap: var(--s3);
  padding: clamp(8px, 1.3vh, 14px) 0;
  transition: padding-left .45s cubic-bezier(.77, 0, .18, 1);
}
.fullnav__num {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fullnav__word {
  font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  font-size: clamp(28px, 4.6vh, 54px); line-height: 1;
  transition: color .3s;
}
.fullnav__link:hover { padding-left: var(--s3); }
.fullnav__link:hover .fullnav__word {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.fullnav__meta { display: flex; flex-direction: column; gap: var(--s2); }
.fullnav__socials { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s3); }

.fullnav__form { grid-column: 8 / span 5; }

.contact-form { display: flex; flex-direction: column; gap: clamp(14px, 2.2vh, 26px); }

/* honeypot — visually & functionally hidden from humans, visible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field__legend { color: rgba(239, 233, 223, .55); }
.field input, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-l);
  color: var(--bone); font-family: var(--font-d); font-size: 16px;
  padding: 8px 0; min-height: 42px; resize: vertical;
  transition: border-color .3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(239, 233, 223, .3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ver); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s1); }
.chip {
  border: 1px solid var(--line-l); padding: 8px 12px;
  transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--bone); }
.chip.is-on { background: var(--ver-gradient); border-color: var(--ver); color: var(--ink); }

.form-status { color: var(--acid); min-height: 1em; }

/* ---------- 7. BUTTONS ---------- */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px; min-height: 48px;
  background: var(--ink); color: var(--bone);
  font-family: var(--font-m); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  overflow: clip;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ver-gradient);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
}
.btn:hover::before { transform: translateY(0); }
.btn { transition: color .3s .05s; }
.btn:hover { color: var(--ink); }

/* label swap: static clip box, inner text slides up, ::after copy takes its place */
.btn__label { display: block; overflow: clip; }
.btn__txt {
  position: relative; display: block; line-height: 1.4;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
}
.btn__txt::after {
  content: attr(data-txt); position: absolute; inset: 0;
  line-height: 1.4; transform: translateY(110%);
}
.btn:hover .btn__txt { transform: translateY(-110%); }

.btn__ico { transition: transform .45s cubic-bezier(.77, 0, .18, 1); }
.btn:hover .btn__ico { transform: rotate(45deg); }

.btn--light { background: var(--bone); color: var(--ink); align-self: flex-start; }
.btn--light::before { background: var(--ver-gradient); }
.btn--light:hover { color: var(--ink); }

.btn--xl { padding: 26px 44px; font-size: 14px; background: var(--ink); color: var(--bone); }
.btn--xl::before { background: var(--bone); }
.btn--xl:hover { color: var(--ink); }

/* ---------- 8. LAYOUT HELPERS ---------- */
.section { padding: var(--sec-pad) var(--margin); position: relative; z-index: 2; }

.section-head {
  display: flex; align-items: center; gap: var(--s3);
  margin-bottom: clamp(48px, 8vh, 88px);
}
.sec-num {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-rule { flex: 1; height: 1px; background: currentColor; opacity: .35; }
.sec-side { opacity: .55; }

/* ---------- 9. MARQUEE ----------
   The single .marquee__chunk is cloned + animated in JS (pixel-measured
   GSAP loop) so the band is perfectly seamless at any viewport width. */
.marquee { overflow: clip; white-space: nowrap; }
.marquee__inner { display: flex; width: max-content; will-change: transform; }
.marquee__chunk { display: inline-block; white-space: nowrap; flex: 0 0 auto; }

/* ---------- 10. HERO ---------- */
/* immersive dark stage: the backdrop is rendered inside the 3D scene
   (scene.background in loop.js). The gradient below is only a fallback,
   shown behind the opaque canvas if WebGL is unavailable + during the
   intro scale-in — kept colour-matched so the seam is invisible. */
.hero {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: clip; /* keep the full-bleed canvas from spilling sideways */
  color: var(--bone);
  background:#000;
  }

/* ----- LAYER 0 · 3D loop, full viewport behind everything ----- */
.hero__loop {
  position: absolute; inset: 0; z-index: 0; /* fills the 100svh hero */
  pointer-events: none; /* decorative — never swallow hero interactions */
}
.hero__loop-canvas { display: block; width: 100%; height: 100%; }

/* ----- LAYER 1 · text + data, stacked above the loop ----- */
.hero__fg {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; flex-direction: column;
  /* vertical chrome scales with viewport height so the section
     never adds up past 100svh on short screens */
  padding: clamp(72px, 12svh, 96px) var(--margin) 0;
  pointer-events: none; /* let the eye/click pass to the loop between elements */
}
.hero__fg > * { pointer-events: auto; }

.hero__topline {
  display: flex; justify-content: space-between; gap: var(--s2);
  padding-block: var(--s2);
  border-bottom: 1px solid var(--line-l); /* light hairline on the dark stage */
  color: rgba(239, 233, 223, .7);
}

/* ----- bold creative statement, centered hero headline ----- */
.hero__statement {
  font-weight: 800; font-stretch: 110%;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-size: clamp(22px, 3.2vw, 44px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero__message {
  display: flex; flex-direction: column; gap: var(--s2);
  align-items: center; text-align: center;
  width: 100%;
  max-width: min(520px, calc(100vw - 2 * var(--margin)));
}
.hero__sub {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.65; opacity: .72;
  max-width: 44ch;
}
.hero__ctas {
  display: flex; flex-wrap: nowrap; gap: var(--s2); padding-top: var(--s1);
  justify-content: center;
}

.hero__bottom {
  margin-top: auto;
  margin-bottom: auto; /* vertical centering between topline and marquee */
  display: flex; flex-direction: column; align-items: center; gap: var(--s4);
}
.hero__scroll { display: inline-flex; align-items: center; gap: 8px; padding: 10px 0; }
.hero__scroll svg { animation: bob 1.6s cubic-bezier(.45, 0, .55, 1) infinite alternate; }
@keyframes bob { from { transform: translateY(-2px); } to { transform: translateY(3px); } }

.hero__marquee {
  margin-inline: calc(var(--margin) * -1);
  background: var(--ink); color: var(--bone);
  font-weight: 800; font-stretch: 115%; font-size: 15px;
  padding-block: 14px;
  border-top: 1px solid var(--line-l); /* separate the strip from the dark stage */
}

/* ---------- 11. ABOUT ---------- */
.about__title {
  font-weight: 900; font-stretch: 118%; text-transform: uppercase;
  font-size: clamp(22px, 2.9vw, 44px); line-height: 1.5; letter-spacing: -.01em;
  max-width: 40ch;
  margin-bottom: var(--s8);
}

.about__grid {
  display: grid; grid-template-columns: repeat(var(--cols), 1fr); column-gap: var(--gutter);
  margin-bottom: var(--s12);
}
.about__copy { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; }
.about__copy:nth-child(1) { grid-column: 5 / span 4; }
.about__copy:nth-child(2) { grid-column: 9 / span 4; }

.video-block { margin-bottom: var(--s12); }
.video-block__media {
  position: relative; aspect-ratio: 16 / 8.2;
  background: var(--cobalt);
  display: grid; place-items: center;
  overflow: clip;
}
.video-block__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.video-block__shade {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,18,13,.25), transparent 55%);
}
/* custom play/pause cursor — follows the mouse over the reel */
.video-block__media { cursor: none; }
.video-block__media:focus-visible { outline: 2px solid var(--ver); outline-offset: 2px; }
.video-cursor {
  position: absolute; left: 0; top: 0; z-index: 3;
  width: clamp(64px, 7vw, 96px); aspect-ratio: 1;
  background: var(--bone); color: var(--ink);
  display: grid; place-items: center;
  font-size: 11px; letter-spacing: .1em;
  pointer-events: none;
  will-change: transform;
}
.video-block__meta {
  display: flex; justify-content: space-between;
  padding-top: 14px;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.stat {
  padding: var(--s4) var(--s3);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat__num {
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(44px, 5.5vw, 84px); line-height: 1;
}
.stat__sup {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 900; font-size: clamp(20px, 2vw, 30px);
}
.stat__lbl { margin-top: var(--s2); opacity: .6; }

/* ---------- 12. WORKS ---------- */
.works__intro { margin-bottom: clamp(48px, 7vh, 80px); }
.works__heading {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 52px); line-height: 1.1;
  margin-bottom: var(--s4);
}
.works__lead {
  font-size: clamp(14px, 1.15vw, 17px); line-height: 1.65;
  max-width: 64ch; opacity: .72;
}

.works__cat + .works__cat { margin-top: var(--s12); }

.works__cat-head {
  display: flex; align-items: baseline; gap: var(--s2);
  padding-bottom: var(--s2); margin-bottom: var(--s6);
  border-bottom: 1px solid var(--line);
}
.works__cat-idx { opacity: .45; }
.works__cat-title {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 34px); line-height: 1;
}
.works__cat-count { margin-left: auto; opacity: .45; }

.works__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vh, 48px) var(--gutter);
}
.works__more { margin-top: var(--s6); }
.works__more:disabled { opacity: .55; pointer-events: none; }

.work__media {
  position: relative; display: block;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: clip;
}

/* 3D & CGI grid: slightly taller than standard 4:3 */
.works__cat:first-of-type .work__media {
  aspect-ratio: auto;
  height: 52vh;
  max-height: 580px;
  min-height: 320px;
}

.work__fill {
  position: absolute; inset: 0; background: var(--block);
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: filter .55s cubic-bezier(.77, 0, .18, 1), transform .65s cubic-bezier(.77, 0, .18, 1);
}
.work__media:hover .work__fill { filter: blur(16px) brightness(.72) saturate(1.15); transform: scale(1.12); }

/* real preview video — uses each video's natural aspect ratio;
   max-width/max-height keep it from overflowing the card */
.work__video {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  max-width: 48%; max-height: 62%;
  width: auto; height: auto;
  border: 1px solid rgba(239, 233, 223, .3);
  opacity: 0; transform: translate(-50%, -50%) scale(.8);
  transition: opacity .4s, transform .55s cubic-bezier(.77, 0, .18, 1);
  pointer-events: none;
}
.work__media.is-playing .work__video { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.work__idx {
  position: absolute; top: 14px; left: 16px; color: var(--on); z-index: 2;
  transition: transform .55s cubic-bezier(.77, 0, .18, 1);
}
.work__media:hover .work__idx { transform: translate(10px, 8px); }

/* mini video player that appears on hover */
.work__player {
  position: absolute; left: 50%; top: 50%; z-index: 3;
  width: min(56%, 340px); aspect-ratio: 16 / 9;
  background: var(--ink); color: var(--bone);
  border: 1px solid rgba(239, 233, 223, .3);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 12px 14px;
  opacity: 0; transform: translate(-50%, -50%) scale(.8);
  transition: opacity .4s, transform .55s cubic-bezier(.77, 0, .18, 1);
  pointer-events: none;
}
.work__media:hover .work__player { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.work__player-top { display: flex; align-items: center; gap: 8px; }
.work__player-top .mono { font-size: 10px; opacity: .85; }
.work__dot {
  width: 8px; height: 8px; background: var(--ver-gradient); flex: 0 0 auto;
  animation: blink 1.1s steps(2, start) infinite;
}
.work__player-mid {
  align-self: center;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(239, 233, 223, .3);
}
.work__player-bar { height: 2px; background: rgba(239, 233, 223, .25); overflow: clip; }
.work__player-bar i {
  display: block; height: 100%; width: 35%; background: var(--ver-gradient);
  animation: seek 2.2s linear infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes seek { from { transform: translateX(-100%); } to { transform: translateX(300%); } }

.work__info {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s3);
  padding-top: var(--s2);
  border-bottom: 1px solid var(--line); padding-bottom: var(--s2);
}
.work__title {
  padding-bottom: var(--s2);
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(20px, 2vw, 32px); line-height: 1.2;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1), color .3s;
}
.work:hover .work__title {
  transform: translateX(12px);
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.work__meta { display: flex; flex-wrap: wrap; gap: 4px var(--s3); opacity: .6; }

/* ---------- 13. SERVICES ---------- */
.services { background: var(--ink); color: var(--bone); }
.services .sec-rule { opacity: .25; }

.srv { border-top: 1px solid var(--line-l); }
.srv__row { border-bottom: 1px solid var(--line-l); }
.srv__row > a {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: 60px 1fr auto 60px;
  align-items: center; gap: var(--s3);
  padding: clamp(20px, 3.4vh, 36px) var(--s2);
}
.srv__row > a::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ver-gradient);
  transform: scaleY(0); transform-origin: bottom center;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
}
.srv__row > a:hover::before { transform: scaleY(1); }
.srv__row > a:hover { color: var(--ink); }
.srv__row > a { transition: color .25s .08s; }

.srv__idx { opacity: .55; }
.srv__name {
  font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  font-size: clamp(17px, 2.2vw, 30px); line-height: 1;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
}
.srv__row > a:hover .srv__name { transform: translateX(18px); }
.srv__tags { opacity: .55; text-align: right; }
.srv__arrow { justify-self: end; transition: transform .45s cubic-bezier(.77, 0, .18, 1); }
.srv__row > a:hover .srv__arrow { transform: rotate(45deg); }

/* ---------- 14. JOURNEY ---------- */
.journey { position: relative; z-index: 2; overflow: clip; }
.journey__pin {
  height: 100svh;
  display: flex; flex-direction: column;
  padding: clamp(72px, 10svh, 96px) var(--margin) clamp(16px, 3svh, 32px);
  gap: clamp(8px, 1.2svh, 16px);
}
/* suppress section-head default margin inside the pinned journey panel */
.journey .section-head { margin-bottom: 0; }

.journey__heading {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(16px, 1.8vw, 26px); line-height: 1.1;
  opacity: .9; flex-shrink: 0;
}

.journey__track { display: flex; width: max-content; flex: 1; align-self: stretch; }
.step {
  width: clamp(280px, 32vw, 500px);
  height: 100%; /* fill the available vertical space */
  padding: var(--s4) var(--s4) var(--s6) var(--s4);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--s3);
}
.step__ico { color: var(--ver); }
.step__num {
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(60px, 7.5vw, 120px); line-height: .9;
  color: transparent; -webkit-text-stroke: 1.5px var(--ink);
  margin-top: auto; /* push number to bottom half, copy floats up */
}
.step__title {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 36px); line-height: 1;
}
.step__copy { max-width: 30ch; font-size: clamp(13px, 1vw, 15px); line-height: 1.6; opacity: .8; }

.journey__bar { height: 2px; background: var(--line); }
.journey__bar i { display: block; height: 100%; width: 100%; background: var(--ver-gradient); transform: scaleX(0); transform-origin: left center; }

/* ---------- 14b. JOURNEY TAGLINE ---------- */
.journey__tagline {
  font-size: clamp(13px, 1.05vw, 16px);
  opacity: .62; text-align: center; line-height: 1.6;
  max-width: 60ch; margin-inline: auto;
  padding-top: var(--s2);
}

/* ---------- 15. CLIENTS ---------- */
.clients__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.client {
  position: relative; isolation: isolate;
  background: var(--bone);
  aspect-ratio: 16 / 7;
  display: grid; place-items: center;
  overflow: clip;
}
.client::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.77, 0, .18, 1);
}
.client:hover::before { transform: translateY(0); }
.client:hover { color: var(--bone); }
.client { transition: color .25s .05s; }
/* clients intro block */
.clients__intro { margin-bottom: clamp(48px, 7vh, 80px); }
.clients__heading {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 52px); line-height: 1.1;
  margin-bottom: var(--s4);
}
.clients__lead {
  font-size: clamp(14px, 1.15vw, 17px); line-height: 1.65;
  max-width: 64ch; opacity: .72;
}

/* sub-sections inside TRUSTED BY (brands / influencers) */
.clients__sub + .clients__sub { margin-top: var(--s16); }

/* influencer reels: three always-playing 9:16 videos, details beneath */
.inf {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 36px);
}
.inf-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  overflow: clip;
}
.inf-card__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.77, 0, .18, 1);
}
.inf-card:hover .inf-card__video { transform: scale(1.05); }
.inf-card__info {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s3);
  padding-block: var(--s2);
  border-bottom: 1px solid var(--line);
}
.inf-card__name {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(18px, 1.6vw, 26px); line-height: 1.2;
}
.inf-card__meta { display: flex; flex-direction: column; gap: 4px; opacity: .6; text-align: right; }

.client__idx { position: absolute; top: 10px; left: 12px; opacity: .45; }
.client__name {
  font-weight: 800; font-stretch: 118%;
  font-size: clamp(13px, 1.25vw, 19px); letter-spacing: .02em;
}

/* ---------- 16. FAQ ---------- */
.faq__list { border-top: 1px solid var(--line); max-width: 920px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--s3);
  padding: clamp(18px, 2.6vh, 26px) 0;
  text-align: left;
  font-weight: 700; font-stretch: 112%;
  font-size: clamp(17px, 1.6vw, 24px);
}
.faq__icon {
  flex: 0 0 auto; width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: background .3s, color .3s, transform .45s cubic-bezier(.77, 0, .18, 1);
}
.faq__q:hover .faq__icon { background: var(--ink); color: var(--bone); }
.faq__item.is-open .faq__icon { background: var(--ver-gradient); border-color: var(--ver); color: var(--ink); transform: rotate(135deg); }

.faq__a { height: 0; overflow: clip; }
.faq__a p {
  max-width: 62ch; padding: 0 0 var(--s4); line-height: 1.65; opacity: .85;
}

/* ---------- 17. CTA ---------- */
.cta {
  position: relative; z-index: 2;
  height: 100svh;
  overflow: hidden;
  background: var(--ver-gradient); color: var(--ink);
  display: flex; flex-direction: column;
}
.cta__marquee { border-bottom: 1px solid rgba(21, 18, 13, .3); padding-block: 12px; }
.cta__marquee .mono { font-size: 12px; }

.cta__body {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(12px, 2svh, 22px);
  text-align: center; padding: var(--s6) var(--margin);
}
.cta__kicker { opacity: .75; }
.cta__big {
  font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  font-size: clamp(28px, 5.8vw, 82px); line-height: .95; letter-spacing: -.015em;
}
.cta__text {
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65; max-width: 52ch; opacity: .85;
}
.cta__btns {
  display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center;
}
.cta__meta { font-size: clamp(13px, 1.1vw, 15px); }
.cta__meta a { font-weight: 700; }

/* ---------- 18. FOOTER ---------- */
.footer {
  position: relative; z-index: 2;
  height: 100svh; /* the contact section sits in exactly one viewport */
  background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column;
  padding: var(--s8) var(--margin) var(--s3);
  overflow: clip;
}
.footer .sec-rule { opacity: .25; }

.footer__title {
  font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  font-size: clamp(34px, 6vw, 104px); line-height: .94; letter-spacing: -.015em;
  margin-bottom: clamp(48px, 8vh, 96px);
}
.footer__title em {
  font-style: italic;
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.footer__grid {
  display: grid; grid-template-columns: repeat(var(--cols), 1fr); column-gap: var(--gutter);
  row-gap: var(--s8);
  margin-bottom: auto;
}

.footer__info {
  grid-column: 1 / span 6;
  display: flex; flex-direction: column; gap: var(--s8); align-items: flex-start;
}
.footer__mail {
  font-weight: 800; font-stretch: 115%;
  font-size: clamp(18px, 2.2vw, 32px); line-height: 1;
}
.footer__cols { display: flex; flex-wrap: wrap; gap: var(--s6) var(--s8); }
.footer__col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__col-tag {
  background: var(--ver-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.footer__col p { line-height: 1.6; opacity: .85; }
.footer__tz { opacity: .5; }

.footer__formwrap { grid-column: 8 / span 5; }
.footer__form-tag { color: var(--ver); margin-bottom: var(--s3); }

.footer__markwrap {
  overflow: clip; margin-top: var(--s4);
  margin-inline: calc(var(--margin) * -1); /* full-bleed band */
}
.footer__mark {
  font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  font-size: clamp(36px, 8vw, 148px); line-height: 1;
  white-space: nowrap;
  letter-spacing: -.02em;
  color: var(--bone);
}
.footer__mark em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px var(--ver);
  padding-right: .06em; /* keep the italic overhang off the next word */
}

.footer__bar {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s2);
  border-top: 1px solid var(--line-l);
  padding-top: var(--s2); margin-top: var(--s3);
  opacity: .8;
}
.footer__top-btn { font-family: var(--font-m); font-size: 11px; letter-spacing: .08em; padding: 10px 0; min-height: 44px; }
.footer__top-btn:hover { color: var(--ver); }

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__copy:nth-child(1) { grid-column: 1 / span 6; }
  .about__copy:nth-child(2) { grid-column: 7 / span 6; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .works__grid { grid-template-columns: 1fr; }
  /* stack title above meta — the long category labels collide with
     the title when they share one row at these widths */
  .work__info { flex-direction: column; align-items: flex-start; gap: 8px; }
  .work:hover .work__title { transform: none; }
  /* narrow 3-up reels: stack name above meta so they don't collide */
  .inf-card__info { flex-direction: column; align-items: flex-start; gap: 6px; }
  .inf-card__meta { text-align: left; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .srv__row > a { grid-template-columns: 44px 1fr 44px; }
  .srv__tags { display: none; }
  .fullnav__links { grid-column: 1 / -1; gap: var(--s6); }
  .fullnav__form { grid-column: 1 / -1; margin-top: var(--s6); padding-bottom: var(--s6); }
  /* footer nav + form stay side-by-side on tablets — they stack only on
     phones (see the max-width: 599px block). Let it grow past one screen. */
  .footer { height: auto; min-height: 100svh; }
}

@media (max-width: 819px) {
  /* journey falls back to a vertical list (pin/horizontal handled in JS via matchMedia) */
  .journey__pin {
    height: auto; overflow: visible;
    padding: clamp(48px, 8svh, 72px) var(--margin) clamp(40px, 7svh, 64px);
    gap: 0;
  }
  .journey .section-head { margin-bottom: var(--s4); }
  .journey__heading { margin-bottom: var(--s3); }
  .journey__track { flex-direction: column; width: 100%; flex: none; }
  .step {
    width: 100%; height: auto;
    border-left: 0; border-top: 1px solid var(--line);
    padding: var(--s3) 0 var(--s4);
  }
  .step__num { margin-top: 0; font-size: clamp(44px, 10vw, 72px); }
  .journey__tagline { display: none; }
  .journey__bar { display: none; }
}

/* ----- tablets: journey cards side-by-side; footer keeps its two columns ----- */
@media (min-width: 600px) and (max-width: 819px) {
  /* two journey cards per row instead of one tall vertical stack */
  .journey__track {
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: var(--gutter); row-gap: clamp(28px, 5vh, 48px);
  }
  .step {
    width: auto;
    border-top: 0; border-left: 1px solid var(--line);
    padding: var(--s3) var(--s4) var(--s5) var(--s3);
  }
}

/* phones: footer nav + form stack (tablets keep them side-by-side, above) */
@media (max-width: 599px) {
  .footer__info { grid-column: 1 / -1; }
  .footer__formwrap { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  /* header: the logo word doesn't shrink on its own — scale it down
     so logo + menu button always fit inside the viewport */
  .site-head { gap: var(--s2); }
  .logo { min-width: 0; }
  .logo__img { height: 26px; }
  .menu-btn { flex: 0 0 auto; }

  /* full-page nav: size by viewport width on phones, tighter rhythm */
  .fullnav__inner { padding-top: 76px; }
  .fullnav__tag { margin-bottom: 14px; }
  .fullnav__word { font-size: clamp(26px, 7.5vw, 40px); }
  .fullnav__link { padding-block: 10px; }
  .fullnav__meta { padding-top: var(--s4); }
  .fullnav__form { margin-top: var(--s4); padding-bottom: var(--s4); }

  /* ---- global section padding reduction on phones ---- */
  .section { padding-block: clamp(56px, 9svh, 80px); }

  .hero__topline-mid { display: none; }
  /* mobile: content sinks to bottom instead of centering */
  .hero__bottom {
    flex-direction: column; align-items: center; gap: var(--s3);
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: clamp(48px, 9svh, 80px);
  }
  .hero__message { align-items: center; text-align: center; width: 100%; max-width: 100%; }
  .hero__statement { font-size: clamp(26px, 6.5vw, 38px); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__loop { transform: translateY(-22%) scale(1); transform-origin: center top; }
  .sec-side { display: none; }

  /* ---- Who We Are: tighten internal spacing ---- */
  .about__title { font-size: clamp(20px, 5.5vw, 28px); margin-bottom: var(--s4); }
  .about__grid { margin-bottom: var(--s6); row-gap: var(--s4); }
  .about__copy { font-size: 15px; }
  .about__copy:nth-child(1), .about__copy:nth-child(2) { grid-column: 1 / -1; }
  .video-block { margin-bottom: var(--s6); }
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* work cards */
  .work__title { font-size: 22px; line-height: 2; }
  .work__meta { line-height: 2; }
  .srv__name { font-size: clamp(16px, 4.8vw, 21px); line-height: 1.15; }

  /* ---- Influencers: reduce gap between sub-sections and between cards ---- */
  .clients__sub + .clients__sub { margin-top: var(--s8); }
  .clients__intro { margin-bottom: var(--s6); }
  .inf { grid-template-columns: min(82vw, 360px); justify-content: center; gap: var(--s4); }

  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .client { aspect-ratio: 16 / 9; }
  .footer__bar-mid { display: none; }
  .cta__big br { display: block; }
}

/* ---------- 20. MOTION OVERRIDE ----------
   Client requirement: the experience is motion-first. We deliberately
   DO NOT register a prefers-reduced-motion kill switch, and we re-assert
   that our keyframed animations keep running even when the OS asks
   browsers to pause them. GSAP + Lenis ignore the flag by design here. */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scroll svg, .work__dot, .work__player-bar i {
    animation-play-state: running !important;
  }
  html { scroll-behavior: auto !important; }
}
