/* =========================================================
   Strike Media · strike.strikestudio.net · 2026 rebuild
   Tight, dazzling, single-page. Dark theme. WebGL background.
   ========================================================= */

:root {
  --ink: #0a0a0a;
  --paper: #f5efe6;
  --paper-2: #ebe3d4;
  --bg: #0b0b0c;
  --bg-2: #111114;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.22);
  --red: #E41B22;
  --red-2: #ff5252;
  --gold: #E2C988;
  --teal: #4fd4c4;
  --muted: rgba(255,255,255,0.6);
  --muted-2: rgba(255,255,255,0.4);
  --ff-sans: 'Inter', 'Poppins', system-ui, sans-serif;
  --ff-display: 'Bowlby One SC', 'Poppins', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1280px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-weight: 400;
  color: #fff;
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--red-2); }
em { font-style: italic; color: var(--red-2); }

/* container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* eyebrow / kicker */
.kicker, .eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; }
.eyebrow span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 18px var(--red);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.7); opacity: .4; } }

.section-head { margin-bottom: 4rem; }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  margin: .6rem 0 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ========================================================
   LOADER
======================================================== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem;
  transition: opacity .6s ease;
}
#loader.gone { opacity: 0; pointer-events: none; }
.loader-mark {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff 0%, var(--red) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: loaderShimmer 1.6s ease-in-out infinite;
}
@keyframes loaderShimmer { 50% { transform: scale(1.04); filter: drop-shadow(0 0 24px rgba(228,27,34,.4)); } }
.loader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,.08);
  overflow: hidden; border-radius: 99px;
}
.loader-bar span {
  display: block; height: 100%; background: var(--red);
  animation: loaderBar 1.2s ease-in-out infinite;
  transform-origin: left;
}
@keyframes loaderBar {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(.85); }
  100% { transform: scaleX(1); }
}
.loader-line {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ========================================================
   WEBGL BACKGROUND CANVAS
======================================================== */
#bg-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* ========================================================
   CUSTOM CURSOR
======================================================== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: difference;
  transition: transform .15s ease, width .25s ease, height .25s ease, border-color .2s ease;
}
.cursor.hover {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--red);
  background: rgba(228,27,34,0.10);
}
.cursor span {
  position: absolute; inset: 50% auto auto 50%;
  width: 4px; height: 4px; background: #fff; border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (pointer: coarse) { .cursor { display: none; } body { cursor: auto; } }

/* ========================================================
   NAV
======================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2rem;
  backdrop-filter: blur(8px);
  background: rgba(11,11,12,0.55);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.brand-mark {
  display: inline-block;
  width: 22px; height: 22px;
  position: relative;
}
.brand-mark__a, .brand-mark__b {
  position: absolute; width: 50%; height: 100%;
  border-radius: 50% 0 50% 0;
}
.brand-mark__a { left: 0; background: #fff; transform: rotate(0deg); }
.brand-mark__b { right: 0; background: var(--red); border-radius: 0 50% 0 50%; }
.brand-word em { color: var(--red); font-style: normal; }
.nav__links {
  display: flex; gap: 1.8rem;
  font-size: .92rem;
  letter-spacing: -.005em;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--red); color: #fff;
  padding: .65rem 1.15rem; border-radius: 99px;
  font-size: .9rem; font-weight: 600;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.nav__cta:hover {
  background: #fff; color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(228,27,34,.35);
}
@media (max-width: 800px) {
  .nav { padding: 1rem 1.2rem; }
  .nav__links { display: none; }
  .nav__cta { padding: .55rem .9rem; font-size: .82rem; }
  .brand-word em { display: none; }
}

/* ========================================================
   HERO
======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 60%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero__inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 10vw, 9.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 1.5rem 0 1.4rem;
}
.hero__title .word {
  display: inline-block;
  margin-right: .3em;
  opacity: 0;
  transform: translateY(60%) skewY(8deg);
  will-change: transform, opacity;
}
.hero__title .word.accent { color: var(--red); }
.hero__title .word.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.hero__lead {
  max-width: 640px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
}
.hero__cta {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .65rem;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .25em;
  color: var(--muted);
}
.hero__scroll .dot {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scrollPing 1.8s ease-in-out infinite;
}
@keyframes scrollPing { 50% { transform: translateY(10px); opacity: .4; } }
.hero__marquee {
  position: absolute; bottom: 6rem; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .75rem 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: rgba(255,255,255,0.4);
}
.marquee span { padding: 0 .8rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================================
   BUTTONS
======================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.btn--xl { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: #fff; color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 36px -10px rgba(228,27,34,.45); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn span { transition: transform .25s ease; }
.btn:hover span { transform: translateX(4px); }

/* ========================================================
   TRUSTED BY
======================================================== */
.trust {
  padding: 4rem 0 3rem;
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__head { text-align: center; margin-bottom: 1.5rem; }
.trust__strip {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.trust__row {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: rgba(255,255,255,0.65);
  gap: 2.2rem;
  padding: 0 2.2rem;
}
.trust__row span:nth-child(odd) { color: rgba(255,255,255,0.85); }

/* ========================================================
   SERVICES
======================================================== */
.services { padding: 8rem 0; position: relative; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.svc-card:hover { transform: translateY(-8px); border-color: var(--line-strong); background: rgba(255,255,255,0.06); }
.svc-card--featured {
  background: linear-gradient(180deg, rgba(228,27,34,0.10) 0%, rgba(228,27,34,0.02) 100%);
  border-color: rgba(228,27,34,0.25);
}
.svc-card__num {
  font-family: var(--ff-mono);
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.svc-card__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0 0 1rem;
  line-height: 1.05;
}
.svc-card__copy { color: rgba(255,255,255,0.7); font-size: .94rem; line-height: 1.6; margin: 0 0 1.4rem; }
.svc-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .85rem;
  color: rgba(255,255,255,0.85);
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
}
.svc-card__list li::before {
  content: "/ "; color: var(--red); font-weight: 700;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } }

/* ========================================================
   VALUES
======================================================== */
.values { padding: 6rem 0; position: relative; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color .3s ease, background .3s ease;
}
.value:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.05); }
.value__index {
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--red);
  opacity: .35;
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-weight: 700;
}
.value__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0 0 .8rem;
  max-width: 80%;
}
.value__copy { color: rgba(255,255,255,0.7); font-size: .95rem; line-height: 1.6; margin: 0; }
@media (max-width: 800px) { .values__grid { grid-template-columns: 1fr; } }

