:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #cfc3ae;
  --soft: #9a8f82;
  --coal: #0b0a09;
  --black: #050505;
  --wine: #4b141a;
  --wine-deep: #21090d;
  --gold: #d8b465;
  --teal: #5fa7a1;
  --line: rgba(247, 242, 232, 0.16);
  --line-strong: rgba(216, 180, 101, 0.36);
  --surface: rgba(14, 12, 10, 0.82);
  --surface-solid: #14110f;
  --max: 1180px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.lang-es [data-lang="en"],
body.lang-en [data-lang="es"] {
  display: none !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: var(--black);
}

.only-mobile {
  display: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

.brand-mark {
  font-size: 1.28rem;
  text-transform: uppercase;
}

.brand-copy {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-menu a {
  transition: color 180ms var(--ease);
}

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

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.language-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button.is-active {
  background: var(--gold);
  color: var(--black);
}

.nav-cta {
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink) !important;
  background: rgba(216, 180, 101, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.42);
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  content: "";
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.nav-toggle-line::before {
  transform: translateY(-7px);
}

.nav-toggle-line::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.08);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.64) 43%, rgba(33, 9, 13, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.14) 44%, rgba(5, 5, 5, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 5.5rem;
  max-width: var(--max);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.85rem;
  font-weight: 500;
}

h2 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 500;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.hero-lede,
.large-copy {
  width: 100%;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.18rem;
  overflow-wrap: break-word;
}

.hero-actions,
.quote-copy .button {
  margin-top: 1.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #100c07;
}

.button-secondary {
  margin-left: 0.7rem;
  border-color: var(--line);
  background: rgba(247, 242, 232, 0.06);
  color: var(--ink);
}

.proof-band {
  border-block: 1px solid var(--line);
  background: var(--surface-solid);
}

.proof-grid {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.proof-grid p {
  width: 100%;
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.proof-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.proof-locations span,
.event-list span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.48rem 0.72rem;
  color: var(--muted);
  background: rgba(247, 242, 232, 0.04);
}

.section {
  padding: 6rem 0;
}

.section-intro {
  background: linear-gradient(180deg, #050505 0%, #130b0c 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: end;
}

.section-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-shows {
  background: #0e0d0c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.testimonial-card,
.faq-item,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 242, 232, 0.035);
}

.service-card {
  min-height: 250px;
  padding: 1.3rem;
}

.service-card-feature {
  grid-column: span 2;
  min-height: 250px;
  border-color: var(--line-strong);
  background: rgba(216, 180, 101, 0.07);
}

.service-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card p,
.corporate-copy p,
.about-copy p,
.faq-item p,
.quote-copy p {
  color: var(--muted);
}

.section-corporate {
  background:
    linear-gradient(90deg, rgba(75, 20, 26, 0.3), rgba(5, 5, 5, 0.2)),
    #080706;
}

.corporate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.event-list span {
  color: var(--ink);
}

.corporate-points {
  display: grid;
  gap: 0.72rem;
  margin: 1.5rem 0 0;
}

.corporate-points span,
.credential-grid span {
  display: grid;
  gap: 0.18rem;
  border-left: 2px solid var(--gold);
  padding-left: 0.82rem;
}

.corporate-points strong,
.credential-grid strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.corporate-points small,
.credential-grid small {
  color: var(--muted);
}

.theater-section {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.96), rgba(20, 8, 12, 0.94)),
    #0b0909;
}

.theater-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

.theater-copy p {
  color: var(--muted);
}

.theater-copy .button-secondary {
  margin: 1rem 0 0;
}

.theater-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 242, 232, 0.035);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase-card div {
  padding: 1rem;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
}

.showcase-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.showcase-card-wide img {
  height: 100%;
  aspect-ratio: auto;
}

.media-section {
  padding: 6rem 0;
  background: #080808;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 1rem;
}

.media-tile {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #16110f;
}

.media-tile-large {
  grid-row: span 2;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}

.media-tile:hover img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.08);
}

.media-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(247, 242, 232, 0.2);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-weight: 800;
}

.reel-strip {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
}

.reel-strip a {
  color: var(--gold);
  font-weight: 800;
}

.section-testimonials {
  background: linear-gradient(180deg, #080808 0%, #140b0d 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.4rem;
  min-height: 170px;
  display: flex;
  align-items: center;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.28;
}

.section-about {
  background: #0e0d0c;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #16110f;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.section-faq {
  background: #080706;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.quote-section {
  padding: 6rem 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88), rgba(75, 20, 26, 0.72)),
    url("assets/current-site/current-14.jpg") center / cover no-repeat;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.field-full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(247, 242, 232, 0.08);
  color: var(--ink);
  padding: 0.86rem 0.9rem;
  outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  background: rgba(247, 242, 232, 0.12);
}

.quote-form select option {
  color: #111;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-grid p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--gold);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 19;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #25d366;
  color: #06160b;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .site-menu {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
    padding: 0.55rem;
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a,
  .language-switch,
  .nav-cta {
    margin: 0.2rem;
  }

  .site-menu a {
    padding: 0.7rem 0.75rem;
  }

  .language-switch {
    align-self: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .split-layout,
  .corporate-layout,
  .theater-layout,
  .about-layout,
  .faq-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-feature {
    grid-column: span 2;
  }

  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .media-tile,
  .media-tile-large {
    min-height: 320px;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: calc(100vw - 1.25rem);
    max-width: calc(100vw - 1.25rem);
  }

  .hero-content {
    max-width: calc(100vw - 1.25rem);
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding: 7.6rem 0 4rem;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede,
  .large-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .only-mobile {
    display: block;
  }

  .button {
    width: 100%;
  }

  .button-secondary {
    margin: 0.75rem 0 0;
  }

  .proof-grid,
  .footer-grid,
  .reel-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-grid p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .proof-locations {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-locations span {
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .section,
  .media-section,
  .quote-section {
    padding: 4.5rem 0;
  }

  .service-grid,
  .testimonial-grid,
  .theater-grid,
  .credential-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card-feature {
    grid-column: auto;
  }

  .showcase-card-wide {
    grid-template-columns: 1fr;
  }

  .media-tile,
  .media-tile-large {
    min-height: 260px;
  }

  .testimonial-card p {
    font-size: 1.18rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
