/* ═══════════════════════════════════════════════════════
   LS MEDIA — Premium Agency Website
   Color System: Black / White / Red (#CBA733)
   Font: Metropolis (all weights, self-hosted in /fonts)
═══════════════════════════════════════════════════════ */

/* ─── Metropolis @font-face ─────────────────────────── */
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-LightItalic.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-RegularItalic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-SemiBoldItalic.woff2') format('woff2'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-ExtraBoldItalic.woff2') format('woff2'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Metropolis'; src: url('fonts/Metropolis-BlackItalic.woff2') format('woff2'); font-weight: 900; font-style: italic; font-display: swap; }

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

:root {
  --black:    #0a0a0a;
  --white:    #f5f4f0;
  --red:      #CBA733;
  --red-dark: #a8882a;
  --gray:     #1a1a1a;
  --gray-mid: #2e2e2e;
  --gray-lt:  #888;
  --cream:    #f5f4f0;

  --font-display:  'Metropolis', sans-serif;
  --font-heading:  'Metropolis', sans-serif;
  --font-body:     'Metropolis', sans-serif;

  --nav-h: 68px;
  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

/* Offset anchor targets so fixed nav doesn't cover them */
#services, #our-works, #contact, #approach, #testimonials, #clients, #founder {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── Layout Helpers ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-lt);
  margin-bottom: 32px;
}
.label--light { color: rgba(245,244,240,0.45); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
}
.section-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--red);
}
.section-title--light { color: var(--white); }

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.25s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--ghost:hover { background: var(--black); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--black);
}
.btn--white:hover { background: var(--cream); }

.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ──────────────────────────────────────────── */
/* ─── Hero-stage: outer dark frame ─────────────────── */
/* All 4 sides show the dark body background around the card */
.hero-stage {
  position: relative;
  padding: 18px;
  background: var(--black);
  overflow: visible;
}

/* Subtle warm-gold ambient glow in the outer dark area */
.hero-stage::before,
.hero-stage::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}
.hero-stage::before {
  width: 460px; height: 320px;
  background: rgba(203,167,51,0.07);
  bottom: 22px; right: 60px;
}
.hero-stage::after {
  width: 280px; height: 200px;
  background: rgba(203,167,51,0.05);
  bottom: 28px; left: 40px;
}

/* ─── Nav: absolute inside the card ─────────────────── */
/* Sits at the top of the rounded card; becomes fixed once card scrolls away */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* JS adds is-fixed when hero-stage exits viewport */
.nav.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
}
.nav.scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,0.07);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav__tagline {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.38);
  font-family: var(--font-body);
  font-weight: 400;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: 40px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 40px 32px;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.7);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--white); }

/* ─── HERO — CINEMATIC VIDEO ────────────────────────── */
.hero {
  position: relative;
  /* Full viewport minus stage padding (18px top + 18px bottom = 36px) */
  height: calc(100vh - 36px);
  height: calc(100svh - 36px);
  height: calc(100dvh - 36px);
  min-height: 520px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

/* Video layer */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.08);          /* headroom for parallax movement */
  transform-origin: center center;
  will-change: transform;
  transition: none;
}

/* Overlay stack */
.hero__ov {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Base dim so video never burns through */
.hero__ov--dark {
  background: rgba(4, 4, 4, 0.45);
  z-index: 1;
}
/* Gradient + warm gold atmospheric glow */
.hero__ov--gradient {
  background:
    radial-gradient(ellipse 75% 55% at 58% 44%, rgba(203,167,51,0.11) 0%, transparent 65%),
    linear-gradient(to bottom,
      rgba(10,10,10,0.78) 0%,
      rgba(10,10,10,0.22) 18%,
      rgba(10,10,10,0.08) 42%,
      rgba(10,10,10,0.70) 74%,
      rgba(10,10,10,0.97) 100%);
  z-index: 2;
}
/* Edge vignette */
.hero__ov--vignette {
  background: radial-gradient(ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.55) 100%);
  z-index: 3;
}
/* Film grain */
.hero__ov--noise {
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  z-index: 4;
  animation: grainShift 0.12s steps(1) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,-1%); }
  50%  { transform: translate(1%,2%); }
  75%  { transform: translate(-1%,1%); }
  100% { transform: translate(2%,-2%); }
}