/* ========================================================
   WORKS
======================================================== */
.works { padding: 8rem 0 4rem; }
.works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.work {
  position: relative;
  display: block;
  padding: 2rem 1.5rem 1.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
  isolation: isolate;
}
.work::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(228,27,34,.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.work:hover {
  transform: translateY(-6px);
  border-color: rgba(228,27,34,0.5);
  background: rgba(228,27,34,0.06);
}
.work:hover::before { opacity: 1; }
.work__tag {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-2);
  background: rgba(228,27,34,0.15);
  padding: .3rem .65rem;
  border-radius: 99px;
  align-self: flex-start;
}
.work__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 1rem 0 .4rem;
  letter-spacing: -.01em;
}
.work__sub { font-size: .82rem; color: rgba(255,255,255,0.55); margin: 0 0 1rem; }
.work__cta {
  font-size: .82rem; font-weight: 600;
  color: var(--red-2);
  transition: gap .25s ease;
  display: inline-flex; align-items: center; gap: .25rem;
}
.work:hover .work__cta { gap: .65rem; color: #fff; }
.works__more { text-align: center; margin-top: 3rem; }
@media (max-width: 1100px) { .works__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .works__grid { grid-template-columns: 1fr; } .work { aspect-ratio: auto; } }

/* ========================================================
   STATS
======================================================== */
.stats {
  padding: 5rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(228,27,34,0.04), transparent);
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5rem);
  display: block;
  background: linear-gradient(180deg, #fff 0%, var(--red) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.stat__label {
  display: block;
  margin-top: .8rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}
@media (max-width: 700px) { .stats__row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* ========================================================
   CTA
======================================================== */
.cta {
  padding: 9rem 0;
  text-align: center;
  position: relative;
}
.cta__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 8rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -.04em;
  margin: 0 0 1rem;
}
.cta__lead { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 620px; margin: 0 auto 3rem; }
.cta__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.cta__details {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 800px; margin: 0 auto;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  text-align: left;
}
.cta__details p { color: rgba(255,255,255,0.75); margin: .6rem 0 0; font-size: .92rem; }
.cta__details a { border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.cta__details a:hover { border-color: var(--red); color: var(--red-2); }
@media (max-width: 700px) { .cta__details { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ========================================================
   FOOTER
======================================================== */
.foot {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.6);
  font-size: .82rem;
  color: var(--muted);
}
.foot__inner { display: flex; justify-content: space-between; align-items: center; }
.foot__sig em { font-style: italic; }
@media (max-width: 600px) { .foot__inner { flex-direction: column; gap: .8rem; text-align: center; } }

/* ========================================================
   TRUSTED BY · real logos
======================================================== */
.trust__row {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  gap: 3.5rem;
  padding: 0 2rem;
}
.trust__row img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%) brightness(2.3);
  transition: opacity .3s ease, filter .3s ease;
  flex-shrink: 0;
}
.trust__row img:hover { opacity: 1; filter: grayscale(0%) brightness(1); }

