/* ============================================================
   KICKOUT — Productora audiovisual
   Concepto: sala de proyección. Urbano + editorial premium.
   ============================================================ */

:root {
  /* color */
  --bg: #060505;
  --bg-2: #0b0909;
  --ink: #f4efe9;
  --ink-soft: rgba(244, 239, 233, 0.62);
  --ink-faint: rgba(244, 239, 233, 0.34);
  --line: rgba(244, 239, 233, 0.1);
  --line-strong: rgba(244, 239, 233, 0.2);

  --red: #e11623;
  --red-hot: #ff2d3a;
  --red-deep: #5a0710;
  --red-glow: rgba(225, 22, 35, 0.45);

  /* type */
  --display: "Anton", "Archivo", sans-serif;
  --serif: "Bricolage Grotesque", "Archivo", sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* layout */
  --pad: clamp(20px, 5vw, 96px);
  --max: 1480px;
  --radius: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lock {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ---------- GRAIN + AMBIENT ---------- */

.grain {
  position: fixed;
  inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-1.5%, 1%); }
  100% { transform: translate(1%, -1.5%); }
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient img {
  position: absolute;
  right: -16vw;
  bottom: -10vh;
  width: min(960px, 86vw);
  opacity: 0.05;
  filter: saturate(1.2) blur(1px)
    drop-shadow(0 0 120px rgba(225, 22, 35, 0.4));
  transform: translateY(calc(var(--sp, 0) * -120px)) rotate(-3deg);
}

/* radial vignette + red wash on the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(225, 22, 35, 0.1), transparent 45%),
    radial-gradient(100% 100% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.6));
}

/* ---------- SCROLL PROGRESS ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--red-hot));
  box-shadow: 0 0 12px var(--red-glow);
}

/* ---------- HEADER ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

.site-header.shrink {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(6, 5, 5, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 11px;
  filter: drop-shadow(0 0 16px rgba(225, 22, 35, 0.5));
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.nav a span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--red-hot);
  letter-spacing: 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--red-hot);
  transition: width 0.3s var(--ease);
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.28s var(--ease);
}

.header-cta i {
  font-style: normal;
  transition: transform 0.28s var(--ease);
}

.header-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 30px var(--red-glow);
}

.header-cta:hover i {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}

.nav-toggle.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- MOBILE NAV ---------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: var(--pad);
  background: rgba(6, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(34px, 11vw, 60px);
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red-hot);
}

.mobile-cta {
  color: var(--red-hot);
  border-bottom: 0 !important;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-video {
  filter: brightness(0.92) contrast(1.08) saturate(1.06);
  transform: scale(1.06) translateY(calc(var(--sp, 0) * 60px));
}

/* if video missing, fallback image shows behind it */
.hero-fallback {
  filter: brightness(0.6) contrast(1.14) saturate(1.04);
  z-index: -2;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 5, 5, 0.55) 0%, transparent 26%, transparent 60%, rgba(6, 5, 5, 0.8) 100%),
    radial-gradient(80% 50% at 50% 45%, transparent 52%, rgba(6, 5, 5, 0.32));
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 5vh, 60px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(6, 5, 5, 0.4);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.tag-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 58, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 45, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 58, 0); }
}

.hero-coords {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(46px, 10vw, 158px);
  line-height: 0.86;
  letter-spacing: -0.01em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line[data-text] {
  position: relative;
}

/* reveal on load */
.hero-title .line {
  transform: translateY(105%);
  animation: lineUp 1.05s var(--ease-out) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) { animation-delay: 0.3s; }
.hero-title .line:nth-child(3) { animation-delay: 0.45s; }

@keyframes lineUp {
  to { transform: translateY(0); }
}

.line-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red-hot);
  text-stroke: 1.5px var(--red-hot);
}
@supports not ((-webkit-text-stroke: 1px red) or (text-stroke: 1px red)) {
  .line-accent { color: var(--red-hot); }
}

.hero-foot {
  margin-top: clamp(32px, 6vh, 64px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  max-width: 460px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.5;
}

.hero-lede strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}

.btn i {
  font-style: normal;
  transition: transform 0.28s var(--ease);
}

.btn-solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 34px var(--red-glow), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-solid:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px var(--red-glow);
}

