/* =========================================================
   VARIABLES
========================================================= */
:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f5f1e8;
  --text-soft: #cfc7bb;
  --gold: #d4af37;
  --gold-soft: #f0d27a;
  --line: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.14);
  --header-h: 88px;
  --radius: 22px;
  --container: 1240px;
}

/* =========================================================
   RESET / BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(55, 100, 160, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(212, 120, 55, 0.12),
      transparent 20%
    ),
    linear-gradient(180deg, #040404 0%, #090909 40%, #040404 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* 🔥 FIX SCROLL MODAL */
body.modal-open {
  overflow: hidden;
}

/* SOLO menú */
body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* 🔥🔥🔥 FIX DEFINITIVO DEL PROBLEMA */
main,
footer {
  position: relative;
  z-index: auto;
}

header {
  position: relative;
}
/* =========================================================
   LAYOUT GENERAL
========================================================= */
.section {
  position: relative;
  padding: 110px 0;
}

.about,
.styles,
.gallery {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.01)
  );
}

.about .section-shell,
.styles .section-shell,
.rooms .section-shell,
.gallery .section-shell,
.location .section-shell,
.services .section-shell {
  position: relative;
}

.about .section-shell::before,
.services .section-shell::before,
.styles .section-shell::before,
.rooms .section-shell::before,
.gallery .section-shell::before,
.location .section-shell::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.8;
}

/* =========================================================
   ABOUT - NOSOTROS
========================================================= */
.about {
  position: relative;
  overflow: hidden;
  padding: 120px 0;

  background: radial-gradient(
      circle at 15% 20%,
      rgba(0, 255, 200, 0.14),
      transparent 22%
    ),
    radial-gradient(circle at 85% 25%, rgba(255, 0, 140, 0.14), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(0, 140, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 50%, #070707 100%);
}

/* BLOBS NEON */
.about__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.about__bg-shape--1 {
  width: 320px;
  height: 320px;
  top: 40px;
  left: -60px;
  background: rgba(0, 255, 200, 0.18);
}

.about__bg-shape--2 {
  width: 380px;
  height: 380px;
  right: -80px;
  bottom: 0;
  background: rgba(255, 0, 140, 0.16);
}

/* GRID */
.about__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);

  background-size: 32px 32px;
}

/* LOGO FONDO */
.about__logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  opacity: 0.04;
  pointer-events: none;
  filter: blur(2px);
}

/* CONTENEDOR */
.about .section-shell {
  position: relative;
  z-index: 2;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;

  padding: 50px 30px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(212, 175, 55, 0.15);

  backdrop-filter: blur(8px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.06);
}

/* LOGO CENTRAL */
.about__logo-wrap {
  width: 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 40%
    ),
    linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(255, 255, 255, 0.05));

  border: 1px solid rgba(212, 175, 55, 0.3);

  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 0 40px rgba(0, 255, 200, 0.08),
    0 0 50px rgba(255, 0, 140, 0.08);
}

/* LOGO IMG */
.about__logo-img {
  width: 70%;
  height: auto;
  object-fit: contain;

  filter: brightness(1.1) contrast(1.05)
    drop-shadow(0 0 10px rgba(212, 175, 55, 0.25))
    drop-shadow(0 0 20px rgba(255, 0, 140, 0.12));
}

/* TEXTO */
.about .section-kicker {
  color: #f0d27a;
  letter-spacing: 0.25em;
}

.about .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.about .section-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* =========================================================
   BOTONES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, #b8891f 0%, #d4af37 45%, #f0d27a 100%);
  color: #111;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.45);
}

.btn--ghost:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn--small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 0.88rem;
  cursor: pointer;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 12000;
  overflow: visible;
  transition: background-color 0.35s ease, border-color 0.35s ease,
    backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.site-header__container {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 12002;
}

