/* ============================================================
   FONTS
   ============================================================ */
/* The available Gilroy kit includes Light and ExtraBold, so we map them across the current scale. */
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Light.otf?v=mnf4z6c6') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Light.otf?v=mnf4z6c6') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Light.otf?v=mnf4z6c6') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Light.otf?v=mnf4z6c6') format('opentype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-ExtraBold.otf?v=mnf4z6c6') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-ExtraBold.otf?v=mnf4z6c6') format('opentype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/Gilmer Light.otf?v=mnf4z6c6') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/Gilmer Regular.otf?v=mnf4z6c6') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/Gilmer Medium.otf?v=mnf4z6c6') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/Gilmer Bold.otf?v=mnf4z6c6') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Gilmer';
  src: url('/fonts/Gilmer Heavy.otf?v=mnf4z6c6') format('opentype');
  font-weight: 900;
  font-display: swap;
}
/* ============================================================
   COLOR PALETTE
   ============================================================ */
:root {
  /* --- Typography scale --- */
  --font-family-base: 'Gilroy', 'Gilmer', system-ui, sans-serif;
  --font-scale: 16px;
  --fs-body: 1.04rem;
  --fs-body-lg: 1.16rem;
  --back-to-top-offset-x: 1.5rem;
  --back-to-top-offset-y: 3.5rem;
  --company-hero-min-height: 100svh;
  --company-hero-pad-y: clamp(4rem, 6vw, 6rem);
  --company-hero-gap: clamp(2.5rem, 4vw, 4rem);
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-soft: 0 24px 56px rgba(4, 18, 22, 0.08);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.24);

  /* --- Primary brand --- */
  --primary:       #012D31;   /* main dark teal – hero, footer */
  --primary-light: #024048;   /* gradient highlight */
  --primary-dark:  #011820;   /* gradient shadow */
  --primary-nav:   rgba(1, 45, 49, 0.97); /* nav scrolled */

  /* --- Accent --- */
  --accent:        #B5CE52;   /* lime green */
  --accent-hover:  #c8e060;   /* lime hover */
  --accent-dark:   #1a3a2a;   /* dark green text on accent */

  /* --- Neutral text --- */
  --text:          #1a1a1a;
  --text-2:        #333333;
  --text-3:        #555555;
  --text-4:        #888888;

  /* --- Surfaces & borders --- */
  --surface:       #f4f4f6;
  --surface-warm:  #f8f5e8;
  --border:        #e8e8e8;
  --border-warm:   #e8e0c8;
  --border-light:  #f0f0f0;

  /* --- Estudio Benítez --- */
  --eb:            #2e9c47;
  --eb-dark:       #1a3a2a;

  /* --- Stand Studio --- */
  --ss-navy:       #1a2060;
  --ss-purple:     #7a5dbf;
  --ss-orange:     #e06a1a;

  /* --- LunaBe --- */
  --lb:            #8ab4c4;
  --lb-dark:       #0a1828;
  --lb-night:      #08101a;

  /* --- 321 Films --- */
  --films:         #cc2222;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: var(--font-scale);
}
body:focus-within {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(181, 206, 82, 0.1), transparent 28%),
    linear-gradient(180deg, #f5f3ef 0%, #ebe8e1 100%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ol, ul { list-style-position: inside; }

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #011820;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1rem 0;
  transition: padding 0.3s ease;
}
.nav.scrolled {
  padding-top: 0.75rem;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.2rem 0.85rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  background: rgba(1, 45, 49, 0.46);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(1, 45, 49, 0.82);
  border-color: rgba(181,206,82,0.16);
  box-shadow: 0 20px 56px rgba(0,0,0,0.24);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: white;
  position: relative;
  z-index: 60;
}
.nav-logo-image {
  display: block;
  width: auto;
  height: clamp(2.15rem, 3.2vw, 2.7rem);
  max-width: min(100%, 220px);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta::after { display: none; }
.nav-cta {
  background: var(--accent);
  color: var(--accent-dark) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,206,82,0.35);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.28s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding: clamp(4.35rem, 5.5vw, 4.95rem) clamp(1.75rem, 4vw, 3rem) clamp(2.1rem, 3vw, 2.75rem);
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 16%, rgba(181,206,82,0.15), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(122,93,191,0.26), transparent 26%),
    radial-gradient(circle at 70% 88%, rgba(4,64,72,0.5), transparent 28%),
    linear-gradient(135deg, #011820 0%, #012d31 45%, #04454d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 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)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -28%;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,206,82,0.14), transparent 68%);
  filter: blur(8px);
  z-index: 0;
}
.hero-shell {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 3rem;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  max-width: 720px;
}
.hero-kicker-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-title {
  width: 100%;
  max-width: 13.5ch;
  font-family: var(--font-family-base);
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: white;
}
.hero-lede {
  width: 100%;
  max-width: 42ch;
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 0.4rem;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hero-btn:hover {
  transform: translateY(-2px);
}
.hero-btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 16px 32px rgba(181,206,82,0.24);
}
.hero-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 22px 38px rgba(181,206,82,0.3);
}
.hero-btn-secondary {
  color: white;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}
.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero-orbit-a {
  width: min(36vw, 480px);
  aspect-ratio: 1;
  top: 4%;
  right: 4%;
}
.hero-orbit-b {
  width: min(28vw, 360px);
  aspect-ratio: 1;
  left: 8%;
  bottom: 8%;
  border-color: rgba(181,206,82,0.16);
}
.hero-video-card {
  position: relative;
  z-index: 2;
  width: min(100%, 790px);
  border-radius: 34px;
  background: transparent;
  border: 0;
  box-shadow: 0 34px 90px rgba(0,0,0,0.34);
}
.hero-video-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 34px;
  background: #061217;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-video-launch {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: white;
}
.hero-video-poster,
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(1,24,32,0.92);
}
.hero-video-play {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #012d31;
  box-shadow:
    0 18px 42px rgba(1,24,32,0.34),
    0 0 0 12px rgba(255,255,255,0.08);
  transform: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-video-play svg {
  width: 1.95rem;
  height: 1.95rem;
  margin-left: 0.22rem;
}
.hero-video-launch:hover .hero-video-play,
.hero-video-launch:focus-visible .hero-video-play {
  transform: scale(1.05);
  background: rgba(255,255,255,0.98);
  box-shadow:
    0 24px 52px rgba(1,24,32,0.38),
    0 0 0 14px rgba(255,255,255,0.1);
}
.hero-video-launch:focus-visible {
  outline: 2px solid rgba(181,206,82,0.92);
  outline-offset: 6px;
}
.hero-video-card.is-video-active {
  border-radius: 34px;
}
.hero-video-card.is-video-active .hero-video-stage {
  border-radius: 34px;
  box-shadow: none;
}
.hero-video {
  background: #02070a;
}
.hero-ecosystem {
  position: relative;
  z-index: 3;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #0a1f24;
}
.hero-ecosystem-separator {
  display: none;
}
.hero-ecosystem-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url('/images/grupo-benitez-hero-poster.jpg?v=mnf4z6c6') center center / cover no-repeat;
}
.hero-ecosystem-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
.hero-ecosystem-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero-ecosystem-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.hero-ecosystem-audio-toggle {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  top: clamp(1rem, 2.5vw, 2rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #07131a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.hero-ecosystem-audio-toggle:hover,
.hero-ecosystem-audio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
}
.hero-ecosystem-audio-toggle[data-muted="false"] {
  background: rgba(10,24,40,0.92);
  color: #ffffff;
}
.hero-ecosystem-audio-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.hero-ecosystem-audio-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.hero-ecosystem-audio-icon-unmuted {
  opacity: 0;
  transform: scale(0.88);
}
.hero-ecosystem-audio-toggle[data-muted="false"] .hero-ecosystem-audio-icon-muted {
  opacity: 0;
  transform: scale(0.88);
}
.hero-ecosystem-audio-toggle[data-muted="false"] .hero-ecosystem-audio-icon-unmuted {
  opacity: 1;
  transform: scale(1);
}
.section-video-fullscreen-toggle {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #07131a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.section-video-fullscreen-toggle:hover,
.section-video-fullscreen-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
}
.section-video-fullscreen-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}
.hero-logo-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 256px);
  padding: 1.5rem 1.15rem 1.05rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.07) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
  text-align: center;
}
.hero-group-logo {
  width: min(100%, 164px);
  height: auto;
  margin: 0 auto 0.95rem;
  filter: drop-shadow(0 20px 40px rgba(181,206,82,0.16));
}
.hero-brand-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: max-content;
  align-content: center;
  padding: 0.25rem;
  column-gap: 1.35rem;
  row-gap: 1.35rem;
}
.hero-brand-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 260px);
  min-height: 185px;
  padding: 1.1rem 1.1rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(4, 22, 25, 0.56);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.16);
  transform: translate(var(--brand-x, 0), var(--brand-y, 0));
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.hero-brand-card.reveal {
  opacity: 0;
  transform: translate(var(--brand-x, 0), calc(var(--brand-y, 0) + 40px));
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}
.hero-brand-card.reveal.visible {
  opacity: 1;
  transform: translate(var(--brand-x, 0), var(--brand-y, 0));
}
.hero-brand-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-color), transparent);
}
.hero-brand-card:hover {
  transform: translate(var(--brand-hover-x, var(--brand-x, 0)), var(--brand-hover-y, calc(var(--brand-y, 0) - 6px)));
  border-color: rgba(255,255,255,0.18);
  background: rgba(7, 28, 31, 0.72);
}
.hero-brand-card.reveal.visible:hover {
  transform: translate(var(--brand-hover-x, var(--brand-x, 0)), var(--brand-hover-y, calc(var(--brand-y, 0) - 6px)));
}
.hero-brand-card:nth-child(1) {
  --brand-x: -52px;
  --brand-y: -32px;
  --brand-hover-x: -70px;
  --brand-hover-y: -44px;
  justify-self: start;
  align-self: start;
}
.hero-brand-card:nth-child(2) {
  --brand-x: 52px;
  --brand-y: -32px;
  --brand-hover-x: 70px;
  --brand-hover-y: -44px;
  justify-self: end;
  align-self: start;
  text-align: right;
}
.hero-brand-card:nth-child(3) {
  --brand-x: -52px;
  --brand-y: 32px;
  --brand-hover-x: -70px;
  --brand-hover-y: 44px;
  justify-self: start;
  align-self: end;
}
.hero-brand-card:nth-child(4) {
  --brand-x: 52px;
  --brand-y: 32px;
  --brand-hover-x: 70px;
  --brand-hover-y: 44px;
  justify-self: end;
  align-self: end;
  text-align: right;
}
.hero-brand-eyebrow {
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-brand-logo-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.85rem 0 0.95rem;
}
.hero-brand-card:nth-child(2) .hero-brand-logo-wrap,
.hero-brand-card:nth-child(4) .hero-brand-logo-wrap {
  justify-content: flex-end;
}
.hero-brand-logo {
  width: auto;
  height: auto;
  max-height: 72px;
  max-width: 220px;
}
.hero-brand-card .empresa-logo-estudio { max-width: 205px; }
.hero-brand-card .empresa-logo-stand { max-width: 150px; }
.hero-brand-card .empresa-logo-luna { max-width: 126px; }
.hero-brand-card .empresa-logo-films { max-width: 132px; }
.hero-brand-title {
  width: 85%;
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
  line-height: 1.5;
}
.hero-brand-card:nth-child(2) .hero-brand-title,
.hero-brand-card:nth-child(4) .hero-brand-title {
  margin-left: auto;
}
.hero-scroll-btn {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  animation: gentlePulse 2.5s ease-in-out infinite;
  z-index: 2;
  transition: opacity 0.3s;
}
.hero-scroll-btn:hover { opacity: 0.7; }
@keyframes gentlePulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ============================================================
   EMPRESAS
   ============================================================ */
