﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&display=swap");

:root {
  --ink: #1d2028;
  --night: #20232c;
  --muted: #555c6e;
  --soft: #ebeced;
  --line: #b9bfcc;
  --yellow: #ffc107;
  --yellow-dark: #e5a206;
  --red: #f44336;
  --red-dark: #bc1e1e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--night);
}

body.home {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 250px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--yellow {
  background: var(--yellow-dark);
}

.button--yellow:hover {
  background: #ffd507;
}


.button--red {
  background: var(--red-dark);
}

.button--red:hover {
  background: #ff2c28;
}

.button--dark {
  background: var(--ink);
}

.gateway {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gateway-panel {
  min-height: 100vh;
  padding: 13.5vh clamp(28px, 5vw, 76px) 17vh;
  display: grid;
  grid-template-rows: 112px 1fr 72px;
  align-items: center;
  text-align: center;
}

.gateway-logo-zone {
  display: grid;
  place-items: center;
  align-self: start;
}

.gateway-copy {
  align-self: center;
  max-width: 430px;
  margin: 0;
  justify-self: center;
  font-size: 1.12rem;
  line-height: 1.55;
}

.gateway-action {
  display: grid;
  place-items: center;
  align-self: end;
}

.gateway-panel--yellow {
  background: var(--yellow);
}


.gateway-panel--red {
  background: var(--red);
  color: var(--white);
}

.gateway-logo {
  width: min(270px, 64%);
  height: auto;
}


.gateway-logo--narrow {
  width: min(180px, 46%);
}

.home-footer {
  min-height: 190px;
  padding: 14px 20px 34px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 30px;
  color: #7f8fb8;
  text-align: center;
  background: #1d2028;
}

.home-footer p {
  margin: 0;
  font-size: 1rem;
}

.home-footer a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.home-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.home-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(32, 35, 44, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand img {
  width: 150px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: .92rem;
}

.site-nav a {
  text-decoration: none;
  opacity: .82;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
}

.theater-page .site-header {
  position: fixed;
}

.join-page .site-header {
  position: fixed;
}

.join-page .theater-header {
  background: transparent;
  border-bottom: 0;
}

.join-page .theater-header.is-scrolled {
  background: var(--night);
}

.theater-header {
  left: 0;
  right: 0;
  min-height: 104px;
  padding: 26px 58px;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: background .2s ease, min-height .2s ease, padding .2s ease;
}

.theater-header.is-scrolled {
  min-height: 74px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: var(--night);
}

.theater-header .brand img {
  width: 221px;
}

.theater-tools {
  display: flex;
  align-items: center;
  gap: 28px;
}

.theater-toggle {
  width: 39px;
  min-height: 27px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.theater-toggle::before,
.theater-toggle::after,
.theater-toggle span {
  content: "";
  width: 39px;
  height: 2px;
  display: block;
  background: var(--white);
}

.theater-toggle span {
  margin: 8px 0;
}

.theater-toggle:hover::before,
.theater-toggle:hover::after,
.theater-toggle:hover span,
.theater-toggle:focus-visible::before,
.theater-toggle:focus-visible::after,
.theater-toggle:focus-visible span {
  background: var(--yellow);
}

.theater-nav {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 20px 24px 60px;
  color: var(--white);
  background: var(--night);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-logo {
  width: 221px;
  display: block;
}

.menu-overlay-logo img {
  width: 100%;
}

.menu-overlay-tools {
  position: absolute;
  top: 42px;
  right: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu-close {
  position: relative;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 3px;
  width: 26px;
  height: 2px;
  background: var(--white);
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-overlay-links {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 54px;
  transform: translateY(-3vh);
}

.menu-overlay-links a {
  color: var(--white);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  text-decoration: none;
}

.menu-overlay-links a.is-active {
  color: var(--yellow);
}

.menu-overlay-links a:hover,
.menu-overlay-links a:focus-visible {
  color: var(--yellow);
}

.theater-page main {
  position: relative;
}

.theater-page main > :not(.theater-hero) {
  position: relative;
  z-index: 2;
}

.theater-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(4, 7, 19, .26), rgba(4, 7, 19, .42)),
    url("../img/fondo1.jpg") center / cover no-repeat;
}

.theater-hero-content {
  width: min(1540px, calc(100% - 120px));
  transform: translateY(5.7vh);
}

.theater-hero p {
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(1rem, 1.18vw, 1.42rem);
  font-weight: 800;
  letter-spacing: .35em;
  line-height: 1.25;
}

.theater-hero h1 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(4.4rem, 7.35vw, 8.45rem);
  font-weight: 700;
  line-height: .96;
  white-space: nowrap;
}

.hero {
  padding: 116px 0 92px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(32, 35, 44, .94), rgba(32, 35, 44, .78)), url("../img/testimonial-bg.jpg") center / cover;
}

.hero--compact {
  padding-bottom: 72px;
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: .98;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.section--yellow {
  padding: 52px 0 44px;
  color: var(--white);
  background: var(--yellow);
}

.section--dark {
  color: var(--white);
  background: var(--night);
}

.section--light {
  background: var(--soft);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.section-heading p {
  margin: 12px 0 0;
  color: inherit;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading::after {
  content: "";
  display: block;
  width: 126px;
  height: 1px;
  margin: 28px auto 0;
  background: currentColor;
  opacity: .55;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 390px));
  justify-content: center;
  gap: 3px;
  padding: 34px 24px 62px;
  background: var(--night);
}

.project-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: #11141b;
}

.project-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.project-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 400;
  text-align: center;
  background: rgba(224, 193, 114, .88);
  opacity: 0;
  transition: opacity .35s ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.02);
}

.project-card:hover span,
.project-card:focus-visible span {
  opacity: 1;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 46px;
  margin-top: 48px;
  color: #aaaaaa;
}

.about-heading::after {
  margin-top: 70px;
}

.about-kicker {
  margin: -52px 0 70px;
  color: #7f95c5;
  font-size: .95rem;
}

.quote-section {
  min-height: 526px;
  padding: 118px 0 72px;
  display: grid;
  align-items: center;
  color: var(--white);
  text-align: center;
  background: url("../img/testimonial-bg.jpg") center / cover no-repeat;
}

.quote-mark {
  height: 92px;
  margin: 0 auto 32px;
  color: #f3185e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  font-weight: 800;
  line-height: .78;
}

.quote-slider {
  position: relative;
  min-height: 126px;
}

.quote {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  max-width: 1180px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .85s ease, transform .85s ease;
  pointer-events: none;
}

.quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote p {
  margin: 0;
  font-size: clamp(.95rem, 1.05vw, 1.2rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.75;
}

.quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}

.quote-dots {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.quote-dots button {
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.quote-dots button.is-active {
  background: var(--white);
}

.site-footer {
  color: var(--ink);
  background: var(--soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 76px;
  padding: 88px 0 136px;
}

.footer-grid h2 {
  margin: 0;
  color: #10192d;
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}

.footer-grid h2::after {
  content: "";
  display: block;
  width: 126px;
  height: 1px;
  margin: 24px 0 70px;
  background: var(--line);
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #6f7f9d;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.footer-grid p {
  margin-top: 36px;
  color: #405070;
}

.footer-grid p a[href^="https"] {
  color: #ff1c64;
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.social-links a {
  position: relative;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  background: var(--white);
}

.social-links img,
.footer-social img {
  width: 18px;
  height: 18px;
}

.social-links a::before,
.footer-social a::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  padding: 5px 8px;
  border-radius: 3px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  background: #3c3f43;
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
}

.social-links a::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  border: 5px solid transparent;
  border-top-color: #3c3f43;
  opacity: 0;
  transform: translate(-50%, 4px);
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
}

.social-links a:hover::before,
.social-links a:hover::after,
.social-links a:focus-visible::before,
.social-links a:focus-visible::after,
.footer-social a:hover::before,
.footer-social a:hover::after,
.footer-social a:focus-visible::before,
.footer-social a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer-bottom {
  padding: 22px 20px;
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

.footer-bottom--slanted {
  position: relative;
  min-height: 188px;
  padding: 84px 20px 38px;
}

.footer-bottom--slanted::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -96px;
  height: 96px;
  background: var(--ink);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.footer-bottom p {
  position: relative;
  margin: 0;
  color: #7f95c5;
}

.footer-bottom p a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-social {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  background: var(--white);
}

.contact-page {
  background: var(--night);
}

.contact-page .site-header {
  position: fixed;
}

.contact-page .theater-header {
  background: transparent;
}

.contact-page .theater-header.is-scrolled {
  background: var(--night);
}

.contact-main {
  background: var(--night);
}

.contact-main > :not(.contact-hero) {
  position: relative;
  z-index: 2;
}

.contact-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 585px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .36), rgba(0, 0, 0, .58)),
    url("../img/banner-hablemos.jpg") center 45% / cover no-repeat;
}

.contact-hero-content {
  width: min(1020px, calc(100% - 64px));
  transform: translateY(12px);
}

.contact-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(4.2rem, 6.55vw, 6.35rem);
  font-weight: 800;
  line-height: 1;
}