.btn-solid:hover i {
  transform: translateX(4px);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(6, 5, 5, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--ink-soft);
  transform: translateY(-2px);
}

.play-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.play-dot::after {
  content: "";
  border-left: 7px solid #fff;
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
  margin-left: 2px;
}

.hero-scroll {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}

.hero-scroll i {
  width: 50px;
  height: 1px;
  background: var(--ink-faint);
  position: relative;
  overflow: hidden;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red-hot);
  transform: translateX(-100%);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   METRICS + MARQUEE
   ============================================================ */

.metrics {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 60px);
}

.metric {
  position: relative;
  padding-left: 22px;
}

.metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), transparent);
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.metric span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.2px;
}

.marquee {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

.marquee-track i {
  color: var(--red);
  font-style: normal;
  font-size: 18px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 22px;
}

.section-eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--red);
}

.section-eyebrow.light {
  color: var(--red-hot);
}

.block-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 104px);
  line-height: 0.86;
  letter-spacing: -0.01em;
}

.block-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.block-note {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 420px;
  padding-left: 22px;
  border-left: 2px solid var(--red);
}

/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 13vw, 180px) var(--pad);
  text-align: center;
}

.manifesto .section-eyebrow {
  justify-content: center;
}

.manifesto-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 17ch;
  margin: 0 auto;
}

.manifesto-text em {
  font-style: italic;
  color: var(--ink);
}

.manifesto-text .hl {
  position: relative;
  color: var(--red-hot);
  white-space: nowrap;
}

/* ============================================================
   WORK
   ============================================================ */

.work {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 9vw, 120px) 0;
}

.work-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
}

.work-item {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 120px 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: padding 0.4s var(--ease);
}

.work-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225, 22, 35, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.work-item:hover::before {
  opacity: 1;
}

.work-item:hover {
  padding-left: clamp(8px, 1.5vw, 20px);
  padding-right: clamp(8px, 1.5vw, 20px);
}

.work-index {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red-hot);
}

.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.7) contrast(1.1);
  transition: 0.5s var(--ease);
}

.work-item:hover .work-thumb img {
  filter: grayscale(0%) brightness(0.92) contrast(1.12);
  transform: scale(1.08);
}

.work-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.work-play i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 0 30px var(--red-glow);
}

.work-play i::after {
  content: "";
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.work-item:hover .work-play {
  opacity: 1;
}

.work-meta strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(24px, 3.4vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.work-item:hover .work-meta strong {
  color: var(--red-hot);
}

.work-meta em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.2px;
}

.work-go {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.work-item:hover .work-go {
  color: var(--ink);
}

/* ============================================================
   CAMPAIGN
   ============================================================ */

.campaign {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) var(--pad);
}

.campaign-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.campaign-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) contrast(1.1) saturate(0.95);
  transform: scale(1.05);
}

.campaign::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 60%, var(--bg) 100%),
    radial-gradient(70% 60% at 30% 40%, rgba(225, 22, 35, 0.18), transparent 60%);
}

.campaign-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.campaign-head {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.campaign-head .section-eyebrow {
  margin-bottom: 0;
}

.campaign-partners {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(6, 5, 5, 0.5);
  backdrop-filter: blur(10px);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.campaign-partners i {
  color: var(--red-hot);
}

.campaign-partners em {
  font-style: normal;
  color: var(--red-hot);
  font-size: 13px;
}

.campaign-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(60px, 13vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.campaign-copy {
  max-width: 540px;
  margin-top: 26px;
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
}

.campaign-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 24px 14px 14px;
  border-radius: 999px;
  background: rgba(244, 239, 233, 0.06);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}

.campaign-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--red-glow);
}

.campaign-stills {
  margin-top: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.campaign-stills figure {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.campaign-stills img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s var(--ease);
}

.campaign-stills figure:hover img {
  transform: scale(1.08);
}

/* ============================================================
   SOCIAL / PHONES
   ============================================================ */

.social {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 140px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.social-copy .block-title {
  margin-top: 4px;
}

.social-lede {
  margin-top: 28px;
  max-width: 440px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
}

.social-points {
  margin-top: 34px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-points li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink);
}

.social-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.social-points span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red-hot);
  min-width: 38px;
}

.phones {
  position: relative;
  height: clamp(420px, 52vw, 600px);
}

