/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: clip;
  max-width: 100%;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
iframe,
video {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(246, 246, 246, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.site-header__container {
  width: min(1320px, 92%);
  margin: 0 auto;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0;
}

/* =========================
   LOGO
========================= */
.site-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.site-logo__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.site-logo__eb {
  font-family: "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #111111;
}

.site-logo__text {
  margin-top: -2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #4d4d4d;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo__img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .site-logo__img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .site-logo__img {
    height: 52px;
  }
}

/* =========================
   NAV DESKTOP
========================= */
.site-nav--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

.site-nav__link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #222222;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-nav__link:hover {
  color: #000000;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1.5px;
  background: #111111;
  transition: width 0.3s ease;
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
  width: 100%;
}

/* =========================
   CTA DESKTOP
========================= */
.site-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header__cta:hover {
  background: transparent;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* =========================
   MENU TOGGLE
========================= */
.menu-toggle {
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1200;
}

.menu-toggle__line {
  width: 28px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transition: transform 0.35s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  background: rgba(246, 246, 246, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1100;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.mobile-menu__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.mobile-menu__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111111;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu__link:hover {
  opacity: 0.65;
  transform: translateY(-1px);
}

.mobile-menu__link.active::before {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mobile-menu__cta:hover {
  background: transparent;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  overflow: hidden;
  background: #000;
}

/* VIDEO DE FONDO */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
  pointer-events: none;
}

/* FALLBACK SI QUIERES DEJAR IMAGEN TAMBIÉN */
.hero__bg-zoom {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero-eb.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
}

/* CAPA OSCURA */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 28%,
    rgba(0, 0, 0, 0.18) 54%,
    rgba(0, 0, 0, 0) 74%
  );
}

/* CONTENIDO */
.hero__container {
  position: relative;
  z-index: 3;
  width: min(1320px, 92%);
  margin: 0 auto;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0;
}

.hero__content {
  max-width: 620px;
  color: #ffffff;
}

/* TITULO */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(36px);
}

.page-loaded .hero__title-line--1 {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.12s;
}

.page-loaded .hero__title-line--2 {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.26s;
}