.contact-hero p {
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(.85rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: .55em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-transition {
  height: 200px;
  margin-top: 0;
  overflow: hidden;
  background: var(--night);
}

.contact-transition::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: var(--soft);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.contact-slant {
  height: 100px;
  background: var(--night);
  position: relative;
}

.contact-slant::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--soft);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.contact-content .footer-grid {
  padding-top: 80px;
  padding-bottom: 118px;
}

.contact-content .footer-grid h2 {
  font-size: clamp(2.55rem, 3.2vw, 3.25rem);
}

.contact-content .footer-grid h3 {
  margin-bottom: 32px;
}

.contact-content .footer-grid p {
  margin-top: 0;
}

.contact-content .social-links {
  margin-top: 0;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.values span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 10px solid var(--yellow-dark);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.centered {
  text-align: center;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 26px;
  margin-top: 36px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #7f8fb8;
  font-size: 1rem;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.contact-form input {
  min-height: 60px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  border-radius: 0;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #eda906 0%, #78bc77 100%);
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  transform: none;
  background: linear-gradient(180deg, #f0b51b 0%, #6caf68 100%);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

.legal-page {
  min-height: calc(100vh - 74px);
}

.legal-page h1 {
  margin-top: 0;
}

.join-page {
  color: var(--white);
  background: var(--night);
}

.join-hero {
  min-height: 593px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(29, 32, 40, .38), rgba(29, 32, 40, .38)),
    url("../img/showprime-unirse-a-la-locura.jpg") center 42% / cover no-repeat;
}

.join-hero-inner {
  width: min(1040px, calc(100% - 64px));
  transform: translateY(18px);
}

.join-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 6.7vw, 6.45rem);
  font-weight: 800;
  line-height: .98;
}

.join-hero p {
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.join-intro {
  padding: 76px 0 0;
  background: var(--night);
}

.join-intro-inner {
  max-width: 760px;
}

.join-intro p {
  margin: 0 0 28px;
  color: #8da2d0;
  font-size: .94rem;
  line-height: 1.9;
  text-align: center;
}

.works-page {
  background: var(--night);
}

.works-page .site-header {
  position: fixed;
}

.works-page .theater-header {
  background: transparent;
}

.works-page .theater-header.is-scrolled {
  background: var(--night);
}

.works-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 390px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .56)),
    url("../img/banner-obras-recientes.png") center / cover no-repeat;
}