.empresas {
  position: relative;
  z-index: 3;
  padding: 6.5rem 1.5rem 7rem;
  background:
    radial-gradient(circle at top, rgba(181,206,82,0.1), transparent 35%),
    linear-gradient(180deg, #f4f2ec 0%, #ebe8e1 100%);
}
.section-intro {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}
.section-lede {
  max-width: 60ch;
  margin: 1.25rem auto 0;
  color: var(--text-3);
  font-size: 1.06rem;
  line-height: 1.75;
}
.empresas-heading {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--primary-dark);
}
.empresas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}
.brand-eb { --brand-color: #2e9c47; }
.brand-ss { --brand-color: #6e56cf; }
.brand-lb { --brand-color: #8DA2C3; }
.brand-films { --brand-color: #cc2222; }
.empresa-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  cursor: pointer;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(1,45,49,0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s,
              border-color 0.4s;
}
.empresa-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand-color);
}
.empresa-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.85), transparent 68%);
  opacity: 0.58;
  pointer-events: none;
}
.empresa-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.86);
  border-color: rgba(1,45,49,0.14);
  box-shadow: 0 30px 64px rgba(4,18,22,0.12);
}
.empresa-eyebrow {
  position: relative;
  z-index: 1;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.empresa-logo-area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-height: 124px;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.35rem;
}
.empresa-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 360px;
}
.empresa-logo-estudio {
  max-width: 300px;
}
.empresa-logo-stand {
  max-width: 190px;
}
.empresa-logo-luna {
  max-width: 170px;
}
.empresa-logo-films {
  max-width: 160px;
}
.empresa-title {
  position: relative;
  z-index: 1;
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--text);
  max-width: 24ch;
  margin-inline: auto;
}
.empresa-copy {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  color: var(--text-3);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 34ch;
  margin-inline: auto;
}
.empresa-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--brand-color);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ============================================================
   COMPANY SECTION SHARED
   ============================================================ */
.company-section {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.subsection {
  position: relative;
}


/* ============================================================
   ESTUDIO BENÍTEZ
   ============================================================ */
.eb-section {
  background: #f1f1ef;
}

.eb-hero {
  position: relative;
  z-index: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #041216;
}
.eb-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #041216;
}
.eb-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.eb-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: none;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-sizing: border-box;
}
.eb-hero-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  padding: clamp(0.78rem, 1.6vw, 1.1rem) clamp(1.15rem, 2.3vw, 1.65rem);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 50%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.74) 34%, rgba(255,255,255,0.18) 72%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
}
.eb-hero-logo {
  display: block;
  width: auto !important;
  height: clamp(3.5rem, 5.35vw, 4.85rem);
  max-width: 100%;
  margin-inline: -1.15rem;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.18));
}
.eb-hero-audio-toggle {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  top: clamp(1rem, 2.5vw, 2rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #07131a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.eb-hero-audio-toggle:hover,
.eb-hero-audio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
}
.eb-hero-audio-toggle[data-muted="false"] {
  background: rgba(8,25,29,0.92);
  color: #ffffff;
}
.eb-hero-audio-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.eb-hero-audio-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.eb-hero-audio-icon-unmuted {
  opacity: 0;
  transform: scale(0.88);
}
.eb-hero-audio-toggle[data-muted="false"] .eb-hero-audio-icon-muted {
  opacity: 0;
  transform: scale(0.88);
}
.eb-hero-audio-toggle[data-muted="false"] .eb-hero-audio-icon-unmuted {
  opacity: 1;
  transform: scale(1);
}
.eb-story-title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-inline: 0;
  margin-bottom: clamp(1.75rem, 3vw, 2.55rem);
  position: relative;
  z-index: 1;
}
.eb-story-title-image {
  display: block;
  width: min(100%, 390px);
  height: auto;
}
.section-mobile-brand {
  display: none;
  height: auto;
}
.section-mobile-brand-eb {
  width: min(100%, 240px);
}
.section-mobile-brand-ss {
  width: min(100%, 188px);
}
.section-mobile-brand-lb {
  width: min(100%, 180px);
}
.section-mobile-brand-films {
  width: min(100%, 210px);
}