/* Hero content */
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  /* Top clears the absolute nav; bottom clears the stats strip */
  padding: calc(var(--nav-h) + 28px) 44px 136px;
  box-sizing: border-box;
}

/* Staggered reveal — pure CSS, no JS class needed */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__reveal {
  opacity: 0;
  animation: heroReveal 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(var(--delay, 0) * 0.15s + 0.25s);
}
@media (prefers-reduced-motion: reduce) {
  .hero__reveal { animation: none; opacity: 1; transform: none; }
}

/* Eyebrow */
.hero__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__pulse {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  flex-shrink: 0;
}
.hero__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: 0;
  animation: pulseRing 2.4s ease-out 1.8s infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(203,167,51,0.9);
  font-weight: 500;
}

/* Headline */
.hero__headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(30px, 6.2vw, 92px);
  line-height: 0.90;
  letter-spacing: -0.025em;
  text-transform: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.hero__line--outline { color: var(--white); }
.hero__line--solid  { color: var(--white); }
.hero__line--accent { color: var(--red); }

/* Bottom row — subtitle left, CTA right */
.hero__bottom {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero__sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245,244,240,0.52);
  max-width: 320px;
  flex: 1;
}

/* Glass button */
.btn--glass {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 15px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease;
}
.btn--glass::after { content: '→'; font-size: 14px; transition: transform 0.25s ease; }
.btn--glass:hover {
  background: rgba(203,167,51,0.18);
  border-color: rgba(203,167,51,0.65);
  transform: translateY(-2px);
}
.btn--glass:hover::after { transform: translateX(4px); }

/* Inline text link */
.hero__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.45);
  transition: color 0.25s;
  white-space: nowrap;
}
.hero__link:hover { color: var(--white); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.35);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(203,167,51,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(1.15); }
}

/* Bottom fade — blends hero floor into marquee */
.hero__fade-out {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10,10,10,0.6) 50%,
    var(--black) 100%);
  z-index: 4;
  pointer-events: none;
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  .hero__video        { transform: none !important; }
  .hero__ov--noise    { animation: none; }
  .hero__pulse::after { animation: none; }
  .hero__scroll-line  { animation: none; }
}

/* ─── Hero: vertical grid lines overlay ─────────────── */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  padding: 0 40px;
}
.hero__grid-col {
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.032);
}
.hero__grid-col:first-child {
  border-left: 1px solid rgba(255,255,255,0.032);
}

/* ─── Hero: avatar cluster ──────────────────────────── */
.hero__avatars {
  display: flex;
  flex-shrink: 0;
}
.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(203,167,51,0.50);
  background: rgba(14,14,14,0.85);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatar--icon {
  background: var(--red);
  color: var(--black);
  border-color: var(--red);
  font-size: 13px;
}

/* ─── Hero: stats strip ─────────────────────────────── */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.014) 0px,
      rgba(255,255,255,0.014) 1px,
      transparent 1px,
      transparent 6px
    ),
    rgba(10,10,10,0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  max-width: 200px;
}
.hero__stat-num {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.42);
}
.hero__stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
  margin: 0 24px;
}

/* ─── Hero: status indicator (above headline) ───────── */
.hero__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

/* ─── Hero: social links (right edge) ───────────────── */
.hero__social {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(245,244,240,0.55);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.hero__social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(203,167,51,0.08);
}

/* ─── Pill CTA button ───────────────────────────────── */
.btn--pill {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, transform 0.22s;
}
.btn--pill:hover {
  background: var(--red);
  color: var(--black);
  transform: translateY(-2px);
}