.works-hero-content {
  transform: translateY(20px);
}

.works-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 5.6vw, 6.1rem);
  font-weight: 800;
  line-height: 1;
}

.works-hero p {
  margin: 32px 0 0;
  font-size: clamp(.9rem, 1vw, 1.08rem);
  font-weight: 700;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.works-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
  background: var(--night);
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: #11141b;
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}

.work-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.1vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  background: rgba(224, 193, 114, .88);
  opacity: 0;
  transition: opacity .35s ease;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.02);
}

.work-card:hover span,
.work-card:focus-visible span {
  opacity: 1;
}

.project-detail-page {
  background: var(--night);
}

.project-detail-main {
  color: var(--white);
  background: var(--night);
}

.project-detail-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  background: #11141b center / cover no-repeat;
}

.project-detail-hero::before {
  content: "";
  grid-area: 1 / 1;
  min-height: 68vh;
  background: linear-gradient(180deg, rgba(4, 7, 19, .18), rgba(4, 7, 19, .82));
}

.project-detail-hero-content {
  grid-area: 1 / 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 64px;
}

.project-detail-hero-content p {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.project-detail-hero-content h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .96;
}

.project-detail-content {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.project-detail-content p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.8;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.project-detail-actions .button {
  min-width: 210px;
}

.lavar-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 48px;
  background: transparent;
}

.lavar-page .theater-header .brand img {
  width: 112px;
}

.lavar-hero {
  width: 100%;
  min-height: 100vh;
  background: #000 url("../img/lavar-marcar-enterrar-banner.jpg") center center / cover no-repeat;
}

.bitchcoin-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.bitchcoin-page .theater-header .brand img {
  width: 110px;
}

.bitchcoin-hero {
  width: 100%;
  min-height: 100vh;
  background: #111 url("../img/bitchcoin-banner-v2.png") center center / cover no-repeat;
}

.bitchcoin-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1128px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 36px;
}

.bitchcoin-copy,
.bitchcoin-media {
  min-width: 0;
}

.bitchcoin-detail h1 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
}

.bitchcoin-detail h2 {
  margin: 26px 0 24px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}

.bitchcoin-detail p {
  margin: 0 0 18px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.78;
}

.bitchcoin-detail a {
  color: #ff1c64;
  text-decoration: none;
}

.bitchcoin-team {
  line-height: 1.82 !important;
}

.bitchcoin-media {
  padding-top: 9px;
}

.bitchcoin-media h2 {
  margin-top: 0;
  margin-bottom: 26px;
}

.bitchcoin-video {
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-top: 18px;
  margin-bottom: 9px;
  background: #111;
}

.bitchcoin-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bitchcoin-gallery-frame {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.bitchcoin-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 3);
  gap: 11px;
  overflow: hidden;
}

.bitchcoin-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.bitchcoin-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.like-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.like-page .theater-header .brand img {
  width: 110px;
}

.like-hero {
  width: 100%;
  min-height: 100vh;
  background: #e78b00 url("../img/like-banner.jpg") center center / cover no-repeat;
}

.like-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1128px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 42px;
}

.like-copy,
.like-media {
  min-width: 0;
}

.like-detail h1 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.2;
}

.like-detail h2 {
  margin: 0 0 22px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.3;
}

.like-detail p {
  margin: 0 0 18px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.82;
}

.like-media {
  padding-top: 10px;
}

.like-team {
  margin-bottom: 20px !important;
}

.like-video {
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 9px;
  background: #111;
}