.site-logo,
.site-footer__logo {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link,
.mobile-link,
.site-footer__nav a {
  position: relative;
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover,
.mobile-link:hover,
.site-footer__nav a:hover {
  color: #fff;
}

.nav-link::after,
.mobile-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link.active,
.mobile-link.active {
  color: #fff;
}

.nav-link.active::after,
.mobile-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: 0.3s ease;
}

.header-cta:hover {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: var(--shadow-gold);
}

/* logo */

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* imagen en blanco */
.site-logo img {
  height: 38px;
  width: auto;
  display: block;

  filter: brightness(0) invert(1); /* 🔥 esto lo hace blanco */
}

/* texto */
.site-logo span {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

/* responsive */
@media (max-width: 768px) {
  .site-logo span {
    font-size: 1rem;
  }

  .site-logo img {
    height: 32px;
  }
}
.site-logo img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}

/* =========================================================
   MENU TOGGLE / HAMBURGUESA
========================================================= */
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 12003;
  flex-shrink: 0;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 28px;
  height: 2.5px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease,
    background-color 0.35s ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle span:nth-child(3) {
  top: 33px;
}

.menu-toggle.is-active span:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;

  background: radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.18),
      transparent 24%
    ),
    radial-gradient(circle at 80% 20%, rgba(44, 90, 160, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.98), rgba(10, 10, 10, 0.98));

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: calc(var(--header-h) + 24px) 24px 32px;
  overflow-y: auto;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 11990;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__nav {
  width: 100%;
  max-width: 420px;
  min-height: calc(100dvh - var(--header-h) - 56px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.mobile-link {
  width: 100%;
  text-align: center;

  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 7vw, 3.3rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-link--cta {
  margin-top: 12px;
  padding: 14px 24px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 80px) 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  pointer-events: none;
}

.hero__overlay {
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.58) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.92;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero__title span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(135deg, #c79828 0%, #d4af37 35%, #ffe49a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
  max-width: 760px;
  margin: 26px auto 0;
  color: #e3ddd3;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   SERVICES
========================================================= */

.services-split {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(212, 175, 55, 0.18);

  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
}

.services-split__panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.services-split__panel + .services-split__panel {
  border-left: 1px solid rgba(212, 175, 55, 0.16);
}

.services-split__media,
.services-split__overlay {
  position: absolute;
  inset: 0;
}

.services-split__media {
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.services-split__overlay {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.38) 42%,
      rgba(0, 0, 0, 0.74) 100%
    ),
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.08),
      transparent 45%,
      rgba(255, 255, 255, 0.02)
    );
  z-index: 1;
}

.services-split__panel:hover .services-split__media {
  transform: scale(1.05);
}

.services-split__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 34px 38px;
}

.services-split__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-split__content h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-split__content p {
  max-width: 460px;
  color: var(--text-soft);
  line-height: 1.8;
}

.services-split__content .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.services-split__panel--classes .services-split__media {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("/static/img/clases-baile.png");
}

.services-split__panel--rental .services-split__media {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("/static/img/sala1.png");
}

/* =========================================================
   CLASSES MODAL
========================================================= */
.classes-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  isolation: isolate;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.classes-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.classes-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.08),
      transparent 30%
    ),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.classes-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 660px);
  max-height: calc(100dvh - 40px);
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 34px rgba(212, 175, 55, 0.09);
  animation: classesModalIn 0.38s ease;
}

.classes-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.95;
}

.classes-modal__dialog::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.classes-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  color: #fff;
  border-radius: 16px;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, border-color 0.28s ease,
    background 0.28s ease, box-shadow 0.28s ease;
}

.classes-modal__close:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(212, 175, 55, 0.42);
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.classes-modal__header {
  position: relative;
  padding: 42px 34px 20px;
  text-align: center;
}

.classes-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.08);
}

.classes-modal__title {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.classes-modal__subtitle {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.98rem;
}

.classes-modal__form {
  padding: 12px 34px 34px;
}

.classes-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.classes-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.classes-field label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.classes-field input,
.classes-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  color: #fff;
  border-radius: 18px;
  padding: 15px 16px;
  min-height: 56px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.28s ease, box-shadow 0.28s ease,
    background 0.28s ease, transform 0.28s ease;
}

.classes-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 16px center;
  background-size: auto, 18px;
}

.classes-field select option {
  background: #111;
  color: #fff;
}

.classes-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.classes-field input:focus,
.classes-field select:focus {
  border-color: rgba(212, 175, 55, 0.44);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.classes-field__hint {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.classes-field__error {
  display: block;
  min-height: 20px;
  font-size: 0.8rem;
  color: #ff8f8f;
  line-height: 1.5;
}

.classes-modal__summary {
  margin: 10px 0 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.05)
  );
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.classes-modal__submit {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28),
    0 10px 22px rgba(212, 175, 55, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.classes-modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.32),
    0 14px 26px rgba(212, 175, 55, 0.18);
  filter: brightness(1.04);
}