.phone {
  position: absolute;
  width: 46%;
  aspect-ratio: 9 / 18;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s var(--ease);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.phone-a {
  left: 0;
  top: 8%;
  transform: rotate(-7deg);
  z-index: 1;
}

.phone-b {
  left: 27%;
  top: 0;
  z-index: 3;
  width: 48%;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.7), 0 0 70px rgba(225, 22, 35, 0.15);
}

.phone-c {
  right: 0;
  top: 14%;
  transform: rotate(7deg);
  z-index: 2;
}

.phones:hover .phone-a { transform: rotate(-10deg) translateY(-6px); }
.phones:hover .phone-b { transform: translateY(-12px); }
.phones:hover .phone-c { transform: rotate(10deg) translateY(-6px); }

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.service {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}

.service::before {
  content: attr(data-num);
  position: absolute;
  top: clamp(22px, 2.5vw, 36px);
  left: clamp(28px, 3vw, 44px);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red-hot);
  letter-spacing: 1px;
}

.service::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(0deg, rgba(225, 22, 35, 0.12), transparent);
  transition: height 0.4s var(--ease);
  z-index: -1;
}

.service:hover::after {
  height: 100%;
}

.service h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.service p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   PROCESS
   ============================================================ */

.process {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 140px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.process-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.08);
  transition: 0.6s var(--ease);
}

.process-media:hover img {
  transform: scale(1.05);
}

.process-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--ink-soft);
}

.process-body .block-title {
  margin-top: 4px;
  margin-bottom: 40px;
}

.process-steps {
  list-style: none;
}

.process-steps li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red-hot);
  padding-top: 4px;
}

.process-steps strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
}

.process-steps p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   STUDIO / TEAM
   ============================================================ */

.studio {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}

.team {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
}

.team-row {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}

.team-row:hover {
  padding-left: clamp(8px, 1.5vw, 18px);
}

.team-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-hot);
}

.team-name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  transition: color 0.3s var(--ease);
}

.team-row:hover .team-name {
  color: var(--red-hot);
}

.team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: 0.3s var(--ease);
}

.team-row:hover .team-dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 16px var(--red-glow);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 170px) var(--pad);
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(225, 22, 35, 0.16), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.contact-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.contact-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-soft);
  text-stroke: 1.5px var(--ink-soft);
}
@supports not ((-webkit-text-stroke: 1px red) or (text-stroke: 1px red)) {
  .contact-title span { color: var(--ink-soft); }
}

.contact-rows {
  border-top: 1px solid var(--line);
}

.contact-row {
  position: relative;
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}

.contact-row:hover {
  padding-left: clamp(8px, 1.5vw, 18px);
}

.contact-k {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-hot);
}

.contact-row strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 38px);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.contact-row:hover strong {
  color: var(--red-hot);
}