/* Story */
.eb-story-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 800px;
  margin: 0;
  padding: 3rem 2rem 2.5rem;
  background: url('/images/background_banderin.webp?v=mnf4z6c6') center center / cover no-repeat;
  overflow: hidden;
}
.eb-story-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: min(100%, 1100px);
}
.eb-story-section::before,
.eb-story-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.eb-story-section::before {
  width: 420px;
  height: 420px;
  left: -6%;
  top: 16%;
  background: radial-gradient(circle, rgba(181,206,82,0.2), transparent 68%);
  animation: ebStoryGlow 8s ease-in-out infinite;
}
.eb-story-section::after {
  width: 320px;
  height: 320px;
  right: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(248,176,59,0.16), transparent 70%);
  animation: ebStoryGlow 9s ease-in-out 1.5s infinite;
}
.eb-story-card {
  background: var(--surface-warm);
  border-radius: 24px;
  padding: 2.55rem 2.4rem 2.2rem;
  border: 1.5px solid var(--border-warm);
  width: min(100%, 840px);
  flex: 0 1 840px;
  font-size: var(--fs-body-lg);
  line-height: 1.62;
  color: var(--text-2);
  position: relative;
  margin: 0;
  box-shadow: 0 20px 46px rgba(0,0,0,0.08);
  z-index: 1;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.eb-story-card::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 2.4rem;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #f8b03b 100%);
  transform: scaleX(0.4);
  transform-origin: left center;
  opacity: 0.72;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s ease;
}
.eb-story-card::after {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.38), transparent 68%);
  opacity: 0.7;
  animation: ebStoryShimmer 10s linear infinite;
  pointer-events: none;
}
.eb-story-card.visible::before {
  transform: scaleX(1);
  opacity: 1;
}
.eb-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.11);
}
.eb-story-card p { margin-bottom: 1rem; }
.eb-story-card p:last-child { margin-bottom: 0; }
.eb-banderin-wrap {
  width: clamp(160px, 18vw, 260px);
  height: auto;
  flex-shrink: 0;
  margin: 16rem 0 0 -5rem;
  position: relative;
  z-index: 2;
}
.eb-banderin-wrap::before {
  content: "";
  position: absolute;
  inset: auto 6% 6% 6%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,45,49,0.26), transparent 72%);
  filter: blur(6px);
  animation: ebBanderinShadow 4.8s ease-in-out infinite;
}
.eb-banderin {
  width: clamp(160px, 18vw, 260px);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.14));
}
.eb-banderin-wrap.visible .eb-banderin {
  animation: ebBanderinFloat 4.8s ease-in-out infinite;
}
@keyframes ebStoryGlow {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.72; }
  50% { transform: scale(1.08) translate3d(0, -10px, 0); opacity: 1; }
}
@keyframes ebStoryShimmer {
  0% { transform: translate3d(-30px, 0, 0) rotate(0deg); }
  50% { transform: translate3d(60px, 12px, 0) rotate(8deg); }
  100% { transform: translate3d(-30px, 0, 0) rotate(0deg); }
}
@keyframes ebBanderinFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(2deg); }
}
@keyframes ebBanderinShadow {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  50% { transform: scaleX(0.86); opacity: 0.2; }
}
/* Products */
.eb-products {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 4.75rem 1.5rem 6rem;
  background:
    radial-gradient(circle at 10% 14%, rgba(20,153,143,0.08), transparent 22%),
    radial-gradient(circle at 92% 8%, rgba(248,176,59,0.12), transparent 24%),
    linear-gradient(180deg, #f6f4ee 0%, #ece8df 100%);
}
.eb-products::before,
.eb-products::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.eb-products::before {
  width: 320px;
  height: 320px;
  left: -7rem;
  top: 10rem;
  background: radial-gradient(circle, rgba(20,153,143,0.16), transparent 72%);
}
.eb-products::after {
  width: 360px;
  height: 360px;
  right: -8rem;
  bottom: -5rem;
  background: radial-gradient(circle, rgba(248,176,59,0.16), transparent 72%);
}
.eb-products-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.eb-products-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  max-width: 760px;
  margin: 0 auto 2.8rem;
  text-align: center;
}
.eb-products-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(20,153,143,0.1);
  color: #0f6b63;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.eb-products-heading {
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
  margin: 0;
}
.eb-products-lede {
  max-width: 58ch;
  color: var(--text-3);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0;
}
.eb-products-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.eb-products-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(1,24,32,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 600;
}
.eb-products-showcase {
  display: grid;
  gap: 1.4rem;
}
.eb-accent-teal {
  --eb-accent: #14998F;
  --eb-accent-soft: rgba(20,153,143,0.14);
}
.eb-accent-orange {
  --eb-accent: #F8B03B;
  --eb-accent-soft: rgba(248,176,59,0.16);
}
.eb-accent-red {
  --eb-accent: #EB5856;
  --eb-accent-soft: rgba(235,88,86,0.14);
}
.eb-accent-green {
  --eb-accent: #00A458;
  --eb-accent-soft: rgba(0,164,88,0.14);
}
.eb-products-feature,
.eb-products-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(1,24,32,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(247,244,237,0.98) 100%);
  box-shadow:
    0 22px 56px rgba(4,18,22,0.08),
    0 8px 22px rgba(0,0,0,0.04);
}
.eb-products-feature::before,
.eb-products-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--eb-accent) 0%, transparent 78%);
}
.eb-products-feature::after,
.eb-products-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--eb-accent-soft), transparent 72%);
  pointer-events: none;
}
.eb-products-feature::after {
  width: 280px;
  height: 280px;
  top: -9rem;
  right: -5rem;
}
.eb-products-card::after {
  width: 180px;
  height: 180px;
  right: -4rem;
  bottom: -4rem;
}
.eb-products-feature {
  padding: 2rem;
}
.eb-products-feature-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.eb-products-feature-copy {
  max-width: 58ch;
}
.eb-products-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--eb-accent-soft);
  color: var(--eb-accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eb-products-feature-copy p,
.eb-products-card p {
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}
.eb-products-feature-copy p {
  max-width: 52ch;
}
.eb-products-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 124px;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--eb-accent-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  text-align: center;
}
.eb-products-count strong {
  font-family: var(--font-family-base);
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--eb-accent);
}
.eb-products-count span {
  margin-top: 0.45rem;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eb-products-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.eb-products-column {
  position: relative;
  z-index: 1;
  padding: 1.3rem 1.2rem 1.15rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(20,153,143,0.14);
}
.eb-products-column-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}
.eb-products-column-label {
  color: rgba(1,24,32,0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eb-products-column-size {
  color: var(--eb-accent);
  font-size: 0.84rem;
  font-weight: 900;
}
.eb-products-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.eb-products-card {
  padding: 1.6rem 1.4rem 1.45rem;
}
.eb-products-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.eb-products-card-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--eb-accent-soft);
  color: var(--eb-accent);
  font-family: var(--font-family-base);
  font-size: 1.15rem;
  font-weight: 900;
  flex: 0 0 auto;
}
.eb-cat-title {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  padding-left: 0;
  border-left: none;
}
.eb-cat-title {
  position: relative;
  z-index: 1;
}
.eb-cat-green { color: #00A458; }
.eb-cat-orange { color: #F8B03B; }
.eb-cat-red { color: #EB5856; }
.eb-cat-teal { color: #14998F; }
.eb-product-list {
  list-style-type: decimal;
  list-style-position: outside;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
  padding-left: 1.45rem;
  position: relative;
  z-index: 1;
}
.eb-product-list li {
  padding-left: 0.3rem;
}
.eb-product-list li + li {
  margin-top: 0.16rem;
}
.eb-products-secondary .eb-product-list li::marker,
.eb-products-main-grid .eb-product-list li::marker {
  color: var(--eb-accent, currentColor);
  font-weight: 700;
}
/* ============================================================
   STAND STUDIO
   ============================================================ */
.ss-section { background: white; }

.ss-hero {
  position: relative;
  z-index: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(152,194,232,0.18), transparent 24%),
    linear-gradient(135deg, #12164c 0%, #2b2f87 48%, #e8edf7 100%);
}
.ss-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #eef2f9;
}
.ss-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 14, 50, 0.14) 0%, rgba(10, 14, 50, 0.02) 42%, rgba(10, 14, 50, 0.08) 100%),
    radial-gradient(circle at 85% 18%, rgba(255,255,255,0.12), transparent 22%);
}
.ss-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.ss-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: clamp(1.2rem, 2.8vw, 2rem);
}
.ss-hero-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: clamp(0.78rem, 1.6vw, 1.1rem) clamp(1.05rem, 2.2vw, 1.6rem);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(18,22,76,0.9) 0%, rgba(67,72,165,0.76) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 42px rgba(9,14,50,0.2);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
}
.ss-hero-logo {
  display: block;
  width: auto !important;
  height: clamp(3.25rem, 5.2vw, 4.7rem);
  max-width: 100%;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.18));
}
.ss-hero-audio-toggle {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  top: clamp(1rem, 2.5vw, 2rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(18,22,76,0.88);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(9,14,50,0.22);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.ss-hero-audio-toggle:hover,
.ss-hero-audio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(9,14,50,0.26);
}
.ss-hero-audio-toggle[data-muted="false"] {
  background: rgba(255,255,255,0.96);
  color: #13184f;
}
.ss-hero-audio-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.ss-hero-audio-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.ss-hero-audio-icon-unmuted {
  opacity: 0;
  transform: scale(0.88);
}
.ss-hero-audio-toggle[data-muted="false"] .ss-hero-audio-icon-muted {
  opacity: 0;
  transform: scale(0.88);
}
.ss-hero-audio-toggle[data-muted="false"] .ss-hero-audio-icon-unmuted {
  opacity: 1;
  transform: scale(1);
}
.ss-hero-fullscreen-toggle.section-video-fullscreen-toggle {
  left: clamp(1rem, 2.5vw, 2rem);
  top: clamp(4.8rem, 7.4vw, 5.6rem);
  background: rgba(18,22,76,0.88);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
}

/* About */
.ss-about {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 0%, rgba(110, 86, 207, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8f7fb 100%);
  padding: 6.2rem 2rem 2.8rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ss-about-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 2.85rem;
}
.ss-about-title-image {
  width: min(100%, 420px);
  height: auto;
}
.ss-about-stage {
  position: relative;
  width: min(100%, 1420px);
  min-height: clamp(470px, 47vw, 640px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 0 0.6rem;
}
.ss-about-lines {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(136%, 1840px);
  height: auto;
  transform: translate(-50%, -42%);
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.06);
}
.ss-about-card {
  width: min(100%, 860px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(242,243,247,0.96) 100%);
  border: 1px solid rgba(27,31,99,0.08);
  border-radius: 30px;
  padding: 5.8rem 5.5rem 3.4rem;
  box-shadow:
    0 30px 90px rgba(29,31,99,0.1),
    0 10px 26px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.ss-about-card::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #98c2e8 0%, #5757a6 100%);
  opacity: 0.9;
}
.ss-about-card::after {
  content: "";
  position: absolute;
  inset: auto 2rem 2rem auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,86,207,0.09), transparent 70%);
  pointer-events: none;
}
.ss-about-logo {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto 1.4rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -42%);
  filter: drop-shadow(0 14px 30px rgba(27,31,99,0.12));
}
.ss-about-card p {
  font-size: var(--fs-body-lg);
  color: var(--text-2);
  line-height: 1.45;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}
.ss-about-card p:last-child { margin-bottom: 0; }

.ss-givenchy {
  position: relative;
  z-index: 2;
  padding: 2.4rem 1.5rem 4.5rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    radial-gradient(circle at 16% 14%, rgba(251, 100, 34, 0.08), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(122, 93, 191, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f7fb 0%, #fcfbfe 100%);
}
.ss-givenchy-intro {
  max-width: 780px;
  margin: 0 auto 1.85rem;
  text-align: center;
}
.ss-givenchy-title {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #1b1f63;
}
.ss-givenchy-subtitle {
  margin: 0.7rem auto 0;
  max-width: 56ch;
  color: var(--text-3);
  font-size: 1rem;
  line-height: 1.68;
}
.ss-givenchy-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.ss-givenchy-video-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    0 22px 42px rgba(27,31,99,0.12),
    0 8px 20px rgba(0,0,0,0.05);
}
.ss-givenchy-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  background: #0c0d13;
}

/* Services */
.ss-services {
  position: relative;
  z-index: 2;
  padding: 5.75rem 1.5rem 5.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 100%);
  display: flex;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.ss-services-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ss-services-lines {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: min(100%, 1720px);
  height: auto;
  transform: translateX(-50%);
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}
.ss-svc-title {
  text-align: center;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: white;
  background: #1b1f63;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  width: fit-content;
  min-width: min(100%, 260px);
  margin: 0 auto 6.4rem;
  position: static;
  transform: none;
  border-radius: 999px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 32px rgba(27,31,99,0.12);
  margin-bottom: 1rem;
}
.ss-svc-lede {
  max-width: 58ch;
  margin: 0 auto 2.35rem;
  color: var(--text-3);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}
.ss-svc-band {
  position: relative;
  width: min(100%, 1240px);
  padding: 1.7rem 1.2rem 1.2rem;
  border-radius: 36px;
  background: linear-gradient(90deg, #fb6422 0%, #c35d7e 52%, #5638f1 100%);
  box-shadow: 0 30px 70px rgba(116, 86, 190, 0.16);
  overflow: hidden;
}
.ss-svc-band::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  pointer-events: none;
}
.ss-svc-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -10%;
  bottom: -44%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 72%);
  pointer-events: none;
}
.ss-svc-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.45rem;
}
.ss-svc-kicker {
  color: rgba(255,255,255,0.86);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.ss-svc-tags {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
}
.ss-svc-tags span {
  border: 2px solid rgba(243,100,35,0.88);
  color: #1b1f63;
  background: rgba(248,249,252,0.96);
  font-weight: 900;
  font-size: clamp(0.95rem, 1.65vw, 1.3rem);
  line-height: 1;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(27,31,99,0.08);
}
.ss-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
}
.ss-gal-item {
  position: relative;
  grid-column: auto;
  overflow: hidden;
  border-radius: 24px;
  height: 300px;
  min-height: 300px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ss-gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14,16,49,0.82) 0%, rgba(14,16,49,0.36) 42%, transparent 72%),
    linear-gradient(to bottom, rgba(255,255,255,0.08), transparent 28%);
  opacity: 1;
  transition: opacity 0.4s, background 0.4s;
  pointer-events: none;
}
.ss-gal-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px rgba(0,0,0,0.16);
}
.ss-gal-item:hover::after {
  background:
    linear-gradient(to top, rgba(14,16,49,0.88) 0%, rgba(14,16,49,0.42) 44%, transparent 74%),
    linear-gradient(to bottom, rgba(255,255,255,0.1), transparent 28%);
}
.ss-gal-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ss-gal-item-givenchy img {
  object-position: center 64%;
}
.ss-gallery > .ss-gal-item:nth-child(1) {
  grid-column: 2 / span 2;
}
.ss-gallery > .ss-gal-item:nth-child(2) {
  grid-column: 4 / span 2;
}
.ss-gallery > .ss-gal-item:nth-child(3) {
  grid-column: 6 / span 2;
}
.ss-gal-item-givenchy {
  grid-column: 2 / span 2;
}
.ss-gal-item-outdoor {
  grid-column: 4 / span 4;
}
.ss-gal-item-outdoor img {
  object-position: center;
}
.ss-gal-item:hover img { transform: scale(1.08); }
.ss-gal-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ss-gal-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.ss-gal-copy strong {
  color: white;
  font-size: 1.02rem;
  line-height: 1.2;
  text-shadow: 0 8px 22px rgba(0,0,0,0.24);
}

/* ============================================================
   LUNA B
   ============================================================ */
.lb-section { background: white; }