.like-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.like-gallery-frame {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.like-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 3);
  gap: 11px;
  overflow: hidden;
}

.like-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.like-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.royal-gag-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.royal-gag-page .theater-header .brand img {
  width: 110px;
}

.royal-gag-hero {
  width: 100%;
  min-height: 100vh;
  background: #fff url("../img/royal-gag-banner-web.jpg") center center / cover no-repeat;
}

.royal-gag-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1128px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 42px;
}

.royal-gag-copy,
.royal-gag-media {
  min-width: 0;
}

.royal-gag-detail h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.2;
}

.royal-gag-detail h2 {
  margin: 26px 0 20px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.3;
}

.royal-gag-detail p {
  margin: 0 0 18px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.82;
}

.royal-gag-media {
  padding-top: 8px;
}

.royal-gag-video {
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 9px;
  background: #111;
}

.royal-gag-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.royal-gag-gallery-frame {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.royal-gag-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 3);
  gap: 11px;
  overflow: hidden;
}

.royal-gag-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.royal-gag-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.pinocho-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.pinocho-page .theater-header .brand img {
  width: 110px;
}

.pinocho-hero {
  width: 100%;
  min-height: 100vh;
  background: #07092c url("../img/pinocho-banner.jpg") center center / cover no-repeat;
}

.pinocho-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1216px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 52px;
}

.pinocho-copy,
.pinocho-media {
  min-width: 0;
}

.pinocho-detail h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
}

.pinocho-detail h2 {
  margin: 28px 0 18px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.3;
}

.pinocho-detail p {
  margin: 0 0 17px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.82;
}

.pinocho-media {
  padding-top: 8px;
}

.pinocho-video {
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 9px;
  background: #111;
}

.pinocho-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.pinocho-gallery-frame {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.pinocho-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 22px) / 3);
  gap: 11px;
  overflow: hidden;
}

.pinocho-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.pinocho-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.juan-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.juan-page .theater-header .brand img {
  width: 110px;
}

.juan-hero {
  width: 100%;
  min-height: 100vh;
  background: #08081d url("../img/juan-sin-miedo-banner.jpg") center center / cover no-repeat;
}

.juan-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1128px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 52px;
}

.juan-copy,
.juan-media {
  min-width: 0;
}

.juan-detail h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
}

.juan-detail h2 {
  margin: 28px 0 18px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.3;
}

.juan-detail p {
  margin: 0 0 17px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.82;
}

.juan-media {
  padding-top: 8px;
}

.juan-video {
  width: 100%;
  aspect-ratio: 5 / 3;
  background: #111;
}

.juan-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.payaso-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.payaso-page .theater-header .brand img {
  width: 110px;
}

.payaso-hero {
  width: 100%;
  min-height: 100vh;
  background: #fff url("../img/payaso-banner.jpg") center center / cover no-repeat;
}

.payaso-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1128px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 52px;
}

.payaso-copy,
.payaso-media {
  min-width: 0;
}

.payaso-detail h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
}

.payaso-detail h2 {
  margin: 28px 0 18px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.3;
}

.payaso-detail p {
  margin: 0 0 17px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.82;
}

.payaso-media {
  padding-top: 20px;
}

.payaso-video-panel {
  padding: 40px 40px 60px;
  border: 1px solid #000;
  background: #000;
}

.payaso-video {
  width: 100%;
  aspect-ratio: 5 / 3;
}

.payaso-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.terapia-page .project-detail-main {
  min-height: 100vh;
  background: #20232c;
}

.terapia-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.terapia-page .theater-header .brand img {
  width: 110px;
}

.terapia-hero {
  width: 100%;
  min-height: 100vh;
  background: #147a91 url("../img/terapia-el-musical.jpg") center center / cover no-repeat;
}

.terapia-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .92fr);
  gap: 60px;
  width: min(1170px, calc(100% - 96px));
  margin: 0 auto;
  padding: 50px 0 80px;
}

.terapia-copy {
  min-width: 0;
}

.terapia-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.terapia-copy h2 {
  margin: 30px 0 26px;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
}

.terapia-copy p {
  margin: 0 0 28px;
  color: #7890c3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 2.15;
}

.terapia-copy strong {
  color: #7890c3;
}

.terapia-card {
  align-self: start;
  min-width: 0;
  padding: 50px 40px 60px;
  border: 1px solid #30343e;
  background: #1a1d24;
}

.terapia-gallery-frame {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  margin-bottom: 54px;
}

.terapia-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.terapia-gallery a {
  display: block;
  height: 212px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  background: #111;
}

.terapia-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.terapia-gallery-frame .goya-gallery-arrow {
  align-self: center;
  width: 28px;
  height: 120px;
  padding: 0;
  border: 0;
  color: #dce2ec;
  font-size: 30px;
  background: #20232c;
}

.terapia-facts {
  display: grid;
  gap: 28px;
  margin: 0 0 46px;
}

.terapia-facts div {
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 24px;
}