.contact-row i {
  font-style: normal;
  font-size: 22px;
  color: var(--ink-faint);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.contact-row:hover i {
  color: var(--red-hot);
  transform: translateX(6px);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad) 56px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-mark span {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 2px;
}

.footer-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.footer-up {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.footer-up:hover {
  color: var(--red-hot);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 40px);
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 2, 0.88);
  backdrop-filter: blur(16px);
  animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7), 0 0 80px rgba(225, 22, 35, 0.16);
  animation: zoomIn 0.4s var(--ease-out);
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.modal-slot,
.modal-slot iframe,
.modal-slot video {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-slot video {
  object-fit: contain;
  background: #000;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(6, 5, 5, 0.8);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
}

.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .line { transform: none; animation: none; }
  .hero-foot, .hero-scroll { opacity: 1; animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { grid-template-columns: 1fr auto; }

  .block-head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .work-item {
    grid-template-columns: auto 90px 1fr;
  }
  .work-go { display: none; }

  .social {
    grid-template-columns: 1fr;
  }
  .phones {
    height: 70vw;
    max-height: 560px;
    margin-top: 20px;
  }

  .process {
    grid-template-columns: 1fr;
  }
  .process-media {
    order: 2;
  }
}

@media (max-width: 720px) {
  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .campaign-stills {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-item {
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
  }
  .work-thumb {
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 16 / 9;
  }
  .work-index {
    grid-row: 1;
  }
  .work-meta {
    grid-row: 1;
  }

  .team-row {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }
  .team-role {
    grid-column: 1 / -1;
  }

  .contact-row {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
  }
  .contact-k {
    grid-column: 1 / -1;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .campaign-title {
    font-size: clamp(52px, 17vw, 90px);
    word-break: break-word;
  }

  /* HERO mobile: KICKOUT arriba visible, texto abajo y legible */
  .hero-inner {
    justify-content: flex-end;
  }
  .hero-top {
    margin-bottom: auto;
  }
  .hero-title {
    font-size: clamp(38px, 12.5vw, 76px);
  }
  .hero-video,
  .hero-fallback {
    object-position: center 28%;
  }
  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(6, 5, 5, 0.35) 0%,
      transparent 24%,
      transparent 40%,
      rgba(6, 5, 5, 0.86) 74%,
      rgba(6, 5, 5, 0.96) 100%
    );
  }

  /* ---- PERFORMANCE mobile: menos repaints, sin lag ---- */
  .grain {
    animation: none;
    opacity: 0.035;
  }
  .site-header.shrink,
  .tag,
  .btn-ghost,
  .campaign-cta,
  .collab-logo,
  .lb-badge,
  .lb-shot figcaption,
  .process-tag,
  .phone figcaption,
  .vc-watch,
  .mobile-nav,
  .ig-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .site-header.shrink {
    background: rgba(6, 5, 5, 0.92);
  }
}

/* ============================================================
   VIDEO CARDS (Work / Videoclips)
   ============================================================ */

.video-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  text-align: left;
}

.vc-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.vc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.08) saturate(1.02);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}

.vc-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 5, 5, 0.1), transparent 38%, rgba(6, 5, 5, 0.66));
}

.vc-watch {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-hot);
}

.vc-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px var(--red-glow);
  transition: transform 0.3s var(--ease);
}

.vc-play i::after {
  content: "";
  display: block;
  border-left: 9px solid #fff;
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
  margin-left: 2px;
}

.video-card:hover .vc-media {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55), 0 0 40px rgba(225, 22, 35, 0.12);
}

.video-card:hover .vc-video {
  filter: brightness(0.95) contrast(1.1) saturate(1.05);
  transform: scale(1.05);
}

.video-card:hover .vc-play {
  transform: scale(1.12);
}

.vc-info em {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.vc-info strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.video-card:hover .vc-info strong {
  color: var(--red-hot);
}

/* ============================================================
   CAMPAIGN — Stay Under (fashion film)
   ============================================================ */

.campaign-head2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.campaign-headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.campaign-headline .section-eyebrow {
  margin-bottom: 14px;
}

.campaign-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(62px, 11vw, 168px);
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.campaign-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.collab-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.collab-logo {
  display: grid;
  place-items: center;
  height: 62px;
  min-width: 128px;
  padding: 0 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}

.collab-logo img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.collab-logos em {
  font-style: normal;
  color: var(--red-hot);
  font-size: 16px;
}

.campaign-copy {
  max-width: 460px;
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
}

.campaign-copy strong {
  color: var(--ink);
  font-weight: 700;
}

/* lookbook grid */
.lookbook {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lb-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
}

.lb-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lb-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 50px rgba(225, 22, 35, 0.1);
  transition: transform 0.5s var(--ease);
}

.lb-video:hover {
  transform: translateY(-4px);
}

.lb-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.6);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lb-shot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.lb-top .lb-shot {
  height: 100%;
}

.lb-bottom .lb-shot {
  aspect-ratio: 4 / 3;
}

.lb-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.05);
  transition: 0.6s var(--ease);
}

.lb-shot:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.08);
}

.lb-shot figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   STUDIO — Cinema credits
   ============================================================ */

.credits {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}

.credits .section-eyebrow {
  justify-content: center;
}

.credits-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 8px 0 clamp(44px, 6vw, 70px);
}

.credits-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(225, 22, 35, 0.5));
}

.credits-brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 88px);
  letter-spacing: 3px;
  line-height: 1;
}

.credits-mark em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red-hot);
}

.credits-roll {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 38px);
}

.credit-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credit-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-hot);
}