.lb-hero {
  position: relative;
  z-index: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lb-night);
}
.lb-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url('/images/lunabe_background.webp?v=mnf4z6c6') left bottom / cover no-repeat;
}
.lb-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
.lb-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: clamp(1.2rem, 2.8vw, 2rem);
}
.lb-hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: clamp(0.78rem, 1.6vw, 1.1rem) clamp(1.15rem, 2.3vw, 1.65rem);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 50%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.74) 34%, rgba(255,255,255,0.18) 72%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
}
.lb-hero-logo {
  display: block;
  width: auto !important;
  height: clamp(3.25rem, 5vw, 4.5rem);
  max-width: 100%;
  filter:
    brightness(0)
    saturate(100%)
    invert(8%)
    sepia(24%)
    saturate(1056%)
    hue-rotate(176deg)
    brightness(94%)
    contrast(94%)
    drop-shadow(0 14px 28px rgba(0,0,0,0.16));
}
.lb-hero-audio-toggle {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  top: clamp(1rem, 2.5vw, 2rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #07131a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.lb-hero-audio-toggle:hover,
.lb-hero-audio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
}
.lb-hero-audio-toggle[data-muted="false"] {
  background: rgba(10,24,40,0.92);
  color: #ffffff;
}
.lb-hero-audio-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lb-hero-audio-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.lb-hero-audio-icon-unmuted {
  opacity: 0;
  transform: scale(0.88);
}
.lb-hero-audio-toggle[data-muted="false"] .lb-hero-audio-icon-muted {
  opacity: 0;
  transform: scale(0.88);
}
.lb-hero-audio-toggle[data-muted="false"] .lb-hero-audio-icon-unmuted {
  opacity: 1;
  transform: scale(1);
}


.lb-nosotros-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 24%, rgba(141,162,195,0.26), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(10,24,40,0.08), transparent 28%),
    url('/images/lunabe_nosotros_bg.webp?v=mnf4z6c6') center bottom / cover no-repeat;
  padding: 4.25rem 1.5rem 6.5rem;
}
.lb-nosotros-wrap::before,
.lb-nosotros-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.lb-nosotros-wrap::before {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(141,162,195,0.22), transparent 70%);
}
.lb-nosotros-wrap::after {
  width: 300px;
  height: 300px;
  bottom: -10%;
  left: 8%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 72%);
}
.lb-nosotros-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 2.6rem;
}
.lb-nosotros-title-image {
  width: min(100%, 430px);
  height: auto;
}


/* History */
.lb-history {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 720px);
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
}
.lb-history-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.4rem 0 0.4rem 0.2rem;
}
.lb-history-logo {
  width: min(100%, 250px);
}
.lb-history-right {
  width: 100%;
}
.lb-history-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 34px;
  padding: 2.4rem 2.7rem 2.35rem;
  box-shadow: 0 28px 64px rgba(10,24,40,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lb-history-card::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 2.7rem;
  width: 98px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8DA2C3 0%, #0a1828 100%);
}
.lb-history-card::after {
  content: "";
  position: absolute;
  inset: auto -44px -52px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,162,195,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lb-legacy-title {
  display: block;
  width: min(100%, 330px);
  height: auto;
  margin-bottom: 1.9rem;
}
.lb-history-right p {
  position: relative;
  z-index: 1;
  font-size: var(--fs-body-lg);
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  text-align: left;
}
.lb-history-lead {
  font-size: clamp(1.18rem, 1.8vw, 1.42rem) !important;
  line-height: 1.48 !important;
  color: var(--lb-dark) !important;
}
.lb-history-lead strong {
  color: var(--lb-dark);
}

/* Services */
.lb-services {
  position: relative;
  z-index: 2;
  background: white;
  padding: 4.5rem 1.5rem 4.75rem;
}
.lb-services-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.lb-services-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  background: rgba(141,162,195,0.14);
  color: #425473;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.lb-services-title {
  max-width: 14ch;
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #141722;
  margin: 0;
}
.lb-services-copy {
  max-width: 52ch;
  color: #51607b;
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
}
.lb-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.lb-svc-item {
  --lb-svc-accent: #8DA2C3;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(141,162,195,0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  box-shadow: 0 14px 28px rgba(21,33,53,0.06);
}
.lb-svc-item:nth-child(1) { --lb-svc-accent: #7c94bc; }
.lb-svc-item:nth-child(2) { --lb-svc-accent: #d07287; }
.lb-svc-item:nth-child(3) { --lb-svc-accent: #6d89b6; }
.lb-svc-item:nth-child(4) { --lb-svc-accent: #7b9fce; }
.lb-svc-item:nth-child(5) { --lb-svc-accent: #869c63; }
.lb-svc-separator {
  display: none;
}
.lb-svc-title-wrap {
  min-height: 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 0.2rem;
}
/* 1-line labels: Campañas, Branding */
.lb-svc-title-img[src*="campanas"],
.lb-svc-title-img[src*="branding"] {
  display: block;
  width: auto !important;
  height: auto;
  max-height: 2.45rem;
  max-width: 100%;
}
/* 2-line labels: Redes Sociales, Página Web, Relaciones Públicas */
.lb-svc-title-img[src*="redes_sociales"],
.lb-svc-title-img[src*="pagina_web"],
.lb-svc-title-img[src*="relaciones_publicas"] {
  display: block;
  width: auto !important;
  height: auto;
  max-height: 4.4rem;
  max-width: 100%;
}
.lb-svc-item p {
  font-size: 0.98rem;
  color: #44506a;
  line-height: 1.68;
  margin: 0;
}
.lb-svc-nums {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
  padding-top: 0.1rem;
}
.lb-svc-nums-row {
  gap: 0.5rem;
}
.lb-svc-nums > div, .lb-svc-nums-row > div {
  font-size: 0.88rem;
  color: #203049;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 0;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(141,162,195,0.16);
  line-height: 1.35;
}
.lb-n {
  font-family: var(--font-family-base);
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--lb-svc-accent);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(141,162,195,0.12);
  flex-shrink: 0;
}

/* Casos */
.lb-casos {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(141,162,195,0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(246,181,204,0.14), transparent 21%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  padding: 4.5rem 2rem 4.75rem;
}
.lb-casos::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(141,162,195,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(141,162,195,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
}
.lb-casos-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.lb-casos-intro-head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.lb-casos-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.44rem 0.78rem;
  border-radius: 999px;
  background: rgba(141,162,195,0.14);
  color: #425473;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.lb-casos-title-img {
  display: block;
  width: min(100%, 220px) !important;
  max-width: none;
  height: auto;
  margin: 0;
}
.lb-casos-copy {
  max-width: 56ch;
  color: #44506a;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
.lb-casos-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.lb-casos-grid > * {
  min-width: 0;
}
/* CasoExito component */
.caso-card {
  --case-accent: #8DA2C3;
  --case-soft: rgba(141,162,195,0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
  border: 1px solid rgba(141,162,195,0.24);
  box-shadow: 0 18px 38px rgba(24,34,54,0.09);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.caso-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, var(--case-soft), transparent 36%);
}
.lb-casos-grid > *:nth-child(1) .caso-card {
  --case-accent: #5b79d5;
  --case-soft: rgba(91,121,213,0.16);
}
.lb-casos-grid > *:nth-child(2) .caso-card {
  --case-accent: #d36a87;
  --case-soft: rgba(211,106,135,0.16);
}
.lb-casos-grid > *:nth-child(3) .caso-card {
  --case-accent: #82a654;
  --case-soft: rgba(130,166,84,0.16);
}
.caso-card:hover {
  transform: translateY(-8px);
  border-color: rgba(141,162,195,0.36);
  box-shadow: 0 26px 52px rgba(24,34,54,0.14);
}
.caso-header {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.25rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.95rem;
  flex-shrink: 0;
}
.caso-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.74rem;
  border-radius: 999px;
  background: var(--case-soft);
  color: var(--case-accent);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.caso-logo {
  display: block;
  width: 100% !important;
  height: 4.6rem;
  object-fit: contain;
  object-position: left center;
}
.caso-image-wrap {
  padding: 0 1.25rem 0;
  position: relative;
  z-index: 3;
}
.caso-image {
  display: block;
  width: 100%;
  aspect-ratio: 436 / 413;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px 24px 0 0;
}
.caso-numbers {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  margin: -1.1rem 1.25rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(141,162,195,0.22);
  padding: 1.55rem 1rem 1rem;
}
.caso-results-label {
  color: #4c5a78;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}
.caso-numbers-img {
  display: block;
  width: min(100%, 235px) !important;
  height: auto;
  margin: 0 auto;
}

/* Clients */
.lb-clients {
  position: relative;
  z-index: 2;
  padding: 4.5rem 2rem 4.75rem;
  background: white;
}
.lb-clients-intro {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.lb-clients-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  background: rgba(141,162,195,0.14);
  color: #425473;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.lb-clients-title {
  max-width: 16ch;
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #141722;
  margin: 0;
}
.lb-clients-copy {
  max-width: 52ch;
  color: #51607b;
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
}
.lb-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
  max-width: 1120px;
  margin: 0 auto;
}
.lb-client-item {
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  border-radius: 20px;
  border: 1px solid rgba(141,162,195,0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.lb-client-item:hover {
  transform: translateY(-3px);
  border-color: rgba(141,162,195,0.28);
  background: #ffffff;
}
/* Each logo sized via inline style in HTML */
.lb-client-item img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.94;
}

/* ============================================================
   321 FILMS
   ============================================================ */
.films-section { background: white; }

.films-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #07080c;
}
.films-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #07080c;
}
.films-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.films-hero-video {
  pointer-events: none;
}
.films-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: none;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-sizing: border-box;
}
.films-hero-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: clamp(0.8rem, 1.6vw, 1.15rem) clamp(1.2rem, 2.4vw, 1.7rem);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 50%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.74) 34%, rgba(255,255,255,0.18) 72%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
}
.films-hero-logo {
  display: block;
  width: auto !important;
  height: clamp(3.55rem, 5.2vw, 4.8rem);
  max-width: 100%;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.2));
}
.films-hero-audio-toggle {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  top: clamp(1rem, 2.5vw, 2rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #07131a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.films-hero-audio-toggle:hover,
.films-hero-audio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
}
.films-hero-audio-toggle[data-muted="false"] {
  background: rgba(17,17,19,0.92);
  color: #ffffff;
}
.films-hero-audio-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.films-hero-audio-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}
.films-hero-audio-icon-unmuted {
  opacity: 0;
  transform: scale(0.88);
}
.films-hero-audio-toggle[data-muted="false"] .films-hero-audio-icon-muted {
  opacity: 0;
  transform: scale(0.88);
}
.films-hero-audio-toggle[data-muted="false"] .films-hero-audio-icon-unmuted {
  opacity: 1;
  transform: scale(1);
}
/* Story */
.films-story {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  isolation: isolate;
  padding: 3.2rem 1.5rem 5rem;
  background: #fff;
}
.films-story-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 2.4rem;
}
.films-story-title-img {
  display: block;
  width: min(100%, 430px);
  height: auto;
}
.films-story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 720px);
  gap: 3rem;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.films-chain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.4rem 0 0.4rem 0.2rem;
}
.films-chain-logo {
  display: block;
  width: min(100%, 250px) !important;
  height: auto !important;
}
.films-story-text {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2.4rem 2.7rem 2.35rem;
  border-radius: 34px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.52);
  box-shadow: 0 28px 64px rgba(33,28,30,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.films-story-text::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 2.7rem;
  width: 98px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d44853 0%, #111113 100%);
}
.films-story-text::after {
  content: "";
  position: absolute;
  inset: auto -42px -54px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,17,19,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.films-story-text p {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.15rem;
}
.films-story-text p:first-child {
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.48;
  color: #111113;
}
.films-story-text p:last-of-type {
  margin-bottom: 0;
}
.films-story-text strong {
  color: #111113;
}
/* Director */
.films-light-bg {
  background: #f2f0ed;
}
.films-director-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 4.2rem 1.5rem 4.8rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(212,72,83,0.08), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(17,17,19,0.06), transparent 22%),
    linear-gradient(180deg, #f5f2ee 0%, #ede9e4 100%);
}
.films-director-wrap::before,
.films-director-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.films-director-wrap::before {
  width: 320px;
  height: 320px;
  left: -7rem;
  top: 2rem;
  background: radial-gradient(circle, rgba(212,72,83,0.14), transparent 72%);
}
.films-director-wrap::after {
  width: 260px;
  height: 260px;
  right: -5rem;
  bottom: -4rem;
  background: radial-gradient(circle, rgba(17,17,19,0.08), transparent 72%);
}
.films-director {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.films-dir-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: 760px;
  text-align: center;
}
.films-dir-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(212,72,83,0.1);
  color: #a52c36;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.films-dir-body {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  width: 100%;
}
.films-dir-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.films-dir-photo img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(17,17,19,0.16);
}
.films-dir-name {
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--text);
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.films-dir-title {
  color: rgba(17,17,19,0.82);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.films-dir-summary {
  max-width: 54ch;
  color: var(--text-3);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.films-dir-bio {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2.5rem 2.15rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.54);
  box-shadow: 0 28px 64px rgba(17,17,19,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.films-dir-bio::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 2.5rem;
  width: 94px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d44853 0%, #111113 100%);
}
.films-dir-bio::after {
  content: "";
  position: absolute;
  inset: auto -46px -60px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,72,83,0.12), transparent 70%);
  pointer-events: none;
}
.films-dir-bio p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.95rem;
  text-align: left;
}
.films-dir-bio p:first-child {
  font-size: 1.13rem;
  color: #111113;
  line-height: 1.62;
}
.films-dir-bio p:last-child {
  margin-bottom: 0;
}
.films-dir-bio strong {
  color: #111113;
}