/* ========================================================
   FEATURED PROJECTS — large image cards
======================================================== */
.featured { padding: 8rem 0; }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feat {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  isolation: isolate;
}
.feat:hover { transform: translateY(-8px) scale(1.01); }
.feat__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 95%);
  transition: opacity .35s ease;
  z-index: 1;
}
.feat:hover .feat__overlay { background: linear-gradient(180deg, rgba(228,27,34,0.10) 0%, rgba(0,0,0,0.92) 90%); }
.feat__meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.5rem 1.4rem;
  z-index: 2;
  color: #fff;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.feat:hover .feat__meta { transform: translateY(-8px); }
.feat__tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red-2);
  background: rgba(228,27,34,0.18);
  padding: .3rem .65rem;
  border-radius: 99px;
  margin-bottom: .9rem;
  backdrop-filter: blur(8px);
}
.feat__title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1.05;
  margin: 0 0 .35rem;
}
.feat__sub {
  font-size: .85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
@media (max-width: 1000px) { .featured__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .featured__grid { grid-template-columns: 1fr; } .feat { aspect-ratio: 16/10; } }

/* ========================================================
   VIDEO GRIDS — Latest Media + Latest Events
======================================================== */
.vidsection { padding: 7rem 0; position: relative; }
.vidsection--alt {
  background: linear-gradient(180deg, transparent, rgba(228,27,34,0.04) 50%, transparent);
}
.vidsection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.vidcard {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background-image: var(--thumb);
  background-color: #181818;
  background-size: cover;
  background-position: center;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  isolation: isolate;
}
.vidcard:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px -10px rgba(228,27,34,0.4);
  z-index: 2;
}
.vidcard::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
  transition: opacity .3s ease;
}
.vidcard__play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(228,27,34,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  z-index: 2;
  opacity: 0.85;
  backdrop-filter: blur(4px);
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .25s ease, opacity .25s ease;
  box-shadow: 0 4px 20px rgba(228,27,34,0.5);
}
.vidcard:hover .vidcard__play {
  transform: translate(-50%, -50%) scale(1.18);
  background: #fff;
  color: var(--red);
  opacity: 1;
}
.vidcard__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.1rem 0.95rem;
  z-index: 2;
}
.vidcard__meta h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.1;
  margin: 0 0 .25rem;
  color: #fff;
}
.vidcard__meta p {
  font-size: .78rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.vidsection__more { text-align: center; margin-top: 3rem; }

@media (max-width: 1100px) { .vidsection__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .vidsection__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .vidsection__grid { grid-template-columns: 1fr; } }

/* Hide the old `.works` legacy block if anywhere */
.works { display: none; }

/* ========================================================
   OGILVY-INSPIRED LAYER — restraint + work-first
======================================================== */

/* Capability filter chips under hero */
.hero__capfilter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.cap-chip {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  padding: .55rem 1.1rem;
  border-radius: 99px;
  font-size: .8rem;
  font-family: var(--ff-sans);
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.cap-chip:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.cap-chip--active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Manifesto section — editorial confident */
.manifesto {
  padding: 7rem 0;
  position: relative;
  text-align: center;
}
.manifesto__copy {
  font-family: var(--ff-sans);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.005em;
  color: rgba(255,255,255,0.92);
  max-width: 920px;
  margin: 0 auto 2rem;
}
.manifesto__copy em { font-style: italic; color: var(--red-2); }
.manifesto__sig {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0;
}
.manifesto__sig em { color: var(--red-2); font-style: italic; }

/* Simplified featured card — Ogilvy format: image + Title — Client */
.feat__client {
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
  margin: .2rem 0 0;
  font-weight: 400;
  letter-spacing: .005em;
}
.feat__title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  text-transform: none;     /* less shouting, more confident */
  letter-spacing: -.015em;
}

/* Restrain hero heading — less words, more confidence */
.hero__title {
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}
.hero__lead {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 300;
  line-height: 1.5;
  max-width: 560px;
  color: rgba(255,255,255,0.82);
}
.hero__lead br { display: block; }