/* ─── MARQUEE ──────────────────────────────────────── */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--white);
  flex-shrink: 0;
  padding-right: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── WHAT WE DO ───────────────────────────────────── */
.wwd {
  background: var(--cream);
  color: var(--black);
  padding: 120px 0 0;
  overflow: hidden;
}
.wwd__header {
  margin-bottom: 64px;
}
.wwd__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 100px;
}
.wwd__text-col { display: flex; flex-direction: column; gap: 24px; }
.wwd__body {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  max-width: 480px;
}
.wwd__stats-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
}
.wwd__stat {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.wwd__stat:last-child { border-bottom: none; }
.wwd__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
}
.wwd__stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lt);
}

.wwd__visual {
  display: grid;
  grid-template-columns: 3fr 1fr 2fr;
  height: 200px;
}
.wwd__visual-block {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wwd__visual-block--dark { background: var(--black); }
.wwd__visual-block--red  {
  background: var(--red);
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.wwd__visual-block--light { background: var(--gray-mid); }

/* ─── SERVICES ─────────────────────────────────────── */
.services {
  background: var(--black);
  padding: 120px 0;
}
.services__header {
  margin-bottom: 80px;
}
.services__intro {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,244,240,0.55);
  max-width: 560px;
}

/* Front-page teaser variant */
.services--teaser .services__header { margin-bottom: 0; }
.services--teaser .section-title {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.08;
  text-transform: none;
}
.services-teaser__line {
  margin-top: 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.services--teaser .services__intro { margin-top: 14px; }
.services-teaser__cta { margin-top: 40px; }
.services__list {
  display: flex;
  flex-direction: column;
}
.service-item {
  border-top: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: border-color 0.3s;
}
.service-item:last-child { border-bottom: 1px solid var(--gray-mid); }
.service-item:hover { border-color: var(--red); }

.service-item__header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}
.service-item__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gray-lt);
  min-width: 28px;
}
.service-item__title {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 42px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.2s;
}
.service-item:hover .service-item__title { color: var(--red); }
.service-item__toggle {
  background: none;
  border: 1.5px solid var(--gray-mid);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
  flex-shrink: 0;
}
.service-item.open .service-item__toggle {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}

.service-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s;
  padding: 0 0 0 60px;
}
.service-item.open .service-item__body {
  max-height: 700px;
  padding: 0 0 36px 60px;
}
.service-item__body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,244,240,0.65);
  max-width: 600px;
  margin-bottom: 24px;
}
.service-item__body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.service-item__body li {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245,244,240,0.45);
  padding-left: 16px;
  position: relative;
}
.service-item__body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}
.service-item__sub {
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: none;
  vertical-align: middle;
  margin-left: 6px;
}
.service-item__group {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.service-item__body ul + .service-item__group {
  margin-top: 28px;
}
.service-item__tagline {
  font-size: 13px !important;
  font-style: italic;
  color: rgba(245,244,240,0.45) !important;
  margin-top: -12px !important;
  margin-bottom: 20px !important;
}

/* ─── OUR APPROACH ─────────────────────────────────── */
.approach {
  background: var(--black);
  color: var(--white);
  padding: 120px 0;
  border-top: 1px solid var(--gray-mid);
}

/* Header row */
.approach__header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.approach__header .label { margin-bottom: 0; line-height: 1; }
.approach__header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.approach__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
}
.approach__title em { font-style: italic; color: var(--red); }
.approach__intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,244,240,0.5);
  max-width: 520px;
}

/* Card grid */
.approach__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.approach__card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
  cursor: default;
}
.approach__card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
}

/* Top chip */
.approach__card-top {
  padding: 20px 20px 0;
}
.approach__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background: rgba(203,167,51,0.12);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--red);
}