/* Services */
.films-services {
  position: relative;
  z-index: 2;
  background: white;
  padding: 4.5rem 1.5rem 5rem;
}
.films-services-shell {
  max-width: 1180px;
  margin: 0 auto;
}
.films-svc-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  max-width: 760px;
  margin: 0 auto 2.35rem;
  text-align: center;
}
.films-svc-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(212,72,83,0.08);
  color: #a52c36;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.films-svc-title {
  text-align: center;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
  color: #111113;
}
.films-svc-lede {
  max-width: 58ch;
  margin: 0;
  color: var(--text-3);
  font-size: 1.02rem;
  line-height: 1.7;
}
.films-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}
.films-svc-item {
  position: relative;
  overflow: hidden;
  min-height: 284px;
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(17,17,19,0.08);
  background: #ffffff;
  box-shadow:
    0 20px 44px rgba(17,17,19,0.06),
    0 8px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.films-svc-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--films-svc-accent, #d44853) 0%, transparent 80%);
}
.films-svc-item::after {
  content: none;
}
.films-svc-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 56px rgba(17,17,19,0.09),
    0 12px 24px rgba(0,0,0,0.04);
  border-color: rgba(17,17,19,0.12);
}
.films-svc-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.films-svc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--films-svc-accent, #d44853);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.films-svc-index {
  color: rgba(17,17,19,0.35);
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.films-svc-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 0.4rem 0;
}
.films-svc-icon {
  display: block;
  width: auto !important;
  max-width: 100%;
  max-height: 108px;
  height: auto;
}
.films-svc-copy {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: var(--text-3);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* Portfolio */
.films-portfolio {
  position: relative;
  z-index: 2;
  padding: 4.8rem 1.5rem 5.5rem;
  background: white;
}
.films-pf-shell {
  max-width: 1240px;
  margin: 0 auto;
}
.films-pf-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.films-pf-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(17,17,19,0.06);
  color: #111113;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.films-pf-title {
  text-align: center;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
  color: #111113;
}
.films-pf-lede {
  max-width: 58ch;
  margin: 0;
  color: var(--text-3);
  font-size: 1.02rem;
  line-height: 1.7;
}
.films-pf-showcase {
  display: grid;
  gap: 1.2rem;
}
.films-pf-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}
.films-pf-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.films-pf-project {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(17,17,19,0.08);
  background: #faf8f5;
  box-shadow:
    0 20px 44px rgba(17,17,19,0.06),
    0 8px 20px rgba(0,0,0,0.03);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.films-pf-project::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #111113 0%, #d44853 100%);
}
.films-pf-project:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 56px rgba(17,17,19,0.09),
    0 12px 24px rgba(0,0,0,0.04);
  border-color: rgba(17,17,19,0.12);
}
.films-pf-project-bodoque {
  grid-column: span 6;
}
.films-pf-project-rabanne {
  grid-column: span 6;
}
.films-pf-project-propietario,
.films-pf-project-maxwell {
  grid-column: 1 / -1;
}
.films-pf-project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}
.films-pf-project-head-compact {
  align-items: flex-start;
}
.films-pf-project-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111113;
  color: white;
  font-family: var(--font-family-base);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}