.terapia-facts dt {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.terapia-facts dd {
  margin: 0;
  color: #56617d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.terapia-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(#e8aa18, #8dcc72);
}

.divas-page .project-detail-main {
  background: #20232c;
}

.divas-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.divas-page .theater-header .brand img {
  width: 110px;
}

.divas-hero {
  width: 100%;
  min-height: 100vh;
  background: #0d0f14 url("../img/el-lamento-de-las-divas.jpg") center center / cover no-repeat;
}

.divas-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 90px);
  width: min(1128px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 76px;
}

.divas-copy,
.divas-media {
  min-width: 0;
}

.divas-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
}

.divas-copy h2 {
  margin: 30px 0 18px;
  color: #fff;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.3;
}

.divas-copy p {
  margin: 0 0 18px;
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.85;
}

.divas-copy strong {
  color: #8797c6;
}

.divas-media {
  padding-top: 20px;
}

.divas-video-panel {
  padding: 40px 40px 60px;
  border: 1px solid #000;
  background: #000;
}

.divas-video {
  width: 100%;
  aspect-ratio: 5 / 3;
}

.divas-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ascensor-page .project-detail-main {
  background: #20232c;
}

.ascensor-page .theater-header {
  position: absolute;
  min-height: 72px;
  padding: 20px 44px;
  background: transparent;
}

.ascensor-page .theater-header .brand img {
  width: 110px;
}

.ascensor-hero {
  width: 100%;
  height: 600px;
  background: #17191f url("../img/ascensor-hero.jpg") center center / cover no-repeat;
}

.ascensor-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .95fr);
  gap: 60px;
  width: min(1170px, calc(100% - 96px));
  margin: 0 auto;
  padding: 100px 0 80px;
}

.ascensor-copy {
  min-width: 0;
}

.ascensor-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.ascensor-copy h2 {
  margin: 28px 0 46px;
  color: #cfd7f2;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.ascensor-copy p {
  margin: 0 0 28px;
  color: #7890c3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 2.15;
}

.ascensor-card {
  align-self: start;
  min-width: 0;
  padding: 30px;
  border: 1px solid #30343e;
  background: #1a1d24;
}

.ascensor-award-image {
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
}

.ascensor-award-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .25s ease;
}

.ascensor-award-image:hover img,
.ascensor-award-image:focus-visible img {
  transform: scale(1.03);
}

.ascensor-gallery-frame {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  margin-bottom: 46px;
}

.ascensor-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.ascensor-gallery a {
  display: block;
  height: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  background: #111;
}

.ascensor-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ascensor-gallery-frame .goya-gallery-arrow {
  align-self: center;
  width: 28px;
  height: 80px;
  padding: 0;
  border: 0;
  color: #dce2ec;
  font-size: 28px;
  background: #20232c;
}

.ascensor-facts {
  display: grid;
  gap: 28px;
  margin: 0 0 42px;
}

.ascensor-facts div {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: start;
  gap: 22px;
}

.ascensor-facts dt {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.ascensor-facts dd {
  margin: 0;
  color: #7890c3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.ascensor-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  background: linear-gradient(#e8aa18, #8dcc72);
}

@media (max-width: 900px) {
  .bitchcoin-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .like-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .royal-gag-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .pinocho-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .juan-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .payaso-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .terapia-page .theater-header {
    padding: 18px 20px;
  }

  .terapia-page .theater-header .brand img {
    width: 100px;
  }

  .terapia-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .terapia-card {
    padding: 32px 22px 40px;
  }

  .terapia-gallery {
    grid-auto-columns: calc((100% - 16px) / 3);
    gap: 8px;
  }

  .terapia-gallery a {
    height: 180px;
  }

  .divas-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .ascensor-hero {
    height: 52vw;
    min-height: 340px;
  }

  .ascensor-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 42px;
    padding: 48px 0 64px;
  }

  .ascensor-card {
    padding: 24px;
  }
}

.lavar-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 4vw, 76px);
  width: min(1600px, calc(100% - 132px));
  margin: 0 auto;
  padding: 42px 0 46px;
  transform: translateX(6px);
}

.lavar-copy,
.lavar-media {
  min-width: 0;
}

.lavar-copy {
  margin-top: -20px;
}

.lavar-detail h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(36px, 3.4vw, 58px);
  font-weight: 600;
  line-height: 1.2;
}

.lavar-detail p,
.lavar-info {
  color: #8797c6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1.15vw, 18px);
  line-height: 1.9;
}

.lavar-copy > p:first-of-type {
  margin: 0 0 20px;
  line-height: 2;
}

.lavar-info-title {
  margin: 0 0 14px;
}

.lavar-info {
  margin: 0 0 22px 28px;
  padding: 0;
}

.lavar-info strong,
.lavar-detail a {
  color: #ff1c64;
  font-weight: 700;
  text-decoration: none;
}

.lavar-detail h2 {
  margin: 0 0 24px;
  color: #cfd7f2;
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.3;
}

.lavar-team {
  margin: 0;
}

.lavar-team strong,
.lavar-cast strong {
  font-weight: 700;
}