.credit-name {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.credits-crew {
  margin-top: clamp(42px, 6vw, 66px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--ink-soft);
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.credits-crew span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

/* ---------- responsive for new blocks ---------- */

@media (max-width: 1000px) {
  .campaign-head2 {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }
  .lb-top {
    grid-template-columns: 1fr;
  }
  .lb-top .lb-shot {
    aspect-ratio: 16 / 10;
    height: auto;
  }
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .lb-bottom {
    grid-template-columns: 1fr;
  }
  .lb-bottom .lb-shot {
    aspect-ratio: 16 / 10;
  }
  .collab-logos {
    width: 100%;
  }
  .collab-logo {
    flex: 1;
    min-width: 0;
  }
  .credit-name {
    font-size: clamp(28px, 8vw, 44px);
  }
  .vc-info strong {
    font-size: clamp(24px, 6.5vw, 34px);
  }
}

/* clickable partner logos */
a.collab-logo {
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
    background 0.3s var(--ease);
}

a.collab-logo:hover {
  border-color: var(--red);
  background: rgba(225, 22, 35, 0.08);
  transform: translateY(-2px);
}

/* ============================================================
   INSTAGRAM card
   ============================================================ */

.ig {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) var(--pad);
}

.ig-eyebrow {
  text-align: center;
}

.ig-eyebrow.section-eyebrow {
  justify-content: center;
  margin-bottom: 26px;
}

.ig-card {
  display: block;
  max-width: 660px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.ig-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 22, 35, 0.4);
  box-shadow: 0 38px 92px rgba(0, 0, 0, 0.6), 0 0 54px rgba(225, 22, 35, 0.16);
}

.ig-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.ig-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, #2a0a0e, #0a0807);
  border: 2px solid var(--red);
  box-shadow: 0 0 18px rgba(225, 22, 35, 0.4);
}

.ig-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ig-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ig-meta strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
}

.ig-meta span {
  font-size: 12px;
  color: var(--ink-soft);
}

.ig-follow {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s var(--ease);
}

.ig-card:hover .ig-follow {
  background: var(--red-hot);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.ig-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.45s var(--ease), transform 0.45s var(--ease);
}

.ig-card:hover .ig-grid img {
  filter: brightness(1.02);
}

.ig-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  transition: color 0.3s var(--ease);
}

.ig-card:hover .ig-cta {
  color: var(--ink);
}

/* ============================================================
   Floating WhatsApp button
   ============================================================ */

.wpp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 130;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #07210f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease);
  animation: wppPulse 2.8s var(--ease) infinite;
}

.wpp-float svg {
  width: 30px;
  height: 30px;
}

.wpp-float:hover {
  transform: scale(1.09);
}

@keyframes wppPulse {
  0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .wpp-float { animation: none; }
}

@media (max-width: 560px) {
  .ig-meta strong { font-size: 15px; }
  .wpp-float { width: 52px; height: 52px; }
}

/* ============================================================
   Stay Under — título más impactante (Bebas Neue + glow)
   ============================================================ */

.campaign-title {
  font-family: "Bebas Neue", var(--display);
  font-weight: 400;
  font-size: clamp(74px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

/* ============================================================
   Contacto + Instagram integrado
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 56px);
}

.contact-layout .contact-rows {
  border-top: 1px solid var(--line);
}

.contact-row-cta strong {
  color: var(--red-hot);
}

.contact-layout .ig-card {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   Créditos — entrada secuencial controlada (sin amontonarse)
   ============================================================ */

.credits-mark,
.credits-roll .credit-row {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.credits.in .credits-mark,
.credits.in .credit-row {
  opacity: 1;
  transform: none;
}

.credits.in .credits-mark { transition-delay: 0s; }
.credits.in .credit-row:nth-child(1) { transition-delay: 0.30s; }
.credits.in .credit-row:nth-child(2) { transition-delay: 0.55s; }
.credits.in .credit-row:nth-child(3) { transition-delay: 0.80s; }
.credits.in .credit-row:nth-child(4) { transition-delay: 1.05s; }
.credits.in .credit-row:nth-child(5) { transition-delay: 1.30s; }
.credits.in .credit-row:nth-child(6) { transition-delay: 1.55s; }

@media (prefers-reduced-motion: reduce) {
  .credits-mark,
  .credits-roll .credit-row {
    opacity: 1;
    transform: none;
  }
}