body.classes-modal-open {
  overflow: hidden;
}

@keyframes classesModalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .classes-modal {
    padding: 12px;
    align-items: center;
    justify-content: center;
  }

  .classes-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
  }

  .classes-modal__dialog::after {
    border-radius: 23px;
  }

  .classes-modal__header {
    padding: 34px 20px 18px;
  }

  .classes-modal__form {
    padding: 8px 20px 22px;
  }

  .classes-modal__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .classes-modal__title {
    font-size: 1.8rem;
  }

  .classes-modal__subtitle {
    font-size: 0.93rem;
  }

  .classes-field input,
  .classes-field select {
    min-height: 54px;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .classes-modal__summary {
    padding: 15px 16px;
    border-radius: 16px;
  }

  .classes-modal__submit {
    min-height: 56px;
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .classes-modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.5rem;
  }
}

/* =========================================================
   STYLES (NUEVO DISEÑO PRO)
========================================================= */

.styles__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* CARD */
.style-card {
  position: relative;
  height: 420px;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 24px;

  cursor: pointer;

  background-size: cover;
  background-position: center;

  filter: grayscale(100%);
  transition: all 0.5s ease;
}

/* OVERLAY OSCURO */
.style-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));

  z-index: 1;
}

/* TEXTO */
.style-card span {
  position: relative;
  z-index: 2;

  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #fff;
  text-align: center;

  transition: all 0.4s ease;
}

/* HOVER */
.style-card:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.style-card:hover span {
  color: var(--gold);
}

/* =========================================================
   IMAGENES POR ESTILO
========================================================= */

.style-card--salsa {
  background-image: url("/static/img/clases-baile.png");
}

.style-card--bachata {
  background-image: url("/static/img/bachata.png");
}

.style-card--urbano {
  background-image: url("/static/img/urbano.png");
}

.style-card--contempo {
  background-image: url("/static/img/contempo.png");
}

.style-card--heels {
  background-image: url("/static/img/heels.png");
}

.style-card--reggaeton {
  background-image: url("/static/img/reggaeton.jpg");
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
  .styles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .styles__grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    height: 300px;
  }
}

/* =========================================================
   ROOMS
========================================================= */
.rooms__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.room-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  width: 100%;
  padding: 0;
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34), var(--shadow-gold);
}

.room-card__media {
  width: 100%;
  height: 290px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: block;
  margin: 0;
  /* border-radius: 0; */
}

.room-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0.26) 100%
  );
}

.room-card__media--a {
  background-image: url("/static/img/sala1.png");
}

.room-card__media--b {
  background-image: url("/static/img/sala2.png");
}

.room-card__media--c {
  background-image: url("/static/img/sala3.png");
}

.room-card__content {
  padding: 26px 24px 28px;
  text-align: center;
}

.room-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.room-card ul {
  margin: 18px 0 24px;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.room-card li {
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================================
   ROOM MODAL
========================================================= */
.room-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  isolation: isolate;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.room-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.room-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      circle at top,
      rgba(212, 175, 55, 0.08),
      transparent 30%
    ),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.room-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 660px);
  max-height: calc(100dvh - 40px);
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 34px rgba(212, 175, 55, 0.09);
  animation: roomModalIn 0.38s ease;
}

.room-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.95;
}

.room-modal__dialog::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.room-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  color: #fff;
  border-radius: 16px;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, border-color 0.28s ease,
    background 0.28s ease, box-shadow 0.28s ease;
}

.room-modal__close:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(212, 175, 55, 0.42);
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.room-modal__header {
  position: relative;
  padding: 42px 34px 20px;
  text-align: center;
}

.room-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.08);
}

.room-modal__title {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.room-modal__subtitle {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.98rem;
}

.room-modal__form {
  padding: 12px 34px 34px;
}

.room-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.room-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.room-field label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.room-field input,
.room-field textarea,
.room-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  color: #fff;
  border-radius: 18px;
  padding: 15px 16px;
  min-height: 56px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.28s ease, box-shadow 0.28s ease,
    background 0.28s ease, transform 0.28s ease;
}

.room-field textarea {
  min-height: 120px;
  resize: vertical;
}

.room-field select {
  appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 16px center;
  background-size: auto, 18px;
}

.room-field select option {
  background: #111;
  color: #fff;
}