.page-loaded .hero__title-line--3 {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero__title span:first-child {
  color: rgba(255, 255, 255, 0.58);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.hero__title span:not(:first-child) {
  color: #ffffff;
}

/* SUBTITLE */
.hero__subtitle {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero__subtitle--animated {
  opacity: 0;
  transform: translateY(24px);
}

.page-loaded .hero__subtitle--animated {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.55s;
}

/* BOTONES */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__actions--animated {
  opacity: 0;
  transform: translateY(24px);
}

.page-loaded .hero__actions--animated {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.72s;
}

.hero__btn {
  min-width: 170px;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.hero__btn--primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.hero__btn--primary:hover {
  background: #ffffff;
  color: #111111;
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__btn--secondary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

/* LOGO ESQUINA */
.hero__corner-brand {
  position: absolute;
  right: 0;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  opacity: 0.62;
  user-select: none;
  pointer-events: none;
}

.hero__corner-brand--animated {
  opacity: 0;
  transform: translateY(20px);
}

.page-loaded .hero__corner-brand--animated {
  animation: revealCorner 1s ease forwards;
  animation-delay: 0.95s;
}

.hero__corner-eb {
  font-family: "Times New Roman", serif;
  font-size: 5.3rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #3d3d3d;
}

.hero__corner-text {
  margin-top: -4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: #555555;
}

/* ANIMACIONES */
@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealCorner {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 0.62;
    transform: translateY(0);
  }
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(36px);
}

.page-loaded .hero__title-line--1 {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.12s;
}

.page-loaded .hero__title-line--2 {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.26s;
}

.page-loaded .hero__title-line--3 {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero__title span:first-child {
  color: rgba(255, 255, 255, 0.58);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.hero__title span:not(:first-child) {
  color: #ffffff;
}

.hero__subtitle {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero__subtitle--animated {
  opacity: 0;
  transform: translateY(24px);
}

.page-loaded .hero__subtitle--animated {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.55s;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__actions--animated {
  opacity: 0;
  transform: translateY(24px);
}

.page-loaded .hero__actions--animated {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.72s;
}

.hero__btn {
  min-width: 170px;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.hero__btn--primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.hero__btn--primary:hover {
  background: #ffffff;
  color: #111111;
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__btn--secondary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

/* =========================
   LOGO ESQUINA HERO
========================= */
.hero__corner-brand {
  position: absolute;
  right: 0;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  opacity: 0.62;
  user-select: none;
  pointer-events: none;
}

.hero__corner-brand--animated {
  opacity: 0;
  transform: translateY(20px);
}

.page-loaded .hero__corner-brand--animated {
  animation: revealCorner 1s ease forwards;
  animation-delay: 0.95s;
}

.hero__corner-eb {
  font-family: "Times New Roman", serif;
  font-size: 5.3rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #3d3d3d;
}

.hero__corner-text {
  margin-top: -4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: #555555;
}

/* =========================
   SECCIONES
========================= */
section[id] {
  scroll-margin-top: 110px;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealCorner {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 0.62;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* =========================
   SOBRE EL ESTUDIO
========================= */
.about-studio {
  background: #f3f1ee;
  padding: 72px 0 68px;
  position: relative;
  overflow: hidden;
}

.about-studio__container {
  width: min(1320px, 92%);
  margin: 0 auto;
  padding: 0;
}

.about-studio__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 56px;
  align-items: center;
}

.about-studio__content {
  max-width: 420px;
}

.about-studio__eyebrow {
  display: block;
  font-family: "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1b1b1b;
}

.about-studio__title {
  margin-top: 2px;
  font-family: "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #171717;
}

.about-studio__text {
  margin-top: 18px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #3a3a3a;
  max-width: 360px;
}

.about-studio__signature {
  margin-top: 20px;
  line-height: 1;
}

.about-studio__signature span {
  display: inline-block;
  font-family: "Allura", cursive;
  font-size: 2.15rem;
  font-weight: 400;
  color: #6a6a6a;
  letter-spacing: 0;
  transform: rotate(-1deg);
  opacity: 0.95;
}

.about-studio__media {
  width: 100%;
}

.about-studio__image-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.about-studio__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.6s ease;
}

.about-studio__image-wrap:hover .about-studio__image {
  transform: scale(1.03);
}

.about-studio__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.about-studio__feature {
  text-align: center;
  color: #1c1c1c;
}

.about-studio__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  color: #111111;
}

.about-studio__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-studio__feature-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

.about-studio__feature-text {
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #555555;
}

/* =========================
   CLASES + ARRIENDO
========================= */
.studio-split {
  padding: 0;
  background: #ffffff;
}

.studio-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.studio-split__card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 72px 64px;
  isolation: isolate;
}

.studio-split__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transform: scale(1);
  transition: transform 0.8s ease;
}

.studio-split__card:hover::before {
  transform: scale(1.05);
}

.studio-split__card--classes::before {
  background-image: url("../img/clases-baile.png");
}

.studio-split__card--rental::before {
  background-image: url("../img/sala1.png");
}

.studio-split__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.52) 35%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.studio-split__content {
  max-width: 360px;
  color: #ffffff;
}

.studio-split__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.studio-split__title {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.studio-split__text {
  margin-top: 18px;
  max-width: 290px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.studio-split__btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #111111;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.studio-split__btn:hover {
  transform: translateY(-3px);
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* =========================
   ESTILOS
========================= */
.styles {
  padding: 100px 0;
  background: #f5f5f3;
  overflow: hidden;
}

.styles__container {
  width: min(1320px, 92%);
  margin: 0 auto;
}

.styles__header {
  text-align: center;
  margin-bottom: 56px;
}

.styles__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #222;
}

.styles__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

/* =========================
   GRID
========================= */
.styles__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

/* =========================
   CARD
========================= */
.style-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background: #111;
  cursor: pointer;
  isolation: isolate;
}

.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease,
    opacity 0.85s ease;
}

.style-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.18) 22%,
    rgba(0, 0, 0, 0.42) 58%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(140, 0, 0, 0.1) 0%,
    rgba(160, 0, 0, 0.18) 25%,
    rgba(125, 0, 0, 0.4) 60%,
    rgba(70, 0, 0, 0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.65s ease;
}

.style-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.04) 22%,
    transparent 52%
  );
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* =========================
   CONTENIDO
========================= */
.style-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.style-card__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  background: #9f0d0d;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(120, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.style-card__content h3 {
  margin: 0;
  max-width: 100%;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 1.35vw, 1.7rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.style-card__content p {
  margin: 10px 0 0;
  max-width: 180px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

/* =========================
   HOVER
========================= */
.style-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.07);
}

.style-card:hover::after {
  opacity: 1;
}

.style-card:hover::before {
  opacity: 0.62;
}

.style-card:hover .style-card__tag {
  opacity: 1;
  transform: translateY(0);
}

.style-card:hover .style-card__content p {
  opacity: 1;
  transform: translateY(0);
}

.style-card:hover {
  box-shadow: 0 20px 45px rgba(70, 0, 0, 0.18);
}

.style-card:first-child::after {
  opacity: 1;
}

.style-card:first-child img {
  filter: grayscale(0%);
}

.style-card:first-child .style-card__tag {
  opacity: 1;
  transform: translateY(0);
}

.style-card:first-child .style-card__content p {
  opacity: 1;
  transform: translateY(0);
}

.styles__grid:hover .style-card:not(:hover):not(:first-child) img {
  transform: scale(1.01);
  filter: grayscale(100%) brightness(0.82);
}

.styles__grid:hover .style-card:not(:hover):not(:first-child)::before {
  opacity: 0.2;
}

/* =========================
   GALERIA
========================= */
.gallery {
  background: #000;
  padding: 110px 0;
  overflow-x: clip;
}

.gallery__container {
  width: min(1320px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.gallery__info {
  color: #fff;
}

.gallery__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.gallery__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 500;
}

.gallery__instagram {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.35s ease, transform 0.35s ease;
}

.gallery__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease,
    transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery__icon svg {
  width: 16px;
  height: 16px;
}

.gallery__instagram:hover {
  color: #fff;
  transform: translateY(-2px);
}

.gallery__instagram:hover .gallery__icon {
  border-color: #fff;
  background: #fff;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  gap: 14px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery__item--big,
.gallery__item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.gallery__item:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gallery__item:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.gallery__item:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.gallery__item:nth-child(6) {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s ease;
}

.gallery__item:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.gallery__item:hover::after {
  opacity: 0;
}

/* =========================
   CTA + MAPA
========================= */
.cta-map {
  background: #ffffff;
  overflow-x: clip;
}

.cta-map__top {
  background: #f4f4f2;

  padding: 58px 0 52px;
}

.cta-map__container {
  width: min(1320px, 92%);
  margin: 0 auto;
  text-align: center;
}

.cta-map__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #111111;
}

.cta-map__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-map__btn {
  min-width: 190px;
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #111111;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease, border-color 0.3s ease;
}

.cta-map__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.cta-map__btn--primary {
  background: #000000;
  color: #ffffff;
}

.cta-map__btn--primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.cta-map__btn--secondary {
  background: transparent;
  color: #111111;
}

.cta-map__btn--secondary:hover {
  background: #111111;
  color: #ffffff;
}

.cta-map__map-wrap {
  width: 100%;
  background: #000;
  line-height: 0;
}

.cta-map__map {
  display: block;
  width: 100%;
  height: 460px;
  filter: grayscale(100%) contrast(1.05);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000000;
  color: #ffffff;
  overflow-x: clip;
}

.site-footer__main {
  padding: 42px 0 28px;
  border-top: 10px solid #111111;
}

.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;
  }
}
/* =========================
   EB SCHEDULE COMPACTO FINAL
========================= */
.eb-schedule.eb-schedule--compact {
  padding: 72px 0 82px;
  background: #f5f5f3;
  overflow: hidden;
}