.lavar-media {
  padding-top: 4px;
}

.lavar-cast {
  margin: 0 0 21px;
}

.lavar-video {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 10px;
  overflow: hidden;
  background: #111;
}

.lavar-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lavar-gallery-frame {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.lavar-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 20px) / 3);
  gap: 10px;
  overflow: hidden;
}

.lavar-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.lavar-gallery img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .lavar-detail {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 680px);
    gap: 48px;
    padding: 48px 0 64px;
    transform: none;
  }

  .lavar-copy {
    margin-top: 0;
  }
}

.goya-page .theater-header {
  position: absolute;
  background: transparent;
}

.goya-hero {
  min-height: 100vh;
  background: url("../img/goya-banner-v2.jpg") center center / cover no-repeat;
}

.american-buffalo-page .theater-header {
  position: absolute;
  background: transparent;
}

.american-buffalo-hero {
  width: 100%;
  min-height: 100vh;
  background: #11141b url("../img/american-buffalo-banner-v2.jpg") center center / cover no-repeat;
}

.roca-negra-page .theater-header {
  position: absolute;
  background: transparent;
}

.roca-negra-hero {
  width: 100%;
  min-height: 90vh;
  background: #11141b url("../img/roca-negra-banner.jpg") center center / cover no-repeat;
}

.amaeru-page .theater-header {
  position: absolute;
  background: transparent;
}

.amaeru-hero {
  width: 100%;
  min-height: 90vh;
  background: #11141b url("../img/amaeru-banner.jpg") center center / cover no-repeat;
}

.amaeru-page .project-detail-main {
  background: var(--night);
}

.amaeru-detail {
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(0, 827px);
  justify-content: center;
  gap: 96px;
  padding: 82px 128px 86px;
  background: var(--night);
}

.amaeru-copy,
.amaeru-media {
  min-width: 0;
}

.amaeru-copy h1 {
  margin: 0 0 42px;
  color: var(--white);
  font-size: 62px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
}

.amaeru-copy p {
  margin: 0 0 40px;
  color: #8797c6;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.92;
}

.amaeru-info-title {
  margin-top: 48px !important;
  margin-bottom: 34px !important;
  text-transform: uppercase;
}

.amaeru-info {
  margin: 0 0 0 30px;
  padding: 0;
  color: #8797c6;
  font-size: 20px;
  line-height: 1.9;
}

.amaeru-info li {
  padding-left: 10px;
}

.amaeru-info strong,
.amaeru-cast li {
  color: #ff1c64;
  font-weight: 800;
}

.amaeru-media {
  padding-top: 32px;
}

.amaeru-media h2 {
  margin: 0 0 54px;
  color: #cfd7f2;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.amaeru-cast {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.9;
}

.amaeru-cast li + li {
  margin-top: 20px;
}

.amaeru-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 20px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.amaeru-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86);
}

.amaeru-gallery-frame {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.amaeru-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow: hidden;
}

.amaeru-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.amaeru-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform .25s ease;
}

.amaeru-gallery a:hover img,
.amaeru-gallery a:focus-visible img {
  transform: scale(1.03);
}

.roca-negra-page .project-detail-main {
  background: var(--night);
}

.roca-negra-detail {
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(0, 827px);
  justify-content: center;
  gap: 96px;
  padding: 86px 128px 86px;
  background: var(--night);
}

.roca-negra-copy,
.roca-negra-media {
  min-width: 0;
}

.roca-negra-copy h1 {
  margin: 0 0 38px;
  color: var(--white);
  font-size: 62px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
}

.roca-negra-copy p {
  margin: 0 0 28px;
  color: #8797c6;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.92;
}

.roca-negra-info-title {
  margin-top: 58px !important;
  margin-bottom: 42px !important;
  text-transform: uppercase;
}

.roca-negra-info {
  margin: 0 0 0 30px;
  padding: 0;
  color: #8797c6;
  font-size: 20px;
  line-height: 1.9;
}

.roca-negra-info li {
  padding-left: 10px;
}

.roca-negra-info strong,
.roca-negra-cast li {
  color: #ff1c64;
  font-weight: 800;
}

.roca-negra-media {
  padding-top: 32px;
}

.roca-negra-media h2 {
  margin: 0 0 54px;
  color: #cfd7f2;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.roca-negra-cast {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.9;
}

.roca-negra-cast li + li {
  margin-top: 28px;
}

.roca-negra-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 20px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.roca-negra-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86);
}

.roca-negra-gallery-frame {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.roca-negra-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow: hidden;
}

.roca-negra-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.roca-negra-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform .25s ease;
}

.roca-negra-gallery a:hover img,
.roca-negra-gallery a:focus-visible img {
  transform: scale(1.03);
}

.american-buffalo-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 62px;
  width: min(1216px, calc(100% - 60px));
  margin: 0 auto;
  padding: 78px 0 62px;
  background: var(--night);
}

.american-buffalo-page .project-detail-main {
  background: var(--night);
}