.room-field input::placeholder,
.room-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.room-field input:focus,
.room-field textarea:focus,
.room-field select:focus {
  border-color: rgba(212, 175, 55, 0.44);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.room-field__hint {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.room-field__error {
  display: block;
  min-height: 20px;
  font-size: 0.8rem;
  color: #ff8f8f;
  line-height: 1.5;
}

.room-modal__summary {
  margin: 10px 0 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.05)
  );
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.room-modal__submit {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28),
    0 10px 22px rgba(212, 175, 55, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.room-modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.32),
    0 14px 26px rgba(212, 175, 55, 0.18);
  filter: brightness(1.04);
}

/* 🔥 evita scroll detrás */
body.modal-open {
  overflow: hidden;
}

/* CLICKABLE IMAGE */
.room-media-click {
  cursor: pointer;
}

/* LIGHTBOX */
.room-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.3s ease;
}

.room-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.room-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.room-lightbox__dialog {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  max-height: 90vh;
}

.room-lightbox__img {
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.room-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* evita scroll */
body.lightbox-open {
  overflow: hidden;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes roomModalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .rooms__grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .room-card__media {
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
    margin-top: 20px;
    height: 260px;
    background-size: cover;
    background-position: center;
  }

  .room-card__media--a,
  .room-card__media--b,
  .room-card__media--c {
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .room-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 20px;
  }

  .room-card__media {
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
    height: 240px;
    background-size: cover;
    background-position: center;
  }

  .room-card__content {
    padding: 24px 20px 26px;
  }

  .room-modal {
    padding: 12px;
    align-items: center;
    justify-content: center;
  }

  .room-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
  }

  .room-modal__dialog::after {
    border-radius: 23px;
  }

  .room-modal__header {
    padding: 34px 20px 18px;
  }

  .room-modal__form {
    padding: 8px 20px 22px;
  }

  .room-modal__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .room-modal__title {
    font-size: 1.8rem;
  }

  .room-modal__subtitle {
    font-size: 0.93rem;
  }

  .room-field input,
  .room-field textarea,
  .room-field select {
    min-height: 54px;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .room-modal__summary {
    padding: 15px 16px;
    border-radius: 16px;
  }

  .room-modal__submit {
    min-height: 56px;
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .room-modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.5rem;
  }
}
/* =========================================================
   GALLERY - EDITORIAL / COLLAGE
========================================================= */
/* =========================================================
   GALLERY - COMPACTA / SIN HUECOS
========================================================= */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery-showcase {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 90px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  transition: transform 0.4s ease, border-color 0.35s ease,
    box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28), var(--shadow-gold);
  filter: brightness(1.04);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.14) 35%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.08),
      transparent 45%,
      rgba(255, 255, 255, 0.02)
    );
  transition: background 0.35s ease;
}

.gallery-card:hover .gallery-card__overlay {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.1) 35%,
      rgba(0, 0, 0, 0.34) 100%
    ),
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.14),
      transparent 45%,
      rgba(255, 255, 255, 0.03)
    );
}

.gallery-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-card__content--bottom {
  padding: 24px;
}

.gallery-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(212, 175, 55, 0.24);
  backdrop-filter: blur(8px);
}

.gallery-card__content h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  max-width: 340px;
}

/* =========================
   COMPOSICIÓN DESKTOP - CERRADA
========================= */

/* fila izquierda grande */
.gallery-card--1,
.gallery-card--hero {
  grid-column: 1 / 4;
  grid-row: 1 / 6;
}

/* fila superior compacta */
.gallery-card--2 {
  grid-column: 4 / 6;
  grid-row: 1 / 3;
}

.gallery-card--3 {
  grid-column: 6 / 9;
  grid-row: 1 / 3;
}

.gallery-card--4 {
  grid-column: 9 / 11;
  grid-row: 1 / 3;
}

.gallery-card--5 {
  grid-column: 11 / 13;
  grid-row: 1 / 3;
}

/* bloque central principal */
.gallery-card--6 {
  grid-column: 4 / 10;
  grid-row: 3 / 6;
}

/* costado derecho alto */
.gallery-card--7 {
  grid-column: 10 / 13;
  grid-row: 3 / 6;
}

/* fila inferior completa */
.gallery-card--8 {
  grid-column: 1 / 3;
  grid-row: 6 / 8;
}

.gallery-card--9 {
  grid-column: 3 / 7;
  grid-row: 6 / 8;
}

.gallery-card--10 {
  grid-column: 7 / 13;
  grid-row: 6 / 8;
}