.films-pf-project-caption {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.films-pf-caption-block {
  display: grid;
  gap: 0.18rem;
  max-width: 100%;
}
.films-pf-caption-block-compact {
  gap: 0.12rem;
}
.films-pf-caption-eyebrow {
  margin: 0;
  color: rgba(17,17,19,0.7);
  font-family: var(--font-family-base);
  font-size: clamp(0.82rem, 1.05vw, 1.02rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.films-pf-caption-title {
  margin: 0;
  color: #1a1a1a;
  font-family: var(--font-family-base);
  font-size: clamp(1.1rem, 1.75vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.films-pf-caption-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.28rem 0 0;
  color: #8c8c92;
  font-family: var(--font-family-base);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.films-pf-caption-meta::before {
  content: "";
  width: 1.85rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c1272d 0%, rgba(193,39,45,0.2) 100%);
}
.films-pf-project-media {
  display: grid;
  gap: 0.9rem;
}
.films-pf-project-media-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.films-pf-project-media-portrait {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.films-pf-project-media-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.films-pf-img {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ebe7e0;
}
.films-pf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.films-pf-img:hover img {
  transform: scale(1.04);
}
.films-pf-project-portrait .films-pf-img,
.films-pf-project-maxwell .films-pf-img {
  aspect-ratio: 9 / 16;
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, #071419 0%, #061116 100%);
  color: white;
  padding: 3.4rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.5rem;
}
.footer-brand {
  max-width: 31rem;
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.footer-brand-title {
  width: 70%;
  max-width: 70%;
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 3.6vw, 2.95rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0.45rem 0 0.9rem;
}
.footer-brand-copy {
  width: 70%;
  max-width: 70%;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.68;
  margin: 0 0 1rem;
}
.footer-brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.footer-brand-meta span {
  position: relative;
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  font-weight: 600;
}
.footer-brand-meta span + span::before {
  content: "";
  position: absolute;
  left: -0.62rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(181,206,82,0.6);
  transform: translateY(-50%);
}
.footer-column-title {
  color: rgba(255,255,255,0.48);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.footer-map {
  display: grid;
  gap: 0.85rem;
}
.footer-map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.footer-map-frame iframe {
  display: block;
  width: 100%;
}
.footer-map-details {
  display: grid;
  gap: 0.45rem;
  padding: 0 0.15rem;
  justify-items: end;
  text-align: right;
}
.footer-map-address {
  margin: 0;
  color: rgba(245,248,246,0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}
.footer-map-link {
  width: fit-content;
  color: #f4f8f6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}
.footer-map-link:hover {
  color: #8DA2C3;
}
.footer-company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-company-card {
  --footer-company-accent: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-company-card:nth-child(1) {
  --footer-company-accent: #00A458;
}
.footer-company-card:nth-child(2) {
  --footer-company-accent: #4d53b8;
}
.footer-company-card:nth-child(3) {
  --footer-company-accent: #8DA2C3;
}
.footer-company-card:nth-child(4) {
  --footer-company-accent: #d44853;
}
.footer-company-eyebrow {
  color: var(--footer-company-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.footer-company-name {
  font-family: var(--font-family-base);
  font-size: 1.08rem;
  line-height: 1.05;
  margin: 0;
}
.footer-company-copy {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.52;
  margin: 0;
}
.footer-company-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.footer-company-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-company-link:hover {
  color: var(--footer-company-accent);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
}
.footer-bottom {
  padding: 0.95rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
}
.footer-bottom p {
  margin: 0;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.site-fab {
  position: fixed;
  right: var(--back-to-top-offset-x);
  bottom: calc(var(--back-to-top-offset-y) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(1, 45, 49, 0.82);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.site-fab.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-fab:hover {
  background: rgba(1, 45, 49, 0.94);
  border-color: rgba(181,206,82,0.3);
}
.site-fab svg {
  flex: 0 0 auto;
}

/* ============================================================
   RESPONSIVE – TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --back-to-top-offset-x: 1rem;
    --back-to-top-offset-y: 2.35rem;
  }
  .hero,
  .eb-hero,
  .ss-hero,
  .lb-hero,
  .films-hero {
    position: relative;
    top: auto;
  }
  .eb-hero-audio-toggle,
  .ss-hero-audio-toggle,
  .lb-hero-audio-toggle,
  .films-hero-audio-toggle {
    top: clamp(1rem, 2.5vw, 2rem);
    bottom: auto;
  }
  .nav {
    padding: 0.85rem 0.85rem 0;
  }
  .nav-toggle { display: flex; }
  .nav-logo-image {
    height: 2.2rem;
    max-width: 190px;
  }
  .nav-inner {
    position: relative;
    border-radius: 28px;
    padding: 0.85rem 1rem 0.85rem 1.15rem;
    background: linear-gradient(180deg, #244e51 0%, #173b3f 100%);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 48px rgba(0,0,0,0.22);
  }
  .nav.scrolled .nav-inner {
    background: linear-gradient(180deg, #22474a 0%, #143438 100%);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 20px 48px rgba(0,0,0,0.24);
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    bottom: auto;
    margin: 0;
    padding: 0.85rem;
    background: linear-gradient(180deg, #0a2d31 0%, #071f25 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.55rem;
    z-index: 70;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.24s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.32s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.24s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:not(.nav-cta) {
    background: #123f44;
    color: rgba(255,255,255,0.94);
  }
  .nav-links a.nav-cta {
    margin-top: 0.15rem;
  }

  .hero {
    padding: 4.95rem 1.5rem 3.15rem;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-copy {
    align-items: center;
    text-align: center;
    max-width: none;
    gap: 1.05rem;
  }
  .hero-kicker-wrap {
    align-items: center;
    margin-top: 0.9rem;
  }
  .hero-title {
    width: 100%;
    max-width: 14ch;
  }
  .hero-lede {
    max-width: 35rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
    min-height: auto;
    justify-content: center;
    padding: 0.35rem 0 0;
  }
  .hero-orbit {
    display: none;
  }
  .hero-video-card {
    width: min(100%, 760px);
  }
  .hero-video-play {
    right: 1.15rem;
    bottom: 1.15rem;
    width: 4.65rem;
    height: 4.65rem;
  }
  .hero-video-play svg {
    width: 1.78rem;
    height: 1.78rem;
  }
  .hero-ecosystem {
    aspect-ratio: 16 / 9;
  }
  .hero-ecosystem-separator {
    display: block;
    height: 30px;
    background: linear-gradient(180deg, #f4f2ec 0%, #ebe8e1 100%);
  }
  .hero-ecosystem-audio-toggle {
    width: 3.15rem;
    height: 3.15rem;
  }
  .hero-logo-panel {
    width: 100%;
    max-width: 312px;
    margin: 0 auto;
    padding: 1.25rem 0.95rem 0.95rem;
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  }
  .hero-group-logo {
    width: min(100%, 146px);
    margin-bottom: 0;
  }
  .hero-brand-grid {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 500px;
    gap: 1.1rem;
    margin: 0 auto;
    padding: 0;
  }
  .hero-brand-card {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: auto;
    padding: 1.15rem 1.15rem 1.05rem;
    text-align: center;
    --brand-x: 0px;
    --brand-y: 0px;
    --brand-hover-x: 0px;
    --brand-hover-y: -4px;
  }
  .hero-brand-card:nth-child(1),
  .hero-brand-card:nth-child(2),
  .hero-brand-card:nth-child(3),
  .hero-brand-card:nth-child(4) {
    --brand-x: 0px;
    --brand-y: 0px;
    --brand-hover-x: 0px;
    --brand-hover-y: -4px;
    justify-self: auto;
    align-self: auto;
    text-align: center;
  }
  .hero-brand-logo-wrap,
  .hero-brand-card:nth-child(2) .hero-brand-logo-wrap,
  .hero-brand-card:nth-child(4) .hero-brand-logo-wrap {
    justify-content: center;
    min-height: 72px;
    margin: 0.7rem 0 0.85rem;
  }
  .hero-brand-logo {
    max-height: 64px;
  }
  .hero-brand-title,
  .hero-brand-card:nth-child(2) .hero-brand-title,
  .hero-brand-card:nth-child(4) .hero-brand-title {
    width: min(100%, 34ch);
    margin-inline: auto;
    text-align: center;
  }
  .hero-scroll-btn {
    bottom: 0.9rem;
    animation: gentlePulse 2.5s ease-in-out infinite;
  }

  .section-intro {
    margin-bottom: 2.8rem;
  }
  .section-lede {
    font-size: 1rem;
  }
  .empresas-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .empresa-card {
    min-height: 310px;
    padding: 1.7rem;
  }

  .eb-hero {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .eb-hero-content {
    padding: 1.2rem 1.35rem;
  }
  .eb-hero-brand {
    padding: 0.68rem 1rem;
  }
  .eb-hero-logo {
    width: auto !important;
    height: clamp(2.95rem, 6.7vw, 3.85rem);
    margin-inline: -0.95rem;
  }
  .eb-story-title {
    margin-bottom: 1.7rem;
  }
  .eb-story-title-image {
    width: min(100%, 320px);
  }
  .eb-products {
    padding: 4.2rem 1.25rem 5.15rem;
  }
  .eb-products-intro {
    margin-bottom: 2.2rem;
  }
  .eb-products-heading {
    max-width: 12ch;
  }
  .eb-products-feature {
    padding: 1.65rem;
  }
  .eb-products-feature-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .eb-products-count {
    min-width: 98px;
    min-height: 98px;
    border-radius: 24px;
  }
  .eb-products-main-grid,
  .eb-products-secondary {
    grid-template-columns: 1fr;
  }

  .ss-hero {
    min-height: 360px;
    aspect-ratio: 7 / 5;
  }
  .ss-hero-content {
    padding: 1.3rem 1.25rem;
  }
  .ss-hero-brand {
    padding: 0.72rem 1rem;
  }
  .ss-hero-logo {
    height: clamp(2.9rem, 6.4vw, 3.95rem);
  }
  .ss-hero-audio-toggle {
    width: 2.85rem;
    height: 2.85rem;
    left: 0.85rem;
    top: 0.85rem;
  }
  .ss-hero-fullscreen-toggle.section-video-fullscreen-toggle {
    left: 0.85rem;
    top: 4.2rem;
  }
  .ss-services {
    padding: 4.9rem 1.25rem 4.5rem;
  }
  .ss-services-lines {
    width: min(140%, 1350px);
    bottom: 0.5rem;
    opacity: 0.22;
  }
  .ss-svc-lede {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .ss-svc-band {
    padding: 1.35rem 1rem 1rem;
    border-radius: 28px;
  }
  .ss-svc-band::before {
    border-radius: 27px;
  }
  .ss-svc-band::after {
    width: 260px;
    height: 260px;
  }
  .ss-svc-head {
    gap: 0.8rem;
    margin-bottom: 1.1rem;
  }
  .ss-svc-tags {
    gap: 0.75rem;
    padding: 0;
  }
  .ss-svc-tags span {
    font-size: clamp(0.9rem, 2.4vw, 1.15rem);
    padding: 0.52rem 0.95rem;
  }
  .ss-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }
  .ss-gal-item {
    grid-column: auto;
    height: 280px;
    min-height: 280px;
  }
  .ss-gallery > .ss-gal-item:nth-child(1),
  .ss-gallery > .ss-gal-item:nth-child(2),
  .ss-gallery > .ss-gal-item:nth-child(3),
  .ss-gal-item-givenchy,
  .ss-gal-item-outdoor {
    grid-column: auto;
  }
  .ss-gal-copy strong {
    font-size: 0.98rem;
  }
  .ss-about {
    padding: 6rem 1.25rem 1.9rem;
  }
  .ss-about-title {
    margin-bottom: 2.4rem;
  }
  .ss-about-title-image {
    width: min(100%, 340px);
  }
  .ss-about-stage {
    min-height: clamp(430px, 64vw, 560px);
    padding: 1.35rem 0 0.3rem;
  }
  .ss-about-card {
    width: min(100%, 680px);
    padding: 5rem 2.9rem 2.7rem;
    border-radius: 24px;
  }
  .ss-about-logo {
    width: min(100%, 430px);
    transform: translate(-50%, -39%);
  }
  .ss-about-card p {
    font-size: 1rem;
    line-height: 1.42;
  }
  .ss-givenchy {
    padding: 2rem 1.25rem 3.8rem;
    min-height: auto;
  }
  .ss-givenchy-intro {
    margin-bottom: 1.6rem;
  }
  .ss-givenchy-subtitle {
    font-size: 0.98rem;
  }
  .ss-givenchy-shell {
    width: min(100%, 1040px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .lb-hero-overlay {
    padding: 5rem 2rem 3rem;
    align-items: center;
    text-align: center;
  }
  .lb-nosotros-wrap {
    padding: 3.1rem 1.2rem 4.6rem;
  }
  .lb-nosotros-title {
    margin-bottom: 2.2rem;
  }
  .lb-nosotros-title-image {
    width: min(100%, 380px);
  }
  .lb-history {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  .lb-history-left {
    width: min(100%, 680px);
    margin: 0 auto;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .lb-history-right {
    width: min(100%, 760px);
    margin: 0 auto;
  }
  .lb-history-card {
    padding: 2.2rem 2rem 2rem;
  }
  .lb-history-card::before {
    left: 2rem;
  }
  .lb-services-intro {
    max-width: 700px;
    margin-bottom: 2rem;
  }
  .lb-svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lb-casos-intro {
    align-items: center;
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto 2rem;
  }
  .lb-casos-copy {
    max-width: 50ch;
    text-align: center;
  }
  .lb-casos-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .lb-clients-intro {
    max-width: 680px;
    margin-bottom: 2rem;
  }
  .lb-clients-grid { grid-template-columns: repeat(3, 1fr); }

  .films-hero {
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 0;
  }
  .films-hero-content {
    gap: 0;
    padding: 2.25rem 1.5rem;
  }
  .films-hero-brand {
    padding: 0.72rem 1.05rem;
  }
  .films-hero-logo { height: clamp(4.75rem, 10vw, 6rem); }
  .films-hero-audio-toggle {
    width: 3.15rem;
    height: 3.15rem;
  }
  .films-story {
    padding: 2.8rem 1.5rem 4rem;
  }
  .films-story-title {
    margin-bottom: 2rem;
  }
  .films-story-title-img {
    width: min(100%, 390px);
  }
  .films-story-inner {
    grid-template-columns: 1fr;
    gap: 1.9rem;
    max-width: 760px;
  }
  .films-chain {
    align-items: center;
    padding: 0;
  }
  .films-story-text {
    padding: 2rem 2rem 1.95rem;
    border-radius: 28px;
  }
  .films-story-text::before {
    left: 2rem;
    top: 1.2rem;
    width: 84px;
    height: 5px;
  }
  .films-director-wrap {
    padding: 3.5rem 1.5rem 4rem;
  }
  .films-director {
    gap: 2.1rem;
  }
  .films-dir-header {
    max-width: 680px;
  }
  .films-dir-body {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
  .films-dir-photo {
    max-width: 360px;
    margin: 0 auto;
  }
  .films-dir-bio {
    padding: 2rem 2rem 1.9rem;
    border-radius: 28px;
  }
  .films-dir-bio::before {
    left: 2rem;
    top: 1.2rem;
    width: 84px;
    height: 5px;
  }
  .films-services {
    padding: 4rem 1.5rem 4.5rem;
  }
  .films-svc-intro {
    margin-bottom: 2rem;
  }
  .films-svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .films-svc-item {
    min-height: 260px;
  }
  .films-portfolio {
    padding: 4.2rem 1.5rem 4.8rem;
  }
  .films-pf-intro {
    margin-bottom: 2rem;
  }
  .films-pf-feature-grid {
    grid-template-columns: 1fr;
  }
  .films-pf-project-bodoque,
  .films-pf-project-rabanne,
  .films-pf-project-propietario {
    grid-column: span 1;
  }
  .films-pf-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .films-pf-project-portrait:last-child {
    grid-column: 1 / -1;
  }
  .films-pf-project-media-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   RESPONSIVE – HERO TABLET TUNING (601px to 900px)
   ============================================================ */
@media (min-width: 601px) and (max-width: 900px) {
  .hero-visual {
    width: min(100%, 560px);
    min-height: 560px;
    margin: 0 auto;
    justify-content: center;
    padding: 0;
  }
  .hero-logo-panel {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(100%, 240px);
    max-width: 240px;
    margin: 0 auto;
    padding: 1.2rem 0.95rem 0.92rem;
  }
  .hero-group-logo {
    width: min(100%, 146px);
    margin-bottom: 0;
  }
  .hero-brand-grid {
    position: absolute;
    inset: 0;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: max-content;
    align-content: center;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0.25rem;
    column-gap: 1.15rem;
    row-gap: 1.15rem;
  }
  .hero-brand-card {
    width: min(100%, 224px);
    min-height: 176px;
    height: auto;
    padding: 1rem 1rem 0.95rem;
    text-align: left;
  }
  .hero-brand-card:nth-child(1) {
    --brand-x: -42px;
    --brand-y: -24px;
    --brand-hover-x: -54px;
    --brand-hover-y: -34px;
    justify-self: start;
    align-self: start;
    text-align: left;
  }
  .hero-brand-card:nth-child(2) {
    --brand-x: 42px;
    --brand-y: -24px;
    --brand-hover-x: 54px;
    --brand-hover-y: -34px;
    justify-self: end;
    align-self: start;
    text-align: right;
  }
  .hero-brand-card:nth-child(3) {
    --brand-x: -42px;
    --brand-y: 24px;
    --brand-hover-x: -54px;
    --brand-hover-y: 34px;
    justify-self: start;
    align-self: end;
    text-align: left;
  }
  .hero-brand-card:nth-child(4) {
    --brand-x: 42px;
    --brand-y: 24px;
    --brand-hover-x: 54px;
    --brand-hover-y: 34px;
    justify-self: end;
    align-self: end;
    text-align: right;
  }
  .hero-brand-logo-wrap {
    justify-content: flex-start;
    min-height: 70px;
    margin: 0.68rem 0 0.82rem;
  }
  .hero-brand-card:nth-child(2) .hero-brand-logo-wrap,
  .hero-brand-card:nth-child(4) .hero-brand-logo-wrap {
    justify-content: flex-end;
  }
  .hero-brand-logo {
    max-height: 62px;
  }
  .hero-brand-title {
    width: 100%;
    margin-inline: 0;
    text-align: left;
  }
  .hero-brand-card:nth-child(2) .hero-brand-title,
  .hero-brand-card:nth-child(4) .hero-brand-title {
    margin-left: auto;
    text-align: right;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --back-to-top-offset-x: 0.85rem;
    --back-to-top-offset-y: 1.5rem;
  }
  .nav {
    padding: 0.75rem 0.75rem 0;
  }
  .nav-inner {
    padding: 0.82rem 0.95rem;
  }
  .nav-logo-image {
    height: 2rem;
    max-width: 172px;
  }
  .nav-links {
    top: calc(100% + 0.55rem);
    padding: 0.75rem;
    border-radius: 24px;
  }

  .hero {
    padding: 5.15rem 1rem 3.8rem;
  }
  .hero-title {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }
  .hero-lede {
    font-size: 1rem;
  }
  .hero-kicker-wrap {
    width: 100%;
    margin-top: 0.45rem;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .hero-kicker {
    width: 100%;
    max-width: none;
    justify-content: center;
    text-align: center;
    padding: 0.48rem 0.8rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .hero-btn {
    width: 100%;
    min-width: 0;
  }
  .hero-ecosystem {
    aspect-ratio: 7 / 5;
    min-height: 260px;
  }
  .hero-ecosystem-separator {
    height: 30px;
  }
  .hero-ecosystem-audio-toggle {
    width: 2.75rem;
    height: 2.75rem;
    left: 0.85rem;
    top: 0.85rem;
  }
  .section-video-fullscreen-toggle {
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    left: 0.85rem;
    top: 4.2rem;
  }
  .hero-logo-panel {
    width: 100%;
    max-width: 352px;
    margin: 0 auto;
    padding: 1.05rem 0.88rem 0.84rem;
  }
  .hero-group-logo {
    width: min(100%, 134px);
    margin-bottom: 0;
  }
  .hero-visual {
    width: min(100%, 420px);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-top: 0.1rem;
  }
  .hero-video-card {
    width: 100%;
    border-radius: 24px;
  }
  .hero-video-stage,
  .hero-video-card.is-video-active .hero-video-stage {
    border-radius: 24px;
  }
  .hero-video-play {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 4rem;
    height: 4rem;
    box-shadow:
      0 16px 34px rgba(1,24,32,0.34),
      0 0 0 9px rgba(255,255,255,0.08);
  }
  .hero-video-play svg {
    width: 1.55rem;
    height: 1.55rem;
  }
  .hero-brand-grid {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 352px;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 auto;
    padding: 0;
  }
  .hero-brand-card {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 1rem 1rem 0.92rem;
    text-align: center;
    --brand-x: 0px;
    --brand-y: 0px;
    --brand-hover-x: 0px;
    --brand-hover-y: -6px;
  }
  .hero-brand-card:nth-child(1),
  .hero-brand-card:nth-child(2),
  .hero-brand-card:nth-child(3),
  .hero-brand-card:nth-child(4) {
    --brand-x: 0px;
    --brand-y: 0px;
    --brand-hover-x: 0px;
    --brand-hover-y: -6px;
    justify-self: auto;
    align-self: auto;
    text-align: center;
  }
  .hero-brand-title,
  .hero-brand-card:nth-child(2) .hero-brand-title,
  .hero-brand-card:nth-child(4) .hero-brand-title {
    width: min(100%, 28ch);
    margin-inline: auto;
    text-align: center;
  }
  .hero-brand-logo-wrap,
  .hero-brand-card:nth-child(2) .hero-brand-logo-wrap,
  .hero-brand-card:nth-child(4) .hero-brand-logo-wrap {
    justify-content: center;
    min-height: 64px;
    margin: 0.62rem 0 0.75rem;
  }
  .hero-brand-logo {
    max-height: 58px;
  }
  .hero-scroll-btn {
    bottom: 0.5rem;
    animation: gentlePulse 2.5s ease-in-out infinite;
  }

  .section-intro {
    margin-bottom: 2.3rem;
  }
  .empresas {
    padding: 4.5rem 1rem 5rem;
  }
  .empresas-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .empresa-card {
    min-height: auto;
    padding: 1.75rem 1.35rem;
  }
  .empresa-title {
    font-size: 1.14rem;
  }
  .empresa-copy {
    font-size: 0.96rem;
  }

  .eb-hero {
    min-height: 260px;
    aspect-ratio: 7 / 5;
  }
  .eb-hero-brand,
  .ss-hero-brand,
  .lb-hero-brand,
  .films-hero-brand {
    display: none;
  }
  .eb-hero-content {
    padding: 1.05rem 1.1rem;
  }
  .eb-hero-brand {
    padding: 0.45rem 0.64rem;
  }
  .eb-hero-logo {
    width: min(100%, clamp(118px, 42vw, 152px));
  }
  .eb-hero-audio-toggle {
    width: 2.8rem;
    height: 2.8rem;
    left: 0.85rem;
    top: 0.85rem;
    bottom: auto;
  }
  .eb-story-title {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .eb-story-title-image {
    width: min(100%, 240px);
  }
  .section-mobile-brand {
    display: block;
  }
  .eb-products {
    padding: 3.7rem 1rem 4.65rem;
  }
  .eb-products-intro {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }
  .eb-products-heading {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }
  .eb-products-lede {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .eb-products-meta span {
    width: 100%;
  }
  .eb-products-feature,
  .eb-products-card {
    border-radius: 24px;
  }
  .eb-products-feature {
    padding: 1.35rem;
  }
  .eb-products-column {
    padding: 1.05rem 1rem;
    border-radius: 18px;
  }
  .eb-products-column-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .eb-products-card {
    padding: 1.25rem 1.1rem 1.2rem;
  }
  .eb-products-card-head {
    align-items: center;
  }
  .eb-products-card-count {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1rem;
  }
  .eb-cat-title {
    font-size: 1.18rem;
  }
  .eb-product-list {
    font-size: 0.95rem;
    line-height: 1.62;
  }
  .eb-story-section {
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 2.6rem 1rem 2rem;
    background-position: center top;
  }
  .eb-story-body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .eb-story-card {
    width: min(100%, 840px);
    margin: 0;
    padding: 1.4rem 1.4rem 1.6rem;
    font-size: var(--fs-body);
    line-height: 1.56;
  }
  .eb-story-card::before {
    left: 1.4rem;
    top: 1rem;
    width: 72px;
  }
  .eb-story-section::before,
  .eb-story-section::after {
    opacity: 0.72;
  }
  .eb-banderin-wrap {
    width: 160px;
    margin: -0.35rem 0 0;
  }
  .eb-banderin {
    width: 160px;
  }

  .ss-services {
    padding: 4.35rem 1rem 4rem;
  }
  .ss-services-lines {
    width: min(170%, 980px);
    bottom: 0.2rem;
    opacity: 0.18;
  }
  .ss-hero {
    min-height: 260px;
    aspect-ratio: 7 / 5;
  }
  .ss-hero-content {
    padding: 1.05rem 1.1rem;
  }
  .ss-hero-audio-toggle {
    width: 2.8rem;
    height: 2.8rem;
    left: 0.85rem;
    top: 0.85rem;
  }
  .ss-about {
    padding: 3rem 1rem 1.7rem;
  }
  .ss-about-title {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 2.35rem;
  }
  .section-mobile-brand-ss {
    width: min(100%, 176px);
  }
  .ss-about-title-image {
    width: min(100%, 270px);
  }
  .ss-about-stage {
    min-height: auto;
    padding: 1rem 0 0;
  }
  .ss-about-lines {
    inset: 0 auto auto 50%;
    width: min(120%, 820px);
    height: auto;
    transform: translateX(-50%);
  }
  .ss-about-card {
    width: min(100%, 560px);
    padding: 4.2rem 1.5rem 2rem;
    border-radius: 22px;
  }
  .ss-about-card::before {
    top: 1rem;
    width: 82px;
    height: 5px;
  }
  .ss-about-logo {
    width: min(100%, 330px);
    transform: translate(-50%, -37%);
  }
  .ss-about-card p {
    font-size: 0.96rem;
    line-height: 1.46;
    max-width: 32ch;
  }
  .ss-givenchy {
    padding: 1.6rem 1rem 3rem;
    min-height: auto;
  }
  .ss-givenchy-intro {
    margin-bottom: 1.2rem;
  }
  .ss-givenchy-title {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }
  .ss-givenchy-subtitle {
    font-size: 0.95rem;
    max-width: 34ch;
  }
  .ss-givenchy-shell {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    gap: 0.75rem;
  }
  .ss-givenchy-video-card {
    border-radius: 18px;
  }
  .ss-givenchy-video-player {
    border-radius: 18px;
  }
  .ss-svc-title {
    margin-bottom: 0.85rem;
  }
  .ss-svc-lede {
    font-size: 0.96rem;
    margin-bottom: 1.6rem;
  }
  .ss-svc-band {
    padding: 1rem 0.85rem 0.85rem;
    border-radius: 22px;
  }
  .ss-svc-band::before {
    border-radius: 21px;
  }
  .ss-svc-head {
    gap: 0.75rem;
    margin-bottom: 0.95rem;
  }
  .ss-svc-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-align: center;
  }
  .ss-svc-tags {
    gap: 0.6rem;
  }
  .ss-svc-tags span {
    font-size: 0.82rem;
    padding: 0.5rem 0.82rem;
  }
  .ss-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .ss-gal-item {
    grid-column: auto;
    height: 240px;
    min-height: 240px;
  }
  .ss-gallery > .ss-gal-item:nth-child(1),
  .ss-gallery > .ss-gal-item:nth-child(2),
  .ss-gallery > .ss-gal-item:nth-child(3),
  .ss-gal-item-givenchy,
  .ss-gal-item-outdoor {
    grid-column: auto;
  }
  .ss-gal-copy {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }
  .ss-gal-pill {
    font-size: 0.68rem;
  }
  .ss-gal-copy strong {
    font-size: 0.95rem;
  }

  .lb-hero {
    min-height: 260px;
    aspect-ratio: 7 / 5;
  }
  .lb-hero-content {
    padding: 1.1rem 1.15rem;
  }
  .lb-hero-brand {
    padding: 0.68rem 1rem;
  }
  .lb-hero-logo {
    height: clamp(2.75rem, 6.2vw, 3.55rem);
  }
  .lb-hero-audio-toggle {
    width: 2.8rem;
    height: 2.8rem;
    left: 0.85rem;
    top: 0.85rem;
    bottom: auto;
  }
  .lb-nosotros-wrap {
    padding: 2.5rem 1rem 4.8rem;
  }
  .lb-nosotros-title {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 3rem;
  }
  .section-mobile-brand-lb {
    display: none;
  }
  .lb-nosotros-title-image {
    width: min(100%, 280px);
  }
  .lb-history {
    gap: 1.5rem;
    padding: 0;
  }
  .lb-history-left {
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .lb-history-card {
    border-radius: 24px;
    padding: 1.8rem 1.25rem 1.55rem;
  }
  .lb-history-card::before {
    top: 1rem;
    left: 1.25rem;
    width: 76px;
    height: 5px;
  }
  .lb-legacy-title {
    width: min(100%, 250px);
    margin-bottom: 1.45rem;
  }
  .lb-history-right p {
    font-size: 0.98rem;
    line-height: 1.58;
  }
  .lb-history-lead {
    font-size: 1.08rem !important;
  }
  .lb-services {
    padding: 3.2rem 1.2rem;
  }
  .lb-services-intro {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }
  .lb-services-title {
    font-size: clamp(1.9rem, 8.2vw, 2.6rem);
    max-width: none;
  }
  .lb-services-copy {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .lb-svc-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0;
  }
  .lb-svc-item {
    padding: 1.2rem 1.05rem 1rem;
    border-radius: 18px;
    gap: 0.85rem;
  }
  .lb-svc-title-wrap {
    min-height: 3.5rem;
  }
  .lb-svc-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .lb-svc-nums > div, .lb-svc-nums-row > div {
    min-height: 0;
    padding: 0.44rem 0.64rem;
    font-size: 0.84rem;
  }
  .lb-n {
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    font-size: 0.68rem;
  }
  .lb-casos { padding: 3.2rem 1.2rem; }
  .lb-casos-intro {
    gap: 0.9rem;
    margin-bottom: 1.7rem;
  }
  .lb-casos-title-img {
    width: min(100%, 190px) !important;
  }
  .lb-casos-copy {
    font-size: 0.94rem;
    line-height: 1.58;
    text-align: center;
  }
  .caso-card {
    padding: 0.8rem;
    border-radius: 24px;
  }
  .caso-header {
    padding: 1rem 1rem 0.45rem;
    gap: 0.8rem;
  }
  .caso-tag {
    font-size: 0.64rem;
    padding: 0.38rem 0.62rem;
  }
  .caso-logo {
    height: 4rem;
  }
  .caso-image-wrap {
    padding: 0 1rem 0;
  }
  .caso-image {
    border-radius: 18px 18px 0 0;
  }
  .caso-numbers {
    margin: -0.85rem 1rem 1rem;
    padding: 1.3rem 0.95rem 0.95rem;
    border-radius: 16px;
  }
  .caso-results-label {
    font-size: 0.64rem;
    margin-bottom: 0.65rem;
  }
  .caso-numbers-img {
    width: min(100%, 215px) !important;
  }
  .lb-clients {
    padding: 3.2rem 1.2rem;
  }
  .lb-clients-intro {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }
  .lb-clients-title {
    font-size: clamp(1.9rem, 8.4vw, 2.6rem);
    max-width: none;
  }
  .lb-clients-copy {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .lb-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-client-item {
    min-height: 92px;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
  }

  .films-hero {
    min-height: 260px;
    aspect-ratio: 7 / 5;
    padding: 0;
  }
  .films-hero-content {
    gap: 0;
    padding: 1.6rem 1rem;
  }
  .films-hero-brand {
    padding: 0.62rem 0.9rem;
  }
  .films-hero-logo { height: clamp(2.55rem, 9.2vw, 3.45rem); }
  .films-hero-audio-toggle {
    width: 2.75rem;
    height: 2.75rem;
    left: 0.85rem;
    top: 0.85rem;
    bottom: auto;
  }
  .films-story {
    padding: 2rem 1rem 2.8rem;
  }
  .films-story-title {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 2.8rem;
  }
  .section-mobile-brand-films {
    width: min(100%, 168px);
  }
  .films-story-title-img {
    width: min(100%, 272px);
  }
  .films-story-inner {
    gap: 1.25rem;
  }
  .films-chain-logo {
    width: min(100%, 220px) !important;
  }
  .films-story-text {
    padding: 1.65rem 1.15rem 1.45rem;
    border-radius: 24px;
  }
  .films-story-text::before {
    left: 1.15rem;
    top: 1rem;
    width: 72px;
  }
  .films-story-text p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .films-story-text p:first-child {
    font-size: 1.08rem;
  }
  .films-director-wrap {
    padding: 2.8rem 1rem 3rem;
  }
  .films-dir-header {
    gap: 0.5rem;
  }
  .films-dir-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .films-dir-name {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .films-dir-title {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }
  .films-dir-summary {
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .films-dir-body {
    gap: 1.2rem;
  }
  .films-dir-photo {
    max-width: 300px;
    border-radius: 24px;
    padding: 0.8rem;
  }
  .films-dir-photo img {
    border-radius: 18px;
  }
  .films-dir-bio {
    padding: 1.7rem 1.15rem 1.45rem;
    border-radius: 24px;
  }
  .films-dir-bio::before {
    left: 1.15rem;
    top: 1rem;
    width: 72px;
  }
  .films-dir-bio p {
    font-size: 0.96rem;
    line-height: 1.62;
  }
  .films-dir-bio p:first-child {
    font-size: 1.05rem;
  }
  .films-services {
    padding: 3.2rem 1rem 3.5rem;
  }
  .films-svc-intro {
    gap: 0.75rem;
    margin-bottom: 1.6rem;
  }
  .films-svc-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .films-svc-title {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }
  .films-svc-lede {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .films-svc-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .films-svc-item {
    min-height: 0;
    padding: 1.15rem 1rem 1rem;
    border-radius: 20px;
  }
  .films-svc-icon-wrap {
    min-height: 96px;
  }
  .films-svc-icon {
    max-height: 92px;
  }
  .films-svc-copy {
    font-size: 0.95rem;
    line-height: 1.56;
  }
  .films-portfolio {
    padding: 3.2rem 1rem 3.8rem;
  }
  .films-pf-intro {
    gap: 0.75rem;
    margin-bottom: 1.6rem;
  }
  .films-pf-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .films-pf-title {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }
  .films-pf-lede {
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .films-pf-showcase {
    gap: 0.9rem;
  }
  .films-pf-editorial-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .films-pf-project-portrait:last-child {
    grid-column: auto;
  }
  .films-pf-project {
    padding: 0.85rem;
    border-radius: 22px;
  }
  .films-pf-project-head {
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 0;
  }
  .films-pf-caption-eyebrow {
    font-size: 0.78rem;
  }
  .films-pf-caption-title {
    font-size: 1rem;
  }
  .films-pf-caption-meta {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }
  .films-pf-project-index {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.86rem;
  }
  .films-pf-project-media-two {
    grid-template-columns: 1fr;
  }
  .films-pf-project-media-portrait,
  .films-pf-project-media-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .films-pf-img {
    border-radius: 14px;
  }

  .footer {
    padding: 2.9rem 1rem 0;
  }
  .footer-brand-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .footer-brand-copy {
    font-size: 0.95rem;
    line-height: 1.62;
  }
  .footer-brand-meta {
    display: none;
  }
  .footer-main {
    gap: 1.25rem;
    padding-bottom: 1.2rem;
  }
  .footer-company-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-bottom: 1.2rem;
  }
  .footer-company-card {
    padding: 0.95rem 0.95rem 1rem;
    border-radius: 18px;
  }
  .footer-company-name {
    font-size: 0.96rem;
  }
  .footer-company-copy,
  .footer-company-link {
    font-size: 0.9rem;
  }
  .footer-bottom {
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }
  .site-fab {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    justify-content: center;
    gap: 0;
  }
  .site-fab span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body,
  body:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-scroll-btn {
    animation: none;
  }

  .hero-ecosystem-video {
    display: none;
  }

  .hero-ecosystem-audio-toggle {
    display: none;
  }

  .section-video-fullscreen-toggle {
    display: none !important;
  }

  .eb-hero-video {
    display: none;
  }

  .eb-hero-audio-toggle {
    display: none;
  }

  .lb-hero-video {
    display: none;
  }

  .lb-hero-content {
    padding: 0.9rem;
  }

  .lb-hero-brand {
    padding: 0.58rem 0.85rem;
  }

  .lb-hero-logo {
    height: clamp(2.35rem, 8vw, 2.95rem);
  }

  .lb-hero-audio-toggle {
    display: none;
  }

  .films-hero-video {
    display: none;
  }

  .films-hero-audio-toggle {
    display: none;
  }
}