.american-buffalo-copy,
.american-buffalo-media {
  min-width: 0;
}

.american-buffalo-logo {
  display: block;
  width: 300px;
  height: auto;
  margin: 0 0 40px;
}

.american-buffalo-copy h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .01em;
}

.american-buffalo-copy p {
  margin: 0 0 30px;
  color: #8797c6;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

.american-buffalo-copy strong,
.american-buffalo-cast strong {
  font-weight: 800;
}

.american-buffalo-info-title {
  margin-top: 36px !important;
  margin-bottom: 26px !important;
  text-transform: uppercase;
}

.american-buffalo-info {
  margin: 0 0 28px 22px;
  padding: 0;
  color: #8797c6;
  font-size: 16px;
  line-height: 1.9;
}

.american-buffalo-info li {
  padding-left: 8px;
}

.american-buffalo-info strong,
.american-buffalo-ticket {
  color: #ff1c64;
}

.american-buffalo-ticket {
  display: inline-block;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.american-buffalo-creative {
  margin-top: 62px;
}

.american-buffalo-creative h2 {
  margin: 0 0 42px;
  color: #cfd7f2;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
}

.american-buffalo-creative p {
  margin: 0 0 32px;
  color: #8797c6;
  font-size: 18px;
  line-height: 1.55;
}

.american-buffalo-creative strong {
  color: #8797c6;
}

.american-buffalo-creative a {
  color: #ff1c64;
  text-decoration: none;
}

.american-buffalo-media {
  padding-top: 304px;
}

.american-buffalo-media h2 {
  margin: 0 0 36px;
  color: #cfd7f2;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.3;
}

.american-buffalo-cast {
  margin: 0 0 36px;
  padding: 0 0 0 8px;
  list-style: none;
  color: #8797c6;
  font-size: 15px;
  line-height: 2.05;
}

.american-buffalo-cast span {
  font-weight: 400;
}

.american-buffalo-banner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: transparent;
}

.american-buffalo-banner-strip img {
  width: 182px;
  height: auto;
}

.american-buffalo-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 20px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.american-buffalo-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86);
}

.american-buffalo-gallery-frame {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.american-buffalo-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow: hidden;
}

.american-buffalo-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.american-buffalo-gallery img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  transition: transform .25s ease;
}

.american-buffalo-gallery a:hover img,
.american-buffalo-gallery a:focus-visible img {
  transform: scale(1.03);
}

.goya-detail {
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(0, 827px);
  justify-content: center;
  gap: 96px;
  padding: 76px 128px 86px;
  background: var(--night);
}

.goya-copy h1 {
  margin: 0 0 42px;
  color: var(--white);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.goya-copy p {
  max-width: 790px;
  margin: 0 0 28px;
  color: #8797c6;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.goya-copy a {
  color: #ff1c64;
  font-weight: 800;
  text-decoration: none;
}

.goya-media h2 {
  margin: 30px 0 32px;
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
}

.goya-cast {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: #cfd7f2;
  font-size: 15px;
  line-height: 2.05;
}

.goya-cast a {
  color: #ff1c64;
  text-decoration: none;
}

.goya-seal {
  width: 236px;
  margin: 0 0 26px;
}

.goya-video {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.goya-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82);
}

.goya-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 60px;
  border-radius: 16px;
  background: #ff0000;
  transform: translate(-50%, -50%);
}

.goya-play::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 18px;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--white);
}

.goya-watch {
  position: absolute;
  right: 28px;
  bottom: 24px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  background: rgba(0, 0, 0, .58);
}

.goya-gallery-frame {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.goya-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow: hidden;
}

.goya-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.goya-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform .25s ease;
}

.goya-gallery a:hover img,
.goya-gallery a:focus-visible img {
  transform: scale(1.03);
}

.goya-gallery-arrow {
  border: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 2.4rem;
  background: rgba(255, 255, 255, .04);
}

.coplatronica-page {
  color: var(--white);
  background: var(--night);
}

.coplatronica-page .theater-header {
  position: absolute;
  background: transparent;
}

.coplatronica-main {
  background: var(--night);
}

.coplatronica-hero {
  min-height: 100vh;
  background: url("../img/coplatronica-banner.jpg") center / cover no-repeat;
}

.coplatronica-detail {
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(0, 827px);
  justify-content: center;
  gap: 96px;
  padding: 76px 128px 86px;
  background: var(--night);
}

.coplatronica-copy,
.coplatronica-media {
  min-width: 0;
  padding-top: 0;
}

.coplatronica-copy h1 {
  margin: 0 0 42px;
  color: var(--white);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.coplatronica-copy p {
  max-width: 790px;
  margin: 0 0 34px;
  color: #8797c6;
  font-size: 22px;
  font-weight: 400;
  line-height: 2.05;
}

.coplatronica-media h2 {
  margin: 37px 0 66px;
  color: var(--white);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.35;
}

.coplatronica-singer {
  margin: 0 0 40px;
  color: #8797c6;
  font-size: 34px;
  line-height: 1.4;
}

.coplatronica-singer strong {
  color: #8797c6;
  font-weight: 800;
}

.coplatronica-singer a {
  color: #ff1c64;
  font-weight: 400;
  text-decoration: none;
}

.coplatronica-video {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.coplatronica-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
}

.coplatronica-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 68px;
  border-radius: 18px;
  background: #ff0000;
  transform: translate(-50%, -50%);
}