/* Card text */
.approach__card-content {
  padding: 20px 20px 24px;
  flex: 1;
}
.approach__card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
}
.approach__card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,244,240,0.5);
}

/* Bottom visual fill */
.approach__card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.12em;
  position: relative;
  overflow: hidden;
  transition: height 0.3s var(--ease);
}
.approach__card:hover .approach__card-visual { height: 160px; }
.approach__card-visual span {
  position: relative;
  z-index: 1;
  opacity: 0.18;
  color: var(--white);
}
.approach__card-visual--one   { background: linear-gradient(135deg, #1a1a1a 0%, #2a1a00 100%); }
.approach__card-visual--two   { background: linear-gradient(135deg, #0d0d0d 0%, #1a1500 100%); }
.approach__card-visual--three { background: linear-gradient(135deg, var(--red) 0%, #a8882a 100%); }
.approach__card-visual--four  { background: linear-gradient(135deg, #111 0%, #2a2a2a 100%); }

/* Gold accent bar at bottom of card on hover */
.approach__card::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.approach__card:hover::after { transform: scaleX(1); }

/* ─── HOW WE WORK WITH BRANDS ──────────────────────── */
.process {
  background: var(--cream);
  color: var(--black);
  padding: 100px 0;
}
.process__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process__left { display: flex; flex-direction: column; }
.process .label { margin-bottom: 32px; }
.process__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}
.process__title em {
  font-style: italic;
  color: var(--red);
}
.process__lead {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 20px;
  max-width: 420px;
}
.process__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gray-lt);
  text-transform: uppercase;
}

/* Cards */
.process__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.process__card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  padding: 32px 36px;
  transition: border-color 0.25s, transform 0.25s;
}
.process__card:hover {
  border-color: var(--red);
  transform: translateX(6px);
}
.process__card--accent {
  background: var(--black);
  border-color: var(--black);
}
.process__card--accent p { color: rgba(245,244,240,0.6); }
.process__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.process__card-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  min-width: 24px;
}
.process__card-tag {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
}
.process__card--accent .process__card-tag { color: var(--white); }
.process__card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  padding-left: 40px;
}

/* ─── FOUNDER ───────────────────────────────────────── */
.founder {
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid var(--gray-mid);
}
.founder__label {
  display: block;
  margin-bottom: 40px;
}
.founder__card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__visual {
  position: relative;
  width: 440px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--gray);
}
.founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder__panel {
  background: var(--cream);
  color: var(--black);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  padding: 48px;
  margin-left: -72px;
  z-index: 1;
  flex: 1;
  max-width: 560px;
}
.founder__panel-head { margin-bottom: 22px; }
.founder__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 8px;
}
.founder__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-dark);
}
.founder__bio {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 32px;
}
.founder__socials {
  display: flex;
  gap: 14px;
}
.founder__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.founder__social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* ─── OUR WORKS ────────────────────────────────────── */
.works {
  background: var(--black);
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Header */
.works__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}
.works__header-left .label { margin-bottom: 16px; }
.works__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.works__title em { font-style: italic; color: var(--red); }
.works__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  max-width: 360px;
  text-align: right;
}
.works__header-right p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,244,240,0.45);
}
.works__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.works__btn {
  background: none;
  border: 1.5px solid var(--gray-mid);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.works__btn:hover { border-color: var(--red); background: var(--red); }
.works__counter {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(245,244,240,0.4);
  min-width: 60px;
  text-align: center;
}

/* Track */
.works__track-wrap {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.works__track-wrap.dragging { cursor: grabbing; }
.works__track {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  will-change: transform;
}

/* Slide */
.works__slide {
  flex: 0 0 420px;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.works__slide:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

/* Visual area */
.works__slide-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.works__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 60%);
  z-index: 1;
}
.works__slide-bg-text {
  position: absolute;
  bottom: -10px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  z-index: 0;
  pointer-events: none;
}
/* Unique gradient per slide */
.works__slide-visual--01 { background: url('LS MEDIA CASE STUDIES.jpg') center/cover no-repeat; }
.works__slide-visual--02 { background: url('lacasera.jpg') center/cover no-repeat; }
.works__slide-visual--03 { background: url('chivas regal.webp') center/cover no-repeat; }
.works__slide-visual--04 { background: url('total.webp') center/cover no-repeat; }
.works__slide-visual--05 { background: url('ORANGE ROOM.webp') center/cover no-repeat; }
.works__slide-visual--06 { background: url('VENTCO.webp') center/cover no-repeat; }
.works__slide-visual--07 { background: url('SABINUS.webp') center/cover no-repeat; }
.works__slide-visual--08 { background: url('S.webp') center/cover no-repeat; }
.works__slide-visual--09 { background: linear-gradient(135deg, #120a0a 0%, #1a0f0f 100%); }
.works__slide-visual--10 { background: linear-gradient(135deg, #0a1212 0%, #0a1a1a 100%); }

/* Gold accent line across each visual */
.works__slide-visual::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  z-index: 2;
}

/* Info area */
.works__slide-info {
  padding: 24px 28px 28px;
}
.works__slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.works__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(203,167,51,0.3);
  padding: 4px 12px;
  border-radius: 999px;
}
.works__year {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,244,240,0.3);
}
.works__slide-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
}
.works__slide-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,244,240,0.45);
}

