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

:root {
  --bg: #0a0a0a;
  --white: #f5f0e8;
  --gold: #c9a96e;
  --gold-dim: rgba(201,169,110,0.45);
  --gray: rgba(245,240,232,0.42);
  --border: rgba(245,240,232,0.08);
  --card-border: rgba(245,240,232,0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.35s ease, padding 0.35s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 30px;
  width: auto;
  filter: invert(1) brightness(0.85) sepia(0.3) hue-rotate(10deg) saturate(1.4);
}
.nav-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
  font-weight: 500;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 118px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.34);
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    color 0.28s ease;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.nav-cta:hover {
  background: rgba(201, 169, 110, 0.16);
  border-color: rgba(201, 169, 110, 0.65);
  transform: translateY(-1px);
  color: var(--white);
}

.nav-cta:hover::before {
  transform: translateX(120%);
}

.nav-cta .btn-motion-circle {
  display: none;
}

.nav-cta .btn-motion-icon {
  position: static;
  transform: none;
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  margin-right: 8px;
  transition: transform 0.28s ease;
}

.nav-cta:hover .btn-motion-icon {
  transform: translateX(2px);
}

.nav-cta .btn-motion-text {
  position: static;
  transform: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: currentColor;
}
.nav-cta:hover { border-color: rgba(245,240,232,0.28); }
.nav-cta .btn-motion-circle { height: 32px; width: 32px; }
.nav-cta:hover .btn-motion-circle { width: calc(100% - 8px); }
.nav-cta .btn-motion-icon { left: 11px; font-size: 16px; }
.nav-cta .btn-motion-text { font-size: 10px; letter-spacing: 0.14em; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 64px;
  background: linear-gradient(180deg, rgba(10,10,10,0.96) 0%, rgba(2,2,2,1) 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 195, 95, 0.31), transparent 20%),
              radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.12), transparent 16%),
              radial-gradient(circle at 48% 76%, rgba(255, 120, 40, 0.12), transparent 18%),
              radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.08), transparent 12%);
  background-blend-mode: screen, screen, screen, screen;
  animation: heroGlowMove 20s linear infinite;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.08), transparent 0%),
                    radial-gradient(circle at 90% 15%, rgba(255,215,160,0.06), transparent 0%),
                    radial-gradient(circle at 50% 92%, rgba(255,160,90,0.05), transparent 0%);
  opacity: 0.85;
  filter: blur(28px);
  animation: heroGlowPulse 12s ease-in-out infinite;
}

@keyframes heroGlowMove {
  0% {
    background-position: 15% 18%, 85% 18%, 45% 78%, 40% 30%;
  }
  50% {
    background-position: 20% 15%, 82% 22%, 48% 80%, 44% 24%;
  }
  100% {
    background-position: 15% 18%, 85% 18%, 45% 78%, 40% 30%;
  }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}


/* ── HERO FILM BACKGROUND ── */
.hero-film-bg {
  --film-x: 0px;
  --film-y: 0px;
  --film-opacity: 0.64;
  --film-mask-x: 36%;
  --film-mask-y: 58%;

  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: var(--film-opacity);
  transition: opacity 0.45s ease;
  mix-blend-mode: screen;

  -webkit-mask-image: radial-gradient(
    circle 520px at var(--film-mask-x) var(--film-mask-y),
    black 0%,
    black 42%,
    transparent 76%
  );
  mask-image: radial-gradient(
    circle 520px at var(--film-mask-x) var(--film-mask-y),
    black 0%,
    black 42%,
    transparent 76%
  );
}