.coplatronica-play::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 20px;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--white);
}

.coplatronica-watch {
  position: absolute;
  right: 38px;
  bottom: 34px;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  background: rgba(0, 0, 0, .58);
}

.coplatronica-gallery-frame {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .22);
}

.coplatronica-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow: hidden;
}

.coplatronica-gallery a {
  display: block;
  overflow: hidden;
  background: #111;
}

.coplatronica-gallery img {
  width: 100%;
  height: 166px;
  object-fit: cover;
  transition: transform .25s ease;
}

.coplatronica-gallery-arrow {
  border: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 2.4rem;
  background: rgba(255, 255, 255, .04);
}

.coplatronica-gallery a:hover img,
.coplatronica-gallery a:focus-visible img {
  transform: scale(1.03);
}

[class$="-gallery"] {
  will-change: transform;
}

[class$="-gallery"] img {
  transition: transform .25s ease;
}

[class$="-gallery"] a:hover img,
[class$="-gallery"] a:focus-visible img {
  transform: scale(1.05);
}

.goya-gallery-arrow,
.coplatronica-gallery-arrow {
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.goya-gallery-arrow:hover,
.goya-gallery-arrow:focus-visible,
.coplatronica-gallery-arrow:hover,
.coplatronica-gallery-arrow:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 8vw);
  grid-template-rows: 58px minmax(0, 1fr) 58px;
  column-gap: 24px;
  padding: 0 28px 0 0;
  background: rgba(0, 0, 0, .92);
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox-stage {
  grid-column: 1;
  grid-row: 1 / 4;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.gallery-lightbox-image {
  max-width: min(72vw, 1120px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, .5);
}

.gallery-lightbox-nav {
  grid-column: 1;
  z-index: 2;
  justify-self: center;
  width: 80px;
  border: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 4rem;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}

.gallery-lightbox-prev {
  grid-row: 1;
  align-self: start;
}

.gallery-lightbox-next {
  grid-row: 3;
  align-self: end;
}

.gallery-lightbox-thumbs {
  grid-column: 2;
  grid-row: 1 / 4;
  min-height: 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.gallery-lightbox-thumbs button {
  flex: 0 0 128px;
  padding: 0;
  border: 2px solid transparent;
  background: #151515;
  opacity: .56;
  cursor: pointer;
}

.gallery-lightbox-thumbs button.is-active {
  border-color: rgba(255, 255, 255, .75);
  opacity: 1;
}

.gallery-lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .gallery-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 48px minmax(0, 1fr) 48px 92px;
    padding: 0;
  }

  .gallery-lightbox-stage {
    grid-row: 1 / 4;
  }

  .gallery-lightbox-image {
    max-width: 94vw;
    max-height: 72vh;
  }

  .gallery-lightbox-thumbs {
    grid-column: 1;
    grid-row: 4;
    padding: 6px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .gallery-lightbox-thumbs button {
    flex-basis: 80px;
  }
}

@media (max-width: 980px) {
  .gateway,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gateway-panel {
    min-height: auto;
    padding: 64px 32px;
    grid-template-rows: auto;
    gap: 38px;
  }

  .project-grid {
    grid-template-columns: minmax(0, 620px);
    padding: 20px;
  }

  .project-card img {
    aspect-ratio: 16 / 10;
  }

  .two-columns,
  .values {
    grid-template-columns: 1fr;
  }

  .coplatronica-detail {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 24px 70px;
  }

  .goya-detail {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 24px 70px;
  }

  .goya-copy h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .coplatronica-hero {
    min-height: 68vh;
  }

  .values span {
    aspect-ratio: auto;
    min-height: 90px;
    border-radius: 999px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .theater-header {
    min-height: 82px;
    padding: 22px 24px;
  }

  .theater-header .brand img {
    width: 138px;
  }

  .theater-tools {
    gap: 20px;
  }

  .theater-nav {
    display: none;
  }

  .menu-overlay {
    padding: 20px 24px 48px;
  }

  .menu-overlay-logo {
    width: 148px;
  }

  .menu-overlay-tools {
    top: 26px;
    right: 24px;
    gap: 22px;
  }

  .menu-overlay-links {
    gap: 38px;
  }

  .menu-overlay-links a {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .theater-hero-content {
    width: min(100% - 32px, 680px);
    transform: translateY(2vh);
  }

  .theater-hero p {
    font-size: .78rem;
    letter-spacing: .18em;
  }

  .theater-hero h1 {
    font-size: clamp(3.7rem, 18vw, 7rem);
    white-space: normal;
  }

  .hero {
    padding: 82px 0 68px;
  }

  .section {
    padding: 62px 0;
  }
}