/* Progress bar */
.works__progress {
  margin-top: 40px;
}
.works__progress-bar {
  width: 100%;
  height: 2px;
  background: var(--gray-mid);
  border-radius: 999px;
  overflow: hidden;
}
.works__progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 999px;
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  width: 10%;
}

/* ─── TESTIMONIAL ──────────────────────────────────── */
.testimonial {
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.testimonial__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* Quote area */
.testimonial__quote-wrap {
  position: relative;
  padding: 0 28px;
}
.testimonial__deco {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(245, 244, 240, 0.05);
  pointer-events: none;
  user-select: none;
}
.testimonial__deco--open  { left: -4px; top: -24px; }
.testimonial__deco--close { right: -4px; bottom: -36px; }

.testimonial__text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  color: var(--white);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.testimonial__text.is-out {
  opacity: 0;
  filter: blur(5px);
  transform: scale(0.98);
}

/* Role */
.testimonial__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.testimonial__role.is-out {
  opacity: 0;
  transform: translateY(8px);
}

/* Avatar selector row */
.testimonial__avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonial__avatar-btn {
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 2px;
  background: transparent;
  transition:
    background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding   0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial__avatar-btn:hover:not(.active) {
  background: rgba(245, 244, 240, 0.08);
  padding: 5px 14px 5px 5px;
}
.testimonial__avatar-btn.active {
  background: var(--white);
  padding: 5px 14px 5px 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.testimonial__avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  transition: box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial__avatar-btn.active .testimonial__avatar-img {
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.15);
}

/* Name reveal — grid expand trick */
.testimonial__name-wrap {
  display: grid;
  grid-template-columns: 0fr;
  overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition:
    grid-template-columns 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity               0.45s cubic-bezier(0.4, 0, 0.2, 1),
    margin-left           0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial__avatar-btn:hover:not(.active) .testimonial__name-wrap,
.testimonial__avatar-btn.active .testimonial__name-wrap {
  grid-template-columns: 1fr;
  opacity: 1;
  margin-left: 8px;
}
.testimonial__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
}
.testimonial__avatar-btn.active .testimonial__name { color: var(--black); }
.testimonial__avatar-btn:hover:not(.active) .testimonial__name { color: var(--white); }

/* ─── CTA BAND ─────────────────────────────────────── */
.cta-band {
  position: relative;
  background: var(--red);
  padding: 100px 0;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #a8882a 0%, var(--red) 60%, #d9b93a 100%);
}
.cta-band__noise {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
.cta-band__headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.cta-band__accent {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.cta-band__right {
  flex-shrink: 0;
  max-width: 320px;
}
.cta-band__right p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* ─── CONTACT ──────────────────────────────────────── */
.contact {
  background: var(--cream);
  color: var(--black);
  padding: 120px 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.contact__left { display: flex; flex-direction: column; }
.contact__left .section-title { margin-bottom: 48px; }
.contact__info { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact__info-item { display: flex; flex-direction: column; gap: 4px; }
.contact__info-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.contact__info-item a,
.contact__info-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}
.contact__info-item a:hover { color: var(--red); }
.contact__socials {
  display: flex;
  gap: 24px;
  margin-top: auto;
}
.contact__socials a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color 0.2s;
  position: relative;
}
.contact__socials a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.3s;
}
.contact__socials a:hover { color: var(--black); }
.contact__socials a:hover::after { width: 100%; }

/* Form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.15);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact__form .btn { grid-column: 1 / -1; }

.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 32px;
  border: 1.5px solid rgba(0,0,0,0.1);
  gap: 16px;
}
.contact__success.visible { display: flex; }
.contact__success span {
  font-size: 36px;
  color: var(--red);
}
.contact__success p {
  font-size: 16px;
  color: #555;
}

.contact__error {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1.5px solid #C0392B;
  font-size: 14px;
  line-height: 1.55;
  color: #C0392B;
}
.contact__error.visible { display: block; }
.contact__error a {
  color: inherit;
  text-decoration: underline;
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-mid);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__logo-img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  opacity: 0.85;
}
.footer__brand p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.footer__nav {
  display: flex;
  gap: 32px;
}
.footer__nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.5);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__copy {
  font-size: 12px;
  color: rgba(245,244,240,0.3);
}

/* ─── Scroll Reveal Animation ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .wwd__grid { grid-template-columns: 1fr; gap: 48px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 64px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band__right { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero-stage { padding: 10px; }
  .hero { border-radius: 14px; }
  .hero__content { padding: calc(var(--nav-h) + 20px) 24px 130px; }
  .hero__headline { font-size: clamp(26px, 7.2vw, 56px); margin-bottom: 28px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__sub { max-width: 100%; font-size: 13px; }
  .hero__scroll { display: none; }
  .hero__grid { padding: 0 24px; }
  .hero__social { display: none; }
  .hero__stats { padding: 18px 24px; }
  .hero__stat-sep { margin: 0 14px; }

  .wwd { padding: 80px 0 0; }
  .wwd__visual { height: 120px; }
  .wwd__visual-block--red { font-size: 36px; }
  .wwd__stat-num { font-size: 48px; }

  .services { padding: 80px 0; }
  .service-item__body { padding-left: 0 !important; }
  .service-item__body ul { grid-template-columns: 1fr; }

  .founder { padding: 80px 0; }
  .founder__card { flex-direction: column; }
  .founder__visual { width: 100%; max-width: 340px; margin: 0 auto; }
  .founder__panel {
    margin-left: 0;
    margin-top: -40px;
    max-width: 92%;
    padding: 32px 28px;
  }

  .works__header { flex-direction: column; align-items: flex-start; }
  .works__header-right { align-items: flex-start; text-align: left; }
  .works__slide { flex: 0 0 340px; }
  .approach { padding: 80px 0; }
  .approach__cards { grid-template-columns: repeat(2, 1fr); }
  .process { padding: 80px 0; }
  .process__layout { grid-template-columns: 1fr; gap: 48px; }

  .testimonial { padding: 80px 0; }

  .cta-band { padding: 80px 0; }
  .cta-band__headline { font-size: clamp(42px, 10vw, 80px); }

  .contact { padding: 80px 0; }
  .contact__form { grid-template-columns: 1fr; }
  .contact__form .btn { grid-column: 1; }
  .form-group--full { grid-column: 1; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__nav { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .works__slide { flex: 0 0 300px; }
  .works__slide-visual { height: 220px; }
  .approach__cards { grid-template-columns: 1fr 1fr; }
  .process__card { padding: 24px; }
  .service-item__header { gap: 16px; }
  .hero__headline { font-size: clamp(60px, 18vw, 90px); }
}

/* ═══════════════════════════════════════════════════════
   REDESIGN LAYER — Stodio-style refresh, LS brand colors
   (appended last so it overrides the rules above)
═══════════════════════════════════════════════════════ */

/* ─── Hero stage: gold brand frame ──────────────────── */
.hero-stage {
  padding: 22px;
  background:
    radial-gradient(120% 100% at 85% 0%, #e0c04a 0%, var(--red) 40%, #7a5f14 100%);
}
.hero-stage::before,
.hero-stage::after { display: none; }
.hero { border-color: rgba(255,255,255,0.16); }

/* ─── Nav CTA pill ──────────────────────────────────── */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}
.nav__cta:hover { background: var(--red); transform: translateY(-1px); }

/* ─── Hero content layout ───────────────────────────── */
.hero__content {
  padding: calc(var(--nav-h) + 28px) 44px 36px;
}
.hero__headline {
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.hero__main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}
.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 340px;
  flex-shrink: 0;
}
.hero__aside-text {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(245,244,240,0.88);
}
.hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--red);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.hero__btn:hover { background: var(--white); transform: translateY(-2px); }
.hero__btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.hero__btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero__markers {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.6);
}