.hero-film-bg::before,
.hero-film-bg::after {
  content: "";
  position: absolute;
  left: -12vw;
  width: 78vw;
  height: 170px;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  transform-origin: center;
  will-change: transform, opacity;

  background:
    /* línea interna superior */
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(201, 169, 110, 0.22) 18%,
      rgba(201, 169, 110, 0.08) 64%,
      transparent 100%
    ) left 34px / 100% 1px no-repeat,

    /* línea interna inferior */
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(201, 169, 110, 0.16) 18%,
      rgba(201, 169, 110, 0.06) 64%,
      transparent 100%
    ) left calc(100% - 34px) / 100% 1px no-repeat,

    /* perforaciones superiores */
    repeating-linear-gradient(
      90deg,
      rgba(201, 169, 110, 0.28) 0 12px,
      transparent 12px 36px
    ) left 12px / 100% 12px no-repeat,

    /* perforaciones inferiores */
    repeating-linear-gradient(
      90deg,
      rgba(201, 169, 110, 0.22) 0 12px,
      transparent 12px 36px
    ) left calc(100% - 24px) / 100% 12px no-repeat,

    /* textura horizontal muy sutil */
    repeating-linear-gradient(
      0deg,
      transparent 0 14px,
      rgba(245, 240, 232, 0.018) 14px 15px
    );
}

.hero-film-bg::before {
  left: -12vw;
  width: 135vw;
  bottom: 21vh;
  transform:
    translate3d(var(--film-x), var(--film-y), 0)
    rotate(-7deg);
}

.hero-film-bg::after {
  top: 24vh;
  left: 0;
  width: 110vw;
  height: 130px;
  opacity: 0.42;
  transform:
    translate3d(
      calc(var(--film-x) * -0.55),
      calc(var(--film-y) * -0.55),
      0
    )
    rotate(8deg);
}

/* Mantiene todo el contenido del hero por encima de la animación */
.hero-eyebrow,
.hero-badge,
.hero-main,
.hero-bottom {
  position: relative;
  z-index: 3;
}

.hero-headline {
  position: relative;
  z-index: 4;
}



/* ── BACKGROUND PATHS ── */
.hero-eyebrow {
  position: absolute;
  top: 96px; left: 40px;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-badge {
  position: absolute;
  top: 96px; right: 40px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 7px 16px; border-radius: 100px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 40vh;
}

.hero-name-block {}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 12vw, 190px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-gold { color: var(--gold); display: block; }

.hero-specialties {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 22px;
  overflow: hidden;
}
.hero-spec-line {
  width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-spec-ticker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  height: 22px;
  overflow: hidden;
}
.hero-spec-ticker-inner {
  display: flex;
  flex-direction: column;
  animation: tickerScroll 10s cubic-bezier(0.4,0,0.2,1) infinite;
}
.hero-spec-item {
  height: 22px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes tickerScroll {
  0%       { transform: translateY(0); }
  14%      { transform: translateY(0); }
  20%      { transform: translateY(-22px); }
  34%      { transform: translateY(-22px); }
  40%      { transform: translateY(-44px); }
  54%      { transform: translateY(-44px); }
  60%      { transform: translateY(-66px); }
  74%      { transform: translateY(-66px); }
  80%      { transform: translateY(-88px); }
  94%      { transform: translateY(-88px); }
  100%     { transform: translateY(-110px); }
}

.hero-stats {
  display: flex; flex-direction: column;
  gap: 28px; text-align: right; padding-bottom: 8px;
}
.stat-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 38px;
  line-height: 1;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
}
.stat-num sup {
  font-size: 0.5em; vertical-align: top; margin-top: 0.12em;
  color: var(--white); font-weight: 200;
}
.stat-label {
  display: block; font-size: 7.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,240,232,0.32); margin-top: 5px;
}

.hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; margin-top: 36px;
}
.hero-desc {
  font-size: 13px; color: var(--gray);
  max-width: 360px; line-height: 1.8; font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.btn-reel {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--bg);
  padding: 13px 26px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-reel:hover { opacity: 0.88; transform: scale(1.03); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(245,240,232,0.22); color: var(--white);
  padding: 12px 22px; border-radius: 100px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white); }

/* ── MARQUEE ── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(201,169,110,0.03);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 13px 36px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); flex-shrink: 0;
}
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMON ── */
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 32px;
}
.section-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.link-view-all {
  font-size: 12px; font-weight: 500; color: var(--white);
  text-decoration: none; letter-spacing: 0.04em; opacity: 0.4;
  transition: opacity 0.2s;
}
.link-view-all:hover { opacity: 1; }

/* ── REELS ── */
#work, #commercials, #music-videos { padding: 80px 40px 0; }