.eb-schedule__container {
  width: min(1320px, 92%);
  margin: 0 auto;
}

.eb-schedule__header {
  text-align: center;
  margin-bottom: 30px;
}

.eb-schedule__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.eb-schedule__title {
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.eb-schedule__subtitle {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5c5c5c;
}

/* =========================
   PANEL ÚNICO
========================= */
.eb-schedule-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  overflow: hidden;
}

.eb-schedule-panel__item {
  padding: 26px 24px;
  text-align: center;
}

.eb-schedule-panel__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}

.eb-schedule-panel__value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.eb-schedule-panel__divider {
  width: 1px;
  height: 54px;
  background: rgba(0, 0, 0, 0.08);
}

/* =========================
   SALAS COMPACTAS
========================= */
.eb-rooms.eb-rooms--compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

/* CARD WRAPPER */
.eb-room-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CARD IMAGEN */
.eb-room {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  appearance: none;
}

.eb-room img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.eb-room:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* OVERLAY */
.eb-room__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.16) 40%,
    rgba(0, 0, 0, 0.76) 100%
  );
}

/* INFO */
.eb-room__info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
}

.eb-room__info span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.eb-room__info h4 {
  margin: 6px 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eb-room__info p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* BOTON ARRIENDO */
.eb-room__rent-btn {
  height: 46px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eb-room__rent-btn:hover {
  background: transparent;
  color: #111;
}

/* =========================
   CTA
========================= */
.eb-schedule__cta {
  margin-top: 26px;
  text-align: center;
}

.eb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: #111;
  border: 1px solid #111;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eb-btn-primary:hover {
  background: transparent;
  color: #111;
}

/* =========================
   MODAL IMAGEN
========================= */
.eb-room-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.eb-room-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.eb-room-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.eb-room-modal__dialog {
  position: relative;
  width: min(900px, 92vw);
  margin: 5vh auto;
  background: #111;
  transform: scale(0.95);
  transition: 0.3s ease;
}

.eb-room-modal.is-open .eb-room-modal__dialog {
  transform: scale(1);
}

.eb-room-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.eb-room-modal img {
  width: 100%;
}

.eb-room-modal__caption {
  padding: 16px;
  background: #fff;
  text-align: center;
}

/* =========================
   MODAL FORM (ARRIENDO + CLASES)
========================= */
.eb-rent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.eb-rent-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.eb-rent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.eb-rent-modal__dialog {
  position: relative;
  width: min(420px, 92vw);
  margin: 8vh auto;
  background: #fff;
  padding: 26px;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.eb-rent-modal.is-open .eb-rent-modal__dialog {
  transform: translateY(0);
}

/* CLOSE */
.eb-rent-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.8rem;
  border: none;
  background: none;
  cursor: pointer;
}

/* FORM */
.eb-rent-modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.eb-rent-modal input,
.eb-rent-modal select {
  height: 46px;
  padding: 0 12px;
  border: 1px solid #ddd;
  outline: none;
}

.eb-rent-modal input:focus,
.eb-rent-modal select:focus {
  border-color: #111;
}

.eb-rent-modal button[type="submit"] {
  height: 48px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: 0.3s ease;
}

.eb-rent-modal button[type="submit"]:hover {
  background: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .eb-rooms.eb-rooms--compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .eb-rooms.eb-rooms--compact {
    grid-template-columns: 1fr;
  }

  .eb-room img {
    height: 220px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .site-header__container,
  .hero__container,
  .about-studio__container,
  .styles__container,
  .gallery__container,
  .cta-map__container,
  .site-footer__container,
  .eb-schedule__container {
    width: min(1320px, 92%);
  }

  .site-nav--desktop {
    gap: 20px;
  }

  .site-nav__link {
    font-size: 0.68rem;
  }

  .hero__corner-brand {
    right: 0;
  }

  .about-studio__grid {
    gap: 42px;
  }

  .studio-split__card {
    padding: 60px 42px;
  }

  .styles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .style-card {
    min-height: 360px;
  }

  .style-card__content h3 {
    font-size: 1.6rem;
    line-height: 1.08;
  }
}

@media (max-width: 1100px) {
  .site-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }
}

@media (max-width: 992px) {
  .site-header__container,
  .hero__container,
  .about-studio__container,
  .styles__container,
  .gallery__container,
  .cta-map__container,
  .site-footer__container,
  .eb-schedule__container {
    width: min(92%, 100%);
  }

  .site-header__container {
    min-height: 92px;
    padding: 0;
  }

  .site-nav--desktop,
  .site-header__cta--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-logo__eb {
    font-size: 3.2rem;
  }

  .site-logo__text {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .hero {
    min-height: calc(100vh - 92px);
  }

  .hero__bg-zoom {
    background-position: 68% center;
  }

  .hero__container {
    min-height: calc(100vh - 92px);
    padding: 70px 0;
    justify-content: center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.57) 32%,
      rgba(0, 0, 0, 0.36) 60%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(2.8rem, 10vw, 4.6rem);
    line-height: 0.98;
  }

  .hero__subtitle {
    margin-top: 22px;
    font-size: 0.95rem;
    letter-spacing: 0.07em;
  }

  .hero__actions {
    margin-top: 28px;
    gap: 12px;
  }

  .hero__btn {
    min-width: 160px;
  }

  .hero__corner-brand {
    right: 0;
    bottom: 24px;
  }

  .hero__corner-eb {
    font-size: 4rem;
  }

  .hero__corner-text {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .mobile-menu__link {
    font-size: 0.96rem;
  }

  .about-studio {
    padding: 64px 0 60px;
  }

  .about-studio__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-studio__content {
    max-width: 100%;
  }

  .about-studio__text {
    max-width: 100%;
  }

  .about-studio__image {
    height: 240px;
  }

  .studio-split__grid {
    grid-template-columns: 1fr;
  }

  .studio-split__card,
  .studio-split__grid {
    min-height: auto;
  }

  .studio-split__card {
    min-height: 420px;
    padding: 56px 28px;
  }

  .studio-split__content {
    max-width: 420px;
  }

  .studio-split__text {
    max-width: 340px;
  }

  .gallery__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item,
  .gallery__item--big,
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 160px;
  }

  .cta-map__top {
    padding: 50px 0 46px;
  }

  .cta-map__actions {
    gap: 16px;
  }

  .cta-map__btn {
    min-width: 180px;
  }

  .cta-map__map {
    height: 400px;
  }

  .eb-schedule-panel {
    grid-template-columns: 1fr;
  }

  .eb-schedule-panel__divider {
    width: 100%;
    height: 1px;
  }

  .eb-schedule-panel__item {
    padding: 20px 18px;
  }

  .eb-rooms.eb-rooms--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header__container,
  .hero__container,
  .about-studio__container,
  .styles__container,
  .gallery__container,
  .cta-map__container,
  .site-footer__container,
  .eb-schedule__container {
    width: min(92%, 100%);
  }

  .site-header__container {
    min-height: 84px;
  }

  .site-logo__eb {
    font-size: 2.9rem;
  }

  .site-logo__text {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .hero {
    min-height: calc(100vh - 84px);
  }

  .hero__bg-zoom {
    background-position: 70% center;
  }

  .hero__container {
    min-height: calc(100vh - 84px);
    align-items: center;
    padding: 56px 0;
  }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero__subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 320px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
    min-width: 0;
  }

  .hero__corner-brand {
    right: 0;
    bottom: 18px;
  }

  .hero__corner-eb {
    font-size: 3rem;
  }

  .hero__corner-text {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .mobile-menu__link {
    font-size: 0.92rem;
  }

  .mobile-menu__cta {
    width: 100%;
    max-width: 320px;
  }

  .about-studio {
    padding: 56px 0 54px;
  }

  .about-studio__eyebrow {
    font-size: 1.2rem;
  }

  .about-studio__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .about-studio__text {
    font-size: 0.9rem;
  }

  .about-studio__signature span {
    font-size: 1.9rem;
  }

  .about-studio__image {
    height: 220px;
  }

  .about-studio__features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .about-studio__feature {
    padding-top: 4px;
  }

  .studio-split__card {
    min-height: 380px;
    padding: 48px 22px;
  }

  .studio-split__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.5) 42%,
      rgba(0, 0, 0, 0.24) 100%
    );
  }

  .studio-split__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .studio-split__text {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .studio-split__btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 0.68rem;
  }

  .styles {
    padding: 80px 0;
  }

  .styles__header {
    margin-bottom: 38px;
  }

  .styles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .style-card {
    min-height: 300px;
  }

  .style-card__content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .style-card__content h3 {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .style-card__content p {
    max-width: 100%;
    font-size: 0.78rem;
  }

  .gallery {
    padding: 80px 0;
  }

  .cta-map__top {
    border-top-width: 12px;
    border-bottom-width: 12px;
    padding: 44px 0 40px;
  }

  .cta-map__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .cta-map__actions {
    margin-top: 22px;
    flex-direction: column;
    gap: 12px;
  }

  .cta-map__btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    min-height: 50px;
    font-size: 0.74rem;
  }

  .cta-map__map {
    height: 340px;
  }

  .site-footer__main {
    padding: 34px 0 24px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .site-footer__brand {
    justify-content: center;
  }

  .site-footer__socials {
    justify-content: center;
  }

  .site-footer__logo {
    justify-content: center;
  }

  .site-footer__logo-eb {
    font-size: 3.4rem;
  }

  .site-footer__logo-text {
    font-size: 0.82rem;
  }

  .site-footer__copyright {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .eb-schedule.eb-schedule--compact {
    padding: 64px 0 74px;
  }

  .eb-schedule__header {
    margin-bottom: 24px;
  }

  .eb-schedule__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .eb-schedule__subtitle {
    font-size: 0.88rem;
  }

  .eb-room.eb-room--compact img {
    height: 220px;
  }

  .eb-room__info {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .eb-room__info h4 {
    font-size: 1.05rem;
  }

  .eb-room__info p {
    font-size: 0.8rem;
  }

  .eb-room-modal__dialog {
    width: min(94vw, 1000px);
    margin-top: 5vh;
  }

  .eb-room-modal__image-wrap img {
    max-height: 70vh;
  }
}

@media (max-width: 600px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item,
  .gallery__item--big,
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    height: 190px;
  }
}

@media (max-width: 520px) {
  .styles {
    padding: 68px 0;
  }

  .styles__grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    min-height: 340px;
  }

  .style-card__tag {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.55rem;
  }

  .style-card__content h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 480px) {
  .site-header__container,
  .hero__container,
  .about-studio__container,
  .styles__container,
  .gallery__container,
  .cta-map__container,
  .site-footer__container,
  .eb-schedule__container {
    width: min(92%, 100%);
  }

  .site-header__container {
    min-height: 80px;
    padding: 0;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .menu-toggle__line {
    width: 24px;
  }

  .menu-toggle.is-active .menu-toggle__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-active .menu-toggle__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .site-logo__eb {
    font-size: 2.55rem;
  }

  .site-logo__text {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .hero {
    min-height: calc(100vh - 80px);
  }

  .hero__bg-zoom {
    background-position: 72% center;
  }

  .hero__container {
    min-height: calc(100vh - 80px);
    padding: 48px 0;
  }

  .hero__title {
    font-size: clamp(2.2rem, 13vw, 3.3rem);
  }

  .hero__subtitle {
    margin-top: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__btn {
    min-height: 46px;
    font-size: 0.7rem;
    padding: 0 18px;
  }

  .hero__corner-brand {
    opacity: 0.5;
  }

  .hero__corner-eb {
    font-size: 2.5rem;
  }

  .hero__corner-text {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .mobile-menu {
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding: 104px 20px 40px;
  }

  .mobile-menu__inner {
    gap: 34px;
  }

  .mobile-menu__nav {
    gap: 18px;
  }

  .mobile-menu__link {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .mobile-menu__link::before {
    width: 6px;
    height: 6px;
  }

  .mobile-menu__cta {
    min-height: 48px;
    font-size: 0.72rem;
    padding: 0 20px;
    text-align: center;
  }

  .about-studio__signature span {
    font-size: 1.7rem;
  }

  .about-studio__image {
    height: 200px;
  }

  .about-studio__feature-title {
    font-size: 0.72rem;
  }

  .about-studio__feature-text {
    font-size: 0.76rem;
  }

  .studio-split__card {
    min-height: 340px;
    padding: 38px 16px;
  }

  .studio-split__eyebrow {
    margin-bottom: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .studio-split__title {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  .studio-split__text {
    margin-top: 14px;
    font-size: 0.82rem;
  }

  .studio-split__btn {
    margin-top: 22px;
    width: max-content;
    min-height: 42px;
    padding: 0 18px;
  }

  .cta-map__container {
    width: min(92%, 100%);
  }

  .cta-map__top {
    padding: 38px 0 34px;
  }

  .cta-map__title {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .cta-map__map {
    height: 300px;
  }

  .site-footer__main {
    padding: 30px 0 20px;
  }

  .site-footer__logo-eb {
    font-size: 3rem;
  }

  .site-footer__logo-text {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .site-footer__title {
    font-size: 0.76rem;
  }

  .site-footer__text {
    font-size: 0.86rem;
  }

  .site-footer__social {
    width: 40px;
    height: 40px;
  }

  .site-footer__social svg {
    width: 17px;
    height: 17px;
  }

  .eb-schedule__title {
    font-size: 1.7rem;
  }

  .eb-schedule-panel__label {
    font-size: 0.64rem;
  }

  .eb-schedule-panel__value {
    font-size: 0.92rem;
  }

  .eb-room.eb-room--compact img {
    height: 200px;
  }

  .eb-btn-primary {
    width: 100%;
  }

  .eb-room-modal__close {
    top: 10px;
    right: 10px;
  }
}

/* =========================
   HERO FIX RESPONSIVE (VIDEO SIEMPRE VISIBLE)
========================= */

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Tablet */
@media (max-width: 992px) {
  .hero {
    min-height: calc(100vh - 92px);
  }

  .hero__container {
    min-height: calc(100vh - 92px);
    padding: 70px 0;
    justify-content: center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.57) 32%,
      rgba(0, 0, 0, 0.36) 60%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(2.8rem, 10vw, 4.6rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 84px);
    background: #000; /* fallback elegante */
  }

  /* 🔥 IMPORTANTE: el video SI se ve */
  .hero__video {
    display: block;
  }

  /* eliminamos el bg duplicado */
  .hero__bg-zoom {
    display: none;
  }

  .hero__container {
    min-height: calc(100vh - 84px);
    align-items: center;
    padding: 56px 0;
  }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero__subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 320px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
  }
}

/* Mobile pequeño */
@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 80px);
  }

  .hero__container {
    min-height: calc(100vh - 80px);
    padding: 48px 0;
  }

  .hero__title {
    font-size: clamp(2.2rem, 13vw, 3.3rem);
  }
}

/* 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; /* controla el tamaño real */
  width: auto; /* mantiene proporción */
  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;
  }
}