/* ─── Square label (reference-style chip) ───────────── */
.sq-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 36px;
}
.sq-label::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--red);
  flex-shrink: 0;
}
.sq-label--light { color: rgba(245,244,240,0.6); }
.approach__header .sq-label { margin-bottom: 0; }
.works__header-left .sq-label { margin-bottom: 16px; }

/* ─── Client strip ──────────────────────────────────── */
.clients {
  background: var(--cream);
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.clients__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.clients__note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  line-height: 1.55;
  max-width: 280px;
  flex-shrink: 0;
}
.clients__star { color: var(--red); font-size: 22px; line-height: 1; }
.clients__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.clients__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }
.clients__set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
}
.clients__logo-img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.25s, opacity 0.25s;
}
.clients__logo-img:hover { filter: grayscale(0); opacity: 1; }

/* ─── Who we are ────────────────────────────────────── */
.who {
  background: var(--cream);
  color: var(--black);
  padding: 110px 0 80px;
}
.who__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.who__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 980px;
}
.who__title em { font-style: italic; color: var(--red); }
.who__fade { color: #a09d93; }
.who__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px dashed rgba(0,0,0,0.4);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.who__link:hover { color: var(--red-dark); border-color: var(--red); }

/* ─── Image strip ───────────────────────────────────── */
.strip { background: var(--cream); }
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 22px;
}
.strip__img {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* ─── By the numbers ────────────────────────────────── */
.numbers {
  background: var(--cream);
  color: var(--black);
  padding: 90px 0 110px;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.numbers__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 2px dotted rgba(0,0,0,0.35);
}
.numbers__name { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.numbers__desc { font-size: 12.5px; line-height: 1.65; color: #777; }

/* ─── Services (dark) ───────────────────────────────── */
.svc {
  background: var(--black);
  padding: 110px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.svc__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.svc__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.svc__chip {
  display: inline-block;
  width: 1.15em;
  height: 0.72em;
  border-radius: 12px;
  background: url('ORANGE ROOM.webp') center/cover no-repeat, var(--red);
}
.svc__desc {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,244,240,0.55);
}
.svc__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-mid);
}
.svc__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--white);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.svc__item:hover { color: var(--red); padding-left: 12px; }
.svc__item > span:last-child { font-size: 20px; color: var(--red); }
.svc__num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-lt);
  min-width: 32px;
}
.svc__name { flex: 1; }
.svc__cta { margin-top: 44px; }