.reels-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.reel-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--card-border);
  text-decoration: none;
  display: block;
}
.reel-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s ease;
}
.reel-card:hover .reel-bg { transform: scale(1.04); }
.reel-bg-narrative { background: url('../Brand_assets/films/narrative-reel.jpg') center/cover; }
.reel-bg-commercial { background: url('../Brand_assets/films/commercial-reel.jpg') center/cover; }
.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: rgba(245,240,232,0.7);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.reel-card:hover .reel-play {
  border-color: var(--gold);
  color: var(--gold);
  transform: translate(-50%,-50%) scale(1.08);
}
.reel-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.reel-type {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.reel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  text-transform: uppercase; color: var(--white); line-height: 1;
}
.reel-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

/* ── PROJECT GRID ── */
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 78vh;
  min-height: 600px;
  margin-bottom: 10px;
}
.project-card {
  position: relative; overflow: hidden;
  border-radius: 3px; cursor: pointer;
  border: 1px solid var(--card-border);
}
.project-card.featured { grid-row: span 2; }
.project-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.8s ease;
}
.project-card:hover .project-card-bg { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
}
.project-card-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 22px; z-index: 1;
}
.project-category {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.project-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 24px;
  color: var(--white); letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1;
}
.project-card.featured .project-title { font-size: 38px; }
.project-sub {
  font-size: 10px; color: rgba(245,240,232,0.4);
  margin-top: 4px; letter-spacing: 0.03em; line-height: 1.5;
}
.project-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(201,169,110,0.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--gold); padding: 4px 10px; border-radius: 100px;
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.18);
}
.film-frame {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.film-title-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 0.9; text-transform: uppercase;
  letter-spacing: -0.01em; text-align: center;
  color: rgba(245,240,232,0.06); padding: 20px;
  pointer-events: none;
}

.card-bangkok    { background: url('../Brand_assets/films/bangkoks-fear.jpg') center/cover; }
.card-guillotine { background: url('../Brand_assets/films/guillotine.jpg') center/cover; }
.card-blood      { background: url('../Brand_assets/films/blood-antiquities.png') center/cover; }
.card-stakes     { background: url('../Brand_assets/films/the-highest-stakes.jpg') center/cover; }
.card-escobar    { background: url('../Brand_assets/films/killing-escobar.jpg') center/cover; }

.card-mv-porter  { background: url('https://img.youtube.com/vi/rk2qfn3oU0U/maxresdefault.jpg') center/cover; }
.card-mv-jbalvin { background: url('https://img.youtube.com/vi/rzgw0XldTC0/maxresdefault.jpg') center/cover; }
.card-mv-karolg  { background: url('https://img.youtube.com/vi/aw_cmzF_uZY/maxresdefault.jpg') center/cover; }
.card-mv-icon    { background: url('https://img.youtube.com/vi/G3Sl2vJrmf0/maxresdefault.jpg') center/cover; }
.card-mv-camilo  { background: url('https://img.youtube.com/vi/KGTP7ffrapQ/maxresdefault.jpg') center/cover; }

.card-rollsroyce { background: url('../Brand_assets/commercials/rolls-royce.jpg') center/cover; }
.card-porsche    { background: url('../Brand_assets/commercials/porsche.jpg') center/cover; }
.card-audi       { background: url('../Brand_assets/commercials/audi.jpg') center/cover; }
.card-coach      { background: url('../Brand_assets/commercials/coach-fashion-week.jpg') center/cover; }
.card-xiaomi     { background: url('../Brand_assets/commercials/xiaomi-12-pro-master.jpg') center/cover; }
.card-barcelona  { background: url('../Brand_assets/commercials/barcelona-mobile.jpg') center/cover; }

/* ── AC CREDITS VIGNETTES ── */
.ac-credits-section {
  padding: 60px 40px 80px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}