/* =========================
   IMÁGENES
========================= */
.gallery-card--1 {
  background-image: url("/static/img/logo-gallery.png");
}

.gallery-card--2 {
  background-image: url("/static/img/bachata.png");
}

.gallery-card--3 {
  background-image: url("/static/img/sala1.png");
}

.gallery-card--4 {
  background-image: url("/static/img/contempo.png");
}

.gallery-card--5 {
  background-image: url("/static/img/sala2.png");
}

.gallery-card--6 {
  background-image: url("/static/img/heels.png");
}

.gallery-card--7 {
  background-image: url("/static/img/sala3.png");
}

.gallery-card--8 {
  background-image: url("/static/img/clases-baile.png");
}

.gallery-card--9 {
  background-image: url("/static/img/urbano.png");
}

.gallery-card--10 {
  background-image: url("/static/img/stuido.png");
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .gallery-showcase {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }

  .gallery-card--1,
  .gallery-card--hero {
    grid-column: 1 / 4;
    grid-row: 1 / 5;
  }

  .gallery-card--2 {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
  }

  .gallery-card--3 {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }

  .gallery-card--4 {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
  }

  .gallery-card--5 {
    grid-column: 3 / 5;
    grid-row: 5 / 7;
  }

  .gallery-card--6 {
    grid-column: 5 / 7;
    grid-row: 5 / 7;
  }

  .gallery-card--7 {
    grid-column: 1 / 4;
    grid-row: 7 / 10;
  }

  .gallery-card--8 {
    grid-column: 4 / 7;
    grid-row: 7 / 9;
  }

  .gallery-card--9 {
    grid-column: 4 / 7;
    grid-row: 9 / 12;
  }

  .gallery-card--10 {
    grid-column: 1 / 4;
    grid-row: 10 / 12;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .gallery-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-card,
  .gallery-card--1,
  .gallery-card--hero,
  .gallery-card--2,
  .gallery-card--3,
  .gallery-card--4,
  .gallery-card--5,
  .gallery-card--6,
  .gallery-card--7,
  .gallery-card--8,
  .gallery-card--9,
  .gallery-card--10 {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .gallery-card--1,
  .gallery-card--hero,
  .gallery-card--6,
  .gallery-card--7,
  .gallery-card--9 {
    min-height: 320px;
  }

  .gallery-card {
    border-radius: 20px;
  }

  .gallery-card__content {
    padding: 20px;
  }

  .gallery-card__content h3 {
    font-size: clamp(1.15rem, 6vw, 1.7rem);
    max-width: 100%;
  }

  .gallery-card__tag {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}
/* =========================================================
   LOCATION - PREMIUM
========================================================= */
.location {
  position: relative;
  overflow: hidden;
}

.location-layout {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.location-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.location-card__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.14) 0%,
    rgba(212, 175, 55, 0.04) 38%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.location-card__head,
.location-highlights,
.location-info-list,
.location-actions {
  position: relative;
  z-index: 1;
}

.location-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.08);
}

.location-card__title {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.location-card__text {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 560px;
}

.location-highlights {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.location-pill {
  padding: 16px 16px 15px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
}

.location-pill__label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.location-pill__value {
  display: block;
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.location-info-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.location-info-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.location-info-list__icon {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.1;
  transform: translateY(2px);
}

.location-info-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.98rem;
}

.location-info-list p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.location-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-map-wrap {
  position: relative;
}

.location-map-frame {
  position: relative;
  min-height: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  background: rgba(255, 255, 255, 0.03);
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  filter: grayscale(0.06) contrast(1.02) saturate(0.95);
}

.location-map-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(10px);
}

.location-map-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-map-frame iframe {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .location-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .location-card__title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .location-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  .location-map-frame {
    border-radius: 22px;
  }

  .location-map-frame iframe {
    min-height: 420px;
  }

  .location-map-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
  }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000000;
  color: #ffffff;
  overflow-x: clip;
}

.site-footer__main {
  padding: 42px 0 28px;
  border-top: 1px solid #323232ac;
}

.site-footer__container {
  width: min(1320px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.site-footer__logo-eb {
  font-family: "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.site-footer__logo-text {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.site-footer__title {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c59b4f;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__link:hover {
  color: #e2bb72;
  transform: translateY(-1px);
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__social:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}

.site-footer__bottom {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.site-footer__container--bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__copyright {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__logo-img {
  display: block;
  width: auto;
  height: 82px;
  object-fit: contain;
}
.site-footer__logo-img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-footer__logo:hover .site-footer__logo-img {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

@media (max-width: 768px) {
  .site-footer__logo {
    justify-content: center;
  }

  .site-footer__logo-img {
    height: 68px;
  }
}

@media (max-width: 480px) {
  .site-footer__logo-img {
    height: 58px;
  }
}
/* footer */
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.footer-logo-link img {
  height: 35px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.footer-brand span {
  font-size: 0.85rem;
  line-height: 1;
}

.footer-separator {
  opacity: 0.6;
}

.footer-text {
  font-size: 0.85rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-copy {
    flex-direction: column;
    gap: 8px;
  }

  .footer-separator {
    display: none;
  }

  .footer-logo-link img {
    height: 45px;
  }

  .site-footer__container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .site-footer__main {
    border-top: 2px solid #323232ac;
  }
}

/* =========================================================
   RESPONSIVE - ABOUT
========================================================= */
@media (max-width: 768px) {
  .about {
    padding: 90px 0;
  }

  .about .section-shell {
    margin: 0 auto;
  }

  .about__inner {
    width: 100%;
    padding: 35px 20px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about__content {
    width: 100%;
    margin: 0 auto;
  }

  .about__logo-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }

  .about__logo-bg {
    width: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about .section-title {
    font-size: 2.3rem;
    text-align: center;
  }

  .about .section-text {
    font-size: 0.95rem;
    text-align: center;
    margin-inline: auto;
  }
}
/* =========================================================
   RESPONSIVE - HERO
========================================================= */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 60px) 0 70px;
  }

  .hero__video {
    object-position: center center;
  }
}

/* =========================================================
   RESPONSIVE - GENERAL
========================================================= */
@media (max-width: 1199px) {
  .styles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  :root {
    --header-h: 80px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 88px 0;
  }

  .services__grid,
  .location__grid {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    height: 300px;
  }

  .location__map {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .section-shell,
  .site-header__container,
  .site-footer__container,
  .hero__content {
    margin: 0 auto;
  }

  .section-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 60px) 0 70px;
  }

  .hero__content,
  .section-title,
  .section-text,
  .service-card__content,
  .room-card,
  .location__info,
  .site-footer__top {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: clamp(2.6rem, 13vw, 4.6rem);
    text-align: center;
  }

  .hero__text {
    font-size: 0.98rem;
    text-align: center;
  }

  .section-title {
    font-size: clamp(2rem, 11vw, 3.1rem);
    text-align: center;
  }

  .section-text {
    text-align: center;
    margin-inline: auto;
  }

  .styles__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    min-height: 180px;
  }

  .gallery__grid {
    grid-auto-rows: 220px;
  }

  .site-footer__top {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__nav,
  .site-footer__social {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero__actions,
  .location__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .location__actions .btn {
    width: 100%;
  }

  .service-card__content,
  .room-card,
  .location__info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-link {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
}

/* SERVICIOS  ----------------------------*/
@media (max-width: 991px) {
  .services-split {
    grid-template-columns: 1fr;
  }

  .services-split__panel + .services-split__panel {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
  }

  .services-split__panel {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .services-split__panel {
    min-height: 400px;
  }

  .services-split__content {
    padding: 28px 22px 26px;
  }

  .services-split__content h3 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .services-split__content p {
    max-width: 100%;
  }

  .services-split__content .btn {
    width: 100%;
    align-self: stretch;
  }
}

/* =========================================================
   TITULOS & SUBTITULOS (GLOBAL)
========================================================= */

.section-kicker {
  display: block;
  text-align: center;
  margin-bottom: 14px;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: var(--gold-soft);

  position: relative;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 12px auto 0;

  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

/* TITULO PRINCIPAL */
.section-title {
  text-align: center;
  margin-bottom: 20px;

  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #fff;
}

/* DETALLE VISUAL EN TITULO */
.section-title span {
  display: inline-block;

  background: linear-gradient(135deg, #c79828 0%, #d4af37 40%, #ffe49a 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXTO */
.section-text {
  text-align: center;
  margin-inline: auto;
  max-width: 760px;

  font-size: 1.05rem;
  line-height: 1.9;

  color: var(--text-soft);
}

/* SUBTEXTO CON DETALLE */
.section-text strong {
  color: var(--gold-soft);
}