/* ─── Redesign responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .strip__img { height: 300px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-stage { padding: 12px; }
  .hero__content { padding: calc(var(--nav-h) + 20px) 24px 28px; }
  .hero__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 32px;
  }
  .hero__headline { font-size: clamp(34px, 9.4vw, 54px); }
  .hero__aside { max-width: 100%; }
  .hero__markers { gap: 12px; font-size: 10px; }
  .nav__cta { display: none; }

  .clients__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .clients__viewport { width: 100%; }
  .clients__set { gap: 44px; padding-right: 44px; }
  .clients__logo-img { height: 26px; max-width: 110px; }

  .who { padding: 80px 0 60px; }
  .strip__grid { grid-template-columns: 1fr 1fr; padding: 0 12px; }
  .strip__img { height: 200px; }
  .numbers { padding: 64px 0 80px; }
  .numbers__grid { gap: 32px; }
  .svc { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(30px, 10.5vw, 42px); }
  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}


/* ═══════════ Works: dot pagination + "view all" CTA ═══════════ */
.works__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.works__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(245,244,240,0.28);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, transform 0.3s;
}
.works__dot:hover { background: rgba(245,244,240,0.55); }
.works__dot.is-active {
  width: 26px;
  background: var(--red);
}

.works__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.works__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--red);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}
.works__cta-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ═══════════ Approach: light section, breaks up the dark run ═══════════ */
.approach {
  background: var(--cream);
  color: var(--black);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.approach .sq-label--light { color: rgba(10,10,10,0.55); }
.approach__title      { color: var(--black); }
.approach__intro      { color: rgba(10,10,10,0.6); }
.approach__card {
  background: #fff;
  border-color: rgba(10,10,10,0.1);
}
.approach__card-title { color: var(--black); }
.approach__card-desc  { color: rgba(10,10,10,0.6); }
.approach__chip {
  background: rgba(203,167,51,0.14);
  border-color: var(--red-dark);
  color: var(--red-dark);
}

/* ─── Mobile hero: tighten height ──────────────────────────────────────
   Appended last so it wins over the earlier max-width:768px blocks.     */
@media (max-width: 768px) {
  /* Hero was locked to full viewport height with bottom-aligned content,
     leaving a large empty video band above the headline. Let it size to
     its content instead, keeping a slice of video visible up top.       */
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero__content {
    /* ↓ the knob: raise for more video above the headline, lower for less */
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 24px;
  }

  /* 1080 × 1560 as the hero's shape. The stage adds 12px of padding each
     side, so the card is (100vw - 24px) wide and 1560/1080 (≈1.444×) that
     tall. It grows past the ratio only if the content needs more room.   */
  .hero {
    min-height: calc((100vw - 24px) * 1560 / 1080);
  }

  /* Headline-forward: type sits high under the nav, set large and tight,
     with the subline close beneath it.                                    */
  .hero__headline {
    font-size: clamp(38px, 11.6vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }
  .hero__main       { gap: 20px; margin-bottom: 26px; }
  .hero__aside      { gap: 22px; }
  .hero__aside-text { font-size: 15px; line-height: 1.55; }
  .hero__markers    { padding-top: 16px; }

  /* ── Works slider: native horizontal scrolling on touch ──────────────
     Pairs with the mobile branch in main.js, which skips the JS transform
     model so the browser's own momentum + snapping take over.           */
  .works__track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    cursor: default;
  }
  .works__track-wrap::-webkit-scrollbar { display: none; }
  .works__track {
    transform: none !important;   /* JS no longer drives this on mobile */
    padding: 0 24px;
    will-change: auto;
  }
  .works__slide {
    scroll-snap-align: center;
    flex-basis: 78vw;
  }
  .works__slide:hover { transform: none; }   /* no hover state on touch */
}