.ac-credits-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 28px;
}
.ac-scroll-wrapper {
  overflow: hidden;
  margin: 0 -40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ac-scroll-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding-bottom: 4px;
  animation: marquee 55s linear infinite;
}
.ac-scroll-wrapper:hover .ac-scroll-track {
  animation-play-state: paused;
}
.ac-card {
  width: 220px;
  height: 320px;
  flex-shrink: 0;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  cursor: default;
}
.ac-card:hover .ac-card-bg { transform: scale(1.04); }
.ac-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ac-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.ac-meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
}
.ac-role-badge {
  display: inline-block;
  font-size: 7px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 3px 8px; border-radius: 2px;
  margin-bottom: 8px;
}
.ac-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  text-transform: uppercase; color: var(--white); line-height: 1.1;
}
.ac-network {
  font-size: 9px; color: var(--gray);
  letter-spacing: 0.1em; margin-top: 4px;
}
.ac-corner-mark {
  position: absolute; top: 12px; left: 12px;
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(201,169,110,0.5);
}
.ac-narcos       { background-image: url('../Brand_assets/Narcos.jpg'); }
.ac-jackryan     { background-image: url('../Brand_assets/Jack ryan.jpg'); }
.ac-gemini       { background-image: url('../Brand_assets/Gemini Man.jpg'); }
.ac-mile22       { background-image: url('../Brand_assets/Mile 22.jpg'); }
.ac-cemetery     { background-image: url('../Brand_assets/Cementery of splendour.jpg'); }
.ac-druglords    { background-image: url('../Brand_assets/Drug Lords.jpg'); }
.ac-echo3        { background-image: url('../Brand_assets/Echo 3.png'); }
.ac-card-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,0.008) 4px,
    rgba(255,255,255,0.008) 8px
  );
}

/* ── BIO ── */
#bio {
  padding: 60px 40px 80px;
  border-top: 1px solid var(--border);
}
.bio-header {
  padding-top: 0px;
  margin-bottom: 4px;
}
.bio-award-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.bio-award-line::before {
  content: '';
  display: inline-block; width: 18px; height: 1px; background: var(--gold);
}
.bio-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.2; color: var(--white);
  max-width: 780px; margin-top: 12px;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.bio-col {}
.bio-body {
  font-size: 16px; color: rgba(255, 255, 255, 0.8);
  line-height: 1.95; margin-bottom: 20px;
  text-align: justify;
}
.bio-body strong { color: var(--white); font-weight: 600; }
.bio-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.bio-spec-block {}
.bio-spec-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.bio-spec-val {
  font-size: 14px; color: var(--gray); line-height: 1.7;
}

/* ── FESTIVALS ── */
#festivals {
  padding: 60px 40px 80px;
  border-top: 1px solid var(--border);
}
.festivals-header {
  margin-bottom: 40px;
}
.festival-scroll {
  overflow: hidden;
  margin: 0 -40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.festival-track {
  display: flex; gap: 40px;
  width: max-content; padding-bottom: 4px;
  align-items: center;
  animation: marquee 50s linear infinite;
}
.festival-scroll:hover .festival-track {
  animation-play-state: paused;
}
.laurel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  min-height: 158px;
  flex-shrink: 0;
  padding: 26px 14px 18px;
  position: relative;
}
.laurel-ring {
  width: 146px;
  height: 146px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  background: none;
}

.laurel-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.78;

  background-image: url("data:image/svg+xml,%3Csvg width='122' height='122' viewBox='0 0 122 122' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23c9a96e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' opacity='0.95'%3E%3Cpath d='M39 101C34 97 31 93 30 89'/%3E%3Cpath d='M83 101C88 97 91 93 92 89'/%3E%3Cpath d='M30 87C22 86 17 82 14 75C22 75 28 78 30 87Z'/%3E%3Cpath d='M27 75C19 72 15 67 14 59C22 61 27 66 27 75Z'/%3E%3Cpath d='M27 62C20 58 17 52 18 45C25 48 29 54 27 62Z'/%3E%3Cpath d='M31 50C25 44 24 38 27 31C33 36 35 43 31 50Z'/%3E%3Cpath d='M37 39C33 32 34 26 39 20C43 27 43 34 37 39Z'/%3E%3Cpath d='M92 87C100 86 105 82 108 75C100 75 94 78 92 87Z'/%3E%3Cpath d='M95 75C103 72 107 67 108 59C100 61 95 66 95 75Z'/%3E%3Cpath d='M95 62C102 58 105 52 104 45C97 48 93 54 95 62Z'/%3E%3Cpath d='M91 50C97 44 98 38 95 31C89 36 87 43 91 50Z'/%3E%3Cpath d='M85 39C89 32 88 26 83 20C79 27 79 34 85 39Z'/%3E%3C/g%3E%3C/svg%3E");


}
.laurel-inner {
  position: relative;
  z-index: 1;
  width: 92px;
  min-height: 92px;
  padding: 20px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.laurel-status {
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.laurel-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.045em;
  line-height: 1.05;
  margin-bottom: 5px;
}

.laurel-year {
  font-size: 8px;
  color: var(--gray);
  letter-spacing: 0.12em;
}

/* ── CREDITS GRID ── */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 40px;
}
.credit-col {
  background: var(--bg);
  padding: 32px 28px;
}
.credit-col-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.credit-col-names {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 18px;
  color: var(--white); line-height: 1.6;
  text-transform: uppercase; letter-spacing: 0.02em;
}

/* ── SERVICES ── */
#services {
  padding: 80px 40px 60px;
  border-top: 1px solid var(--border);
}
.services-list { margin-top: 8px; }
.service-item {
  display: flex; align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 4px 0; cursor: default; overflow: hidden;
  transition: padding-left 0.35s ease;
}
.service-item:last-child { border-bottom: 1px solid var(--border); }
.service-item:hover { padding-left: 16px; }
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7.5vw, 118px);
  line-height: 1; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--white);
  transition: color 0.3s ease;
}
.service-item:hover .service-name { color: var(--gold); }
.service-name.muted {
  font-style: italic; color: rgba(245,240,232,0.1);
}
.service-item:hover .service-name.muted { color: rgba(245,240,232,0.1); }
.service-num {
  font-size: 11px; font-weight: 500; color: var(--gray);
  letter-spacing: 0.08em; align-self: center;
  opacity: 0; transition: opacity 0.2s;
}
.service-item:hover .service-num { opacity: 1; }

/* ── PRESS ── */
#press {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}
.press-item {
  background: var(--bg); padding: 28px 22px;
  transition: background 0.2s;
  text-decoration: none; display: block;
}
.press-item:hover { background: rgba(201,169,110,0.04); }
.press-pub {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.press-headline {
  font-size: 13px; color: var(--white);
  line-height: 1.55; font-weight: 400; margin-bottom: 16px;
}
.press-date { font-size: 10px; color: var(--gray); letter-spacing: 0.08em; }

/* ── CONTACT ── */
#contact {
  padding: 100px 40px 120px;
  border-top: 1px solid var(--border);
}
/* ── CTA DYNAMIC SLIDER ── */
.cta-static-line {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 155px);
  line-height: 0.88; letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--white);
  display: block; margin-bottom: 0.06em;
}
.cta-measure {
  position: fixed; left: -9999px; top: -9999px;
  white-space: nowrap; pointer-events: none; visibility: hidden;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(60px, 10vw, 155px);
  line-height: 0.88; letter-spacing: -0.01em; text-transform: uppercase;
}
.cta-slider-wrap { margin-bottom: 56px; overflow: hidden; }
.cta-slider-row {
  position: relative; display: inline-block;
  user-select: none; will-change: transform;
  transition: transform 0.3s ease-out;
}
.cta-slider-border {
  position: absolute; inset: 0;
  border-radius: 1rem; border: 1px solid var(--gold);
  pointer-events: none; opacity: 0.65;
}
.cta-handle {
  position: absolute; top: 0; height: 100%; width: 28px;
  border-radius: 9999px; background: var(--bg);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; z-index: 20; padding: 0;
  touch-action: none; transition: transform 0.15s ease;
}
.cta-handle:hover { transform: scaleX(1.15); }
.cta-handle.active { transform: scale(1.25); }
.cta-handle-bar {
  width: 3px; height: 2rem; border-radius: 9999px;
  background: var(--gold); display: block;
}
.cta-slider-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(60px, 10vw, 155px);
  line-height: 0.88; letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--white); white-space: nowrap;
  pointer-events: none; z-index: 10;
}
.cta-bottom {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 60px;
}
.cta-desc {
  font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 32px;
}
/* ── MOTION BUTTON ── */
.btn-motion {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  min-width: 190px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.18),
    rgba(201,169,110,0.05)
  );
  border: 1px solid rgba(201,169,110,0.42);
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.btn-motion::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255,255,255,0.13),
    transparent 34%
  );
  opacity: 0.65;
  pointer-events: none;
}

.btn-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.14) 45%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.btn-motion:hover {
  transform: translateY(-2px);
  border-color: rgba(201,169,110,0.75);
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.28),
    rgba(201,169,110,0.08)
  );
  color: var(--white);
}

.btn-motion:hover::after {
  transform: translateX(130%);
}

.btn-motion-circle {
  display: none;
}

.btn-motion-icon {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.28s ease;
}

.btn-motion:hover .btn-motion-icon {
  transform: translateX(4px);
}

.btn-motion-text {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: currentColor;
  z-index: 2;
  pointer-events: none;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 52px 40px 44px;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.footer-logo-img {
  height: 32px; width: auto;
  filter: invert(1) brightness(0.85) sepia(0.3) hue-rotate(10deg) saturate(1.4);
  opacity: 0.75; transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-nav-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; list-style: none;
}
.footer-nav-row a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.footer-nav-row a:hover { color: var(--gold); }
.footer-social-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; list-style: none;
}
.footer-social-row a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.35); text-decoration: none; transition: color 0.2s;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.footer-social-row a:hover { color: var(--gold); border-color: var(--gold); }
.footer-divider { width: 100%; height: 1px; background: var(--border); }
.footer-bottom-row {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(245,240,232,0.28); letter-spacing: 0.04em; }
.footer-back-top {
  background: none; border: none; cursor: pointer;
  font-size: 11px; font-weight: 500; font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); transition: color 0.2s; padding: 0;
}
.footer-back-top:hover { color: var(--gold); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 99;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 22px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 50px;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 22px; right: 40px;
  cursor: pointer; font-size: 22px; color: var(--gray); transition: color 0.2s;
}
.mobile-close:hover { color: var(--white); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }
  #hero { padding: 0 28px 56px; }
  .hero-eyebrow { left: 28px; }
  .hero-badge { right: 28px; }
  #work, #commercials, #music-videos, #bio, #services, #press, #contact, .ac-credits-section, #festivals { padding-left: 28px; padding-right: 28px; }
  .ac-scroll-wrapper, .festival-scroll { margin-left: -28px; margin-right: -28px; }
  footer { padding-left: 28px; padding-right: 28px; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { gap: 36px; }
  .work-grid { grid-template-columns: 1.1fr 1fr; grid-template-rows: auto auto auto; height: auto; min-height: unset; }
  .project-card.featured { grid-row: span 2; aspect-ratio: unset; }
  .project-card:not(.featured) { aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-sub { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  #hero { padding: 0 24px 48px; }
  .hero-eyebrow { left: 24px; }
  .hero-badge { right: 24px; font-size: 9px; }
  .hero-main { flex-direction: column; align-items: flex-start; gap: 28px; padding-top: 34vh; }
  .hero-stats { flex-direction: row; gap: 28px; text-align: left; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-actions { flex-wrap: wrap; gap: 8px; }
  #work, #commercials, #music-videos, #bio, #services, #press, #contact, .ac-credits-section, #festivals { padding-left: 24px; padding-right: 24px; }
  .ac-scroll-wrapper, .festival-scroll { margin-left: -24px; margin-right: -24px; }
  footer { padding: 40px 24px 32px; }
  .reels-row { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; min-height: unset; }
  .project-card.featured { grid-row: span 1; aspect-ratio: 4/3; }
  .project-card { aspect-ratio: 4/3; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-specs { grid-template-columns: 1fr 1fr; }
  .credits-grid { grid-template-columns: 1fr; }
  .cta-bottom { flex-direction: column; align-items: flex-start; }
  .press-grid { grid-template-columns: 1fr; }
  .footer-bottom-row { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .bio-specs { grid-template-columns: 1fr; }
}



@media (max-width: 768px) {
  .hero-film-bg {
    --film-opacity: 0.14;
  }

  .hero-film-bg::before {
    bottom: 24vh;
    width: 95vw;
  }

  .hero-film-bg::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-film-bg::before,
  .hero-film-bg::after {
    transform: rotate(-7deg);
  }
}
