:root {
  --cream: #fff8ec;
  --cream-soft: #ead8b7;
  --gold: #e1bc80;
  --green-deep: #10251a;
  --green-card: rgba(14, 34, 23, 0.90);
  --white: #ffffff;
  --border-card: rgba(255, 255, 255, 0.34);
  --whatsapp-bg: #ead9b8;
  --whatsapp-text: #193428;
}


/* ==========================================================
   RESET
   ========================================================== */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.hosts-open,
body.experience-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}


/* ==========================================================
   ESCAPARATE ÚNICO
   ========================================================== */

main {
  width: 100vw;
  height: 100dvh;
}

.main-nav,
.hero-logo,
.scroll-down,
.essence,
.split-section,
.meditation,
.gatherings,
.mario,
.quote-section,
.contact,
.site-footer {
  display: none !important;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  width: 100vw;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--green-deep);
}


/* ==========================================================
   FOTOGRAFÍA PRINCIPAL — ESCRITORIO
   ========================================================== */

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: casaRespira 24s ease-in-out infinite alternate;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(8, 23, 15, 0.72) 0%,
      rgba(8, 23, 15, 0.53) 27%,
      rgba(8, 23, 15, 0.23) 48%,
      rgba(8, 23, 15, 0.05) 74%,
      rgba(8, 23, 15, 0) 100%
    ),
    linear-gradient(
      0deg,
      rgba(6, 18, 11, 0.48) 0%,
      rgba(6, 18, 11, 0.10) 38%,
      transparent 62%
    );
}

@keyframes casaRespira {
  from {
    transform: scale(1.008);
  }

  to {
    transform: scale(1.035);
  }
}


/* ==========================================================
   CABECERA
   ========================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 50;

  height: 11.7vw;
  padding: 1.43vw 2.73vw;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  background: transparent;
  pointer-events: none;
}


/* ==========================================================
   LOGOTIPO
   ========================================================== */

.brand {
  position: relative;
  display: block;

  width: 16.93vw;
  height: 9.77vw;

  overflow: visible;
  isolation: isolate;

  pointer-events: auto;
}

.brand::before {
  content: "";
  position: absolute;

  left: -2.08vw;
  top: -1.56vw;

  width: 21.1vw;
  height: 12.9vw;

  background:
    radial-gradient(
      ellipse at center,
      rgba(8, 18, 12, 0.72) 0%,
      rgba(8, 18, 12, 0.48) 48%,
      rgba(8, 18, 12, 0.18) 72%,
      transparent 100%
    );

  filter: blur(0.65vw);
  border-radius: 45%;

  z-index: -1;
  pointer-events: none;
}

.brand-logo {
  position: relative;
  z-index: 1;

  width: 16.93vw !important;
  height: 9.77vw !important;
  max-width: none !important;

  object-fit: contain;
  object-position: left top;

  transform: scale(1.55);
  transform-origin: top left;

  filter:
    drop-shadow(0 0.07vw 0.07vw rgba(0, 0, 0, 1))
    drop-shadow(0 0.20vw 0.33vw rgba(0, 0, 0, 0.90))
    drop-shadow(0 0.52vw 1.17vw rgba(0, 0, 0, 0.55)) !important;
}


/* ==========================================================
   IDIOMA
   ========================================================== */

.language-switcher {
  pointer-events: auto;

  display: flex;
  align-items: center;

  gap: 0.39vw;
  padding: 0.39vw 0.52vw;

  border-radius: 999px;

  background: rgba(14, 34, 23, 0.32);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85vw;
}

.language-switcher button {
  appearance: none;
  -webkit-appearance: none;

  margin: 0;
  padding: 0.26vw 0.46vw;

  border: 0;
  border-radius: 0.39vw;

  background: rgba(255, 255, 255, 0.88);
  color: #193428;

  cursor: pointer;
  opacity: 0.78;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.language-switcher button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switcher button.active {
  opacity: 1;
  font-weight: 700;
  background: #ffffff;
}


/* ==========================================================
   BLOQUE PRINCIPAL
   ========================================================== */

.hero-content {
  position: absolute;
  z-index: 10;

  left: 6.7vw;
  bottom: 4.45vw;

  width: 49vw;

  margin: 0;
  padding: 0;
}

.hero-kicker {
  margin: 0 0 0.85vw;

  font-size: 0.90vw;
  font-weight: 700;
  line-height: 1.15;

  letter-spacing: 0.19em;

  color: #e8c58d;

  text-shadow:
    0 0.13vw 0.78vw rgba(0, 0, 0, 0.42);

  white-space: nowrap;
}

.hero h1 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 6.30vw;
  font-weight: 400;
  line-height: 0.88;

  letter-spacing: -0.047em;

  color: var(--cream);

  text-shadow:
    0 0.33vw 1.95vw rgba(0, 0, 0, 0.29);
}

.hero h1 span {
  display: inline-block;

  margin-left: 4.4vw;

  font-style: italic;
  font-weight: 400;

  color: var(--cream-soft);
}

.hero-subtitle {
  margin: 1.17vw 0 0;

  font-size: 1.08vw;
  line-height: 1.35;

  letter-spacing: 0.06em;

  color: rgba(255, 248, 236, 0.97);

  text-shadow:
    0 0.13vw 0.78vw rgba(0, 0, 0, 0.24);

  white-space: nowrap;
}


/* ==========================================================
   ACCESOS SOCIALES
   ========================================================== */

.hero-actions {
  width: 100%;
  margin-top: 1.30vw;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 0.65vw;
}

.hero-action {
  min-width: 0;
  height: 4.43vw;

  padding: 0.65vw 0.78vw;

  display: grid;

  grid-template-columns:
    1.76vw minmax(0, 1fr);

  grid-template-rows:
    auto auto;

  column-gap: 0.59vw;
  align-items: center;

  overflow: hidden;

  border: 1px solid var(--border-card);
  border-radius: 0.85vw;

  background: var(--green-card);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 0.72vw 1.82vw rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  color: var(--white);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.hero-action:hover {
  transform: translateY(-3px);

  background: rgba(25, 55, 37, 0.96);

  border-color: rgba(255, 255, 255, 0.62);
}

.hero-action svg {
  grid-column: 1;
  grid-row: 1 / 3;

  width: 1.63vw !important;
  height: 1.63vw !important;

  min-width: 0 !important;
  min-height: 0 !important;

  max-width: none !important;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  fill: currentColor;
}

.hero-action span {
  grid-column: 2;
  grid-row: 1;

  margin: 0;

  font-size: 0.52vw;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.12em;

  white-space: nowrap;

  color: rgba(255, 255, 255, 0.72);
}

.hero-action strong {
  grid-column: 2;
  grid-row: 2;

  margin: 0;

  font-size: 0.91vw;
  font-weight: 600;
  line-height: 1.05;

  white-space: nowrap;

  color: var(--white);
}

.hero-action-primary {
  background: var(--whatsapp-bg);
  border-color: transparent;

  color: var(--whatsapp-text);
}

.hero-action-primary span {
  color: rgba(25, 52, 40, 0.65);
}

.hero-action-primary strong {
  color: var(--whatsapp-text);
}

.hero-action-primary:hover {
  background: #f5e6c8;
  border-color: transparent;
}


/* ==========================================================
   FRASE FINAL
   ========================================================== */

.hero::after {
  content: none !important;
  display: none !important;
}

.live-message {
  position: fixed;
  z-index: 20;

  right: 4vw;
  bottom: 0.95vw;

  max-width: 48vw;

  margin: 0;
  padding: 0.58vw 0.98vw;

  border-radius: 999px;

  background: rgba(10, 28, 18, 0.58);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 0.91vw;
  font-style: italic;
  line-height: 1.2;

  white-space: nowrap;

  text-align: right;

  color: rgba(255, 255, 255, 0.96);

  text-shadow:
    0 0.13vw 0.65vw rgba(0, 0, 0, 0.32);
}


/* ==========================================================
   TRES VENTANAS — ESCRITORIO

   IZQUIERDA  = YOGA
   CENTRO     = ANFITRIONES
   DERECHA    = HORARIOS
   ========================================================== */

.experiences-dock {
  position: static;
  width: auto;
  height: auto;

  display: block;

  pointer-events: none;
}

.experience-trigger {
  appearance: none;
  -webkit-appearance: none;

  position: fixed;

  z-index: 90;

  top: 30.5vh;

  width: clamp(170px, 13.4vw, 245px);
  aspect-ratio: 1.32 / 1;

  margin: 0;
  padding: 0;

  overflow: hidden;

  border: 1px solid rgba(255, 248, 236, 0.36);
  border-radius: 0.85vw;

  background: var(--green-deep);

  box-shadow:
    0 1.15vw 2.6vw rgba(0, 0, 0, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  color: var(--cream);

  cursor: pointer;
  pointer-events: auto;

  isolation: isolate;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.experiences-dock .experience-trigger:nth-child(1) {
  left: 19.5%;
  transform: translateX(-50%);
}

.experiences-dock .experience-trigger:nth-child(2) {
  left: 80.5%;
  transform: translateX(-50%);
}

.experience-trigger::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 13, 0.00) 10%,
      rgba(7, 20, 13, 0.06) 38%,
      rgba(7, 20, 13, 0.78) 100%
    );

  pointer-events: none;
}

.experience-trigger::after {
  content: "";

  position: absolute;

  z-index: 4;

  left: 0.8vw;
  bottom: 0.65vw;

  width: 1.55vw;
  min-width: 24px;

  height: 2px;

  background: var(--gold);

  pointer-events: none;

  transition: width 0.3s ease;
}

.experience-trigger:hover {
  border-color: rgba(255, 248, 236, 0.70);

  box-shadow:
    0 1.5vw 3.3vw rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.experiences-dock .experience-trigger:nth-child(1):hover,
.experiences-dock .experience-trigger:nth-child(2):hover {
  transform:
    translateX(-50%)
    translateY(-4px)
    scale(1.025);
}

.experience-trigger:hover::after {
  width: 2.3vw;
}

.experience-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.experience-trigger img {
  position: absolute;

  z-index: 1;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.6s
    cubic-bezier(0.2, 0.7, 0.2, 1);
}

.experience-trigger:hover img {
  transform: scale(1.06);
}

.experience-trigger-copy {
  position: absolute;

  z-index: 3;

  left: 0.8vw;
  right: 0.7vw;
  bottom: 1.05vw;

  text-align: left;

  pointer-events: none;
}

.experience-trigger-copy small {
  display: block;

  margin: 0 0 0.25vw;

  font-size:
    clamp(7px, 0.42vw, 9px);

  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.17em;

  color: var(--gold);

  text-shadow:
    0 2px 7px rgba(0, 0, 0, 0.70);
}

.experience-trigger-copy strong {
  display: block;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(17px, 1.05vw, 22px);

  font-weight: 400;
  line-height: 1;

  color: var(--cream);

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.80),
    0 7px 20px rgba(0, 0, 0, 0.40);
}

.experience-trigger-schedule img {
  object-fit: cover;
  object-position: center top;
}


/* ==========================================================
   ANFITRIONES — ESCRITORIO
   ========================================================== */

.hosts-trigger {
  appearance: none;
  -webkit-appearance: none;

  position: fixed;

  z-index: 100;

  left: 50%;
  right: auto;

  top: 30.5vh;

  transform: translateX(-50%);

  width: clamp(190px, 15vw, 275px);
  aspect-ratio: 1.32 / 1;

  height: auto;
  min-width: 0;
  max-width: none;
  min-height: 0;

  margin: 0;
  padding: 0;

  display: block;

  overflow: hidden;

  border: 2px solid rgba(225, 188, 128, 0.78);
  border-radius: 0.95vw;

  background: var(--green-deep);

  box-shadow:
    0 1.5vw 3.2vw rgba(0, 0, 0, 0.30),
    0 0 0 3px rgba(16, 37, 26, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);

  color: var(--cream);

  cursor: pointer;
  pointer-events: auto;

  opacity: 1;
  visibility: visible;

  isolation: isolate;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hosts-trigger::before {
  content: "";

  position: absolute;

  z-index: 2;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 13, 0.00) 20%,
      rgba(7, 20, 13, 0.05) 43%,
      rgba(7, 20, 13, 0.58) 75%,
      rgba(7, 20, 13, 0.92) 100%
    );
}

.hosts-trigger::after {
  content: "";

  position: absolute;

  z-index: 4;

  left: 1.1vw;
  bottom: 0.9vw;

  width: 2.2vw;
  min-width: 30px;
  max-width: 46px;

  height: 2px;

  background: var(--gold);

  opacity: 0.95;

  pointer-events: none;

  transition: width 0.35s ease;
}

.hosts-trigger:hover {
  transform:
    translateX(-50%)
    translateY(-5px)
    scale(1.025);

  border-color: rgba(225, 188, 128, 1);

  box-shadow:
    0 2vw 4vw rgba(0, 0, 0, 0.36),
    0 0 0 3px rgba(16, 37, 26, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.hosts-trigger:hover::after {
  width: 3.2vw;
}

.hosts-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.hosts-trigger img {
  position: absolute;

  z-index: 1;

  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center 42%;

  border-radius: 0;

  transform: none;

  transition:
    transform 0.65s
    cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hosts-trigger:hover img {
  transform: scale(1.025);
}

.hosts-trigger-copy {
  position: absolute;

  z-index: 3;

  left: 1.1vw;
  right: 1.1vw;
  bottom: 1.5vw;

  min-width: 0;

  padding: 0;

  display: block;

  text-align: left;

  pointer-events: none;
}

.hosts-trigger-copy small {
  display: block;

  margin: 0 0 0.3vw;

  font-size:
    clamp(7px, 0.5vw, 10px);

  font-weight: 700;
  line-height: 1.1;

  letter-spacing: 0.19em;

  color: var(--gold);

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.80);
}

.hosts-trigger-copy strong {
  display: block;

  margin: 0;

  max-width: 95%;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(19px, 1.35vw, 28px);

  font-weight: 400;
  line-height: 0.98;

  letter-spacing: -0.025em;

  color: var(--cream);

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.90),
    0 8px 24px rgba(0, 0, 0, 0.55);
}


/* ==========================================================
   MODAL YOGA / HORARIOS
   ========================================================== */

.experience-modal {
  position: fixed;

  inset: 0;

  z-index: 320;

  width: 100vw;
  height: 100dvh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 4vh 4vw;

  visibility: hidden;
  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.experience-modal.is-open {
  visibility: visible;
  opacity: 1;

  pointer-events: auto;
}

.experience-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(5, 15, 10, 0.80);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  cursor: pointer;
}

.experience-card {
  position: relative;

  z-index: 1;

  width: min(1080px, 86vw);
  max-height: 88dvh;

  display: grid;

  grid-template-columns:
    1.12fr 0.88fr;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.24);

  border-radius: 24px;

  background: var(--green-deep);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.50);

  transform:
    translateY(20px)
    scale(0.97);

  transition:
    transform 0.35s ease;
}

.experience-modal.is-open .experience-card {
  transform:
    translateY(0)
    scale(1);
}

.experience-photo {
  min-width: 0;
  min-height: 0;

  overflow: hidden;

  background: #0b1b12;
}

.experience-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.experience-copy {
  padding:
    clamp(32px, 4vw, 68px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    radial-gradient(
      circle at top right,
      rgba(225, 188, 128, 0.13),
      transparent 44%
    ),
    var(--green-deep);
}

.experience-eyebrow {
  margin: 0 0 16px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.20em;

  color: var(--gold);
}

.experience-copy h2 {
  margin: 0 0 24px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(40px, 3.7vw, 66px);

  font-weight: 400;
  line-height: 0.96;

  letter-spacing: -0.035em;

  color: var(--cream);
}

.experience-text {
  margin: 0;

  max-width: 500px;

  font-size: 17px;
  line-height: 1.65;

  white-space: pre-line;

  color:
    rgba(255, 248, 236, 0.86);
}

.experience-signature {
  margin: 28px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px;
  font-style: italic;
  line-height: 1.25;

  color: var(--gold);
}

.experience-close {
  appearance: none;
  -webkit-appearance: none;

  position: absolute;

  z-index: 5;

  top: 16px;
  right: 16px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin: 0;
  padding: 0;

  border:
    1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background:
    rgba(9, 25, 16, 0.78);

  color: white;

  font-size: 28px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.experience-close:hover {
  background:
    rgba(25, 55, 37, 0.96);

  border-color:
    rgba(255, 255, 255, 0.70);

  transform: scale(1.05);
}

.experience-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* ==========================================================
   HORARIOS — MODAL
   ========================================================== */

.experience-modal[data-experience="horarios"] .experience-card {
  width: min(1040px, 88vw);

  grid-template-columns:
    minmax(420px, 0.95fr)
    minmax(330px, 0.75fr);
}

.experience-modal[data-experience="horarios"] .experience-photo {
  padding: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(6, 18, 11, 0.92);
}

.experience-modal[data-experience="horarios"] .experience-photo img {
  width: 100%;
  height: 100%;

  max-height:
    calc(88dvh - 44px);

  object-fit: contain;
  object-position: center;

  border-radius: 12px;
}


/* ==========================================================
   MODAL ANFITRIONES
   ========================================================== */

.hosts-modal {
  position: fixed;

  inset: 0;

  z-index: 300;

  width: 100vw;
  height: 100dvh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 4vh 4vw;

  visibility: hidden;
  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.hosts-modal.is-open {
  visibility: visible;
  opacity: 1;

  pointer-events: auto;
}

.hosts-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(5, 15, 10, 0.78);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  cursor: pointer;
}

.hosts-card {
  position: relative;

  z-index: 1;

  width:
    min(1100px, 86vw);

  max-height: 88dvh;

  display: grid;

  grid-template-columns:
    1.15fr 0.85fr;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.24);

  border-radius: 24px;

  background:
    var(--green-deep);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.50);

  transform:
    translateY(20px)
    scale(0.97);

  transition:
    transform 0.35s ease;
}

.hosts-modal.is-open .hosts-card {
  transform:
    translateY(0)
    scale(1);
}

.hosts-photo {
  min-width: 0;
  min-height: 0;

  overflow: hidden;

  background: #0b1b12;
}

.hosts-photo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  background:
    #0b1b12;
}

.hosts-copy {
  padding:
    clamp(32px, 4vw, 70px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    radial-gradient(
      circle at top right,
      rgba(225, 188, 128, 0.13),
      transparent 44%
    ),
    var(--green-deep);
}

.hosts-eyebrow {
  margin: 0 0 16px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.2em;

  color: var(--gold);
}

.hosts-copy h2 {
  margin: 0 0 24px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(44px, 4.1vw, 72px);

  font-weight: 400;
  line-height: 0.95;

  letter-spacing: -0.035em;

  color: var(--cream);
}

.hosts-copy h2 span {
  font-style: italic;
  color: var(--cream-soft);
}

.hosts-copy > p:not(.hosts-eyebrow):not(.hosts-signature) {
  margin: 0;

  max-width: 500px;

  font-size: 17px;
  line-height: 1.65;

  color:
    rgba(255, 248, 236, 0.86);
}

.hosts-signature {
  margin: 28px 0 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px;
  font-style: italic;
  line-height: 1.25;

  color: var(--gold);
}

.hosts-close {
  appearance: none;
  -webkit-appearance: none;

  position: absolute;

  z-index: 5;

  top: 16px;
  right: 16px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin: 0;
  padding: 0;

  border:
    1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background:
    rgba(9, 25, 16, 0.78);

  color: #ffffff;

  font-size: 28px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hosts-close:hover {
  background:
    rgba(25, 55, 37, 0.96);

  border-color:
    rgba(255, 255, 255, 0.70);

  transform:
    scale(1.05);
}

.hosts-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* ==========================================================
   TABLET HORIZONTAL
   651px — 1100px

   IZQUIERDA      = IDENTIDAD + TÍTULO + REDES
   CENTRO-DERECHA = ANFITRIONES
   DERECHA ARRIBA = YOGA
   DERECHA ABAJO  = HORARIOS
   ========================================================== */

@media (orientation: landscape)
       and (min-width: 651px)
       and (max-width: 1100px) {

  .site-header {
    height: 92px;
    padding: 12px 18px;
  }

  .brand {
    width: 112px;
    height: 66px;
  }

  .brand-logo {
    width: 112px !important;
    height: 66px !important;

    transform: scale(1.12);
  }

  .brand::before {
    left: -14px;
    top: -10px;

    width: 144px;
    height: 88px;

    filter: blur(6px);
  }

  .language-switcher {
    gap: 5px;

    padding: 5px 8px;

    font-size: 12px;

    background:
      rgba(14, 34, 23, 0.58);
  }

  .language-switcher button {
    padding: 4px 7px;
    border-radius: 6px;
  }


  /* --------------------------------------------------------
     FACHADA COMPLETA
     -------------------------------------------------------- */

  .hero-image {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: auto;

    width: 100%;
    height: 64dvh;

    overflow: hidden;

    background:
      var(--green-deep)
      url("assets/images/casa.png")
      center top / 100% auto
      no-repeat;
  }

  .hero-image img {
    opacity: 0;

    animation: none;
    transform: none;
  }

  .hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        180deg,
        rgba(16, 37, 26, 0) 0%,
        rgba(16, 37, 26, 0) 58%,
        rgba(16, 37, 26, 0.12) 68%,
        rgba(16, 37, 26, 0.30) 77%,
        rgba(16, 37, 26, 0.56) 86%,
        rgba(16, 37, 26, 0.82) 94%,
        var(--green-deep) 100%
      );

    pointer-events: none;
  }


  /* --------------------------------------------------------
     BLOQUE PRINCIPAL IZQUIERDO
     -------------------------------------------------------- */

  .hero-content {
    position: absolute !important;

    left: 4.5vw !important;
    right: auto !important;

    top: auto !important;
    bottom: 4vh !important;

    width: 48vw !important;
    max-width: 620px !important;

    margin: 0 !important;
  }

  .hero-kicker {
    margin: 0 0 7px;

    font-size: 10px;

    white-space: nowrap;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;

    font-size:
      clamp(44px, 5.6vw, 68px);

    line-height: 0.89;
  }

  .hero h1 span {
    margin-left: 22px;
  }

  .hero-subtitle {
    margin-top: 10px;

    font-size: 13px;

    white-space: nowrap;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;

    margin-top: 11px;

    gap: 7px;
  }

  .hero-action {
    height: 54px;

    padding: 7px 9px;

    grid-template-columns:
      21px minmax(0, 1fr);

    column-gap: 7px;

    border-radius: 10px;
  }

  .hero-action svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-action span {
    font-size: 6px;
  }

  .hero-action strong {
    font-size: 11px;
  }

  .live-message {
    display: none !important;
  }


  /* --------------------------------------------------------
     YOGA — ARRIBA DERECHA
     -------------------------------------------------------- */

  .experiences-dock .experience-trigger:nth-child(1) {
    position: fixed !important;

    left: auto !important;
    right: 3.5vw !important;

    top: 15vh !important;
    bottom: auto !important;

    width:
      clamp(
        130px,
        15vw,
        175px
      ) !important;

    height: auto !important;

    aspect-ratio:
      1.32 / 1 !important;

    transform: none !important;

    border-radius: 13px;
  }


  /* --------------------------------------------------------
     HORARIOS — ABAJO DERECHA
     -------------------------------------------------------- */

  .experiences-dock .experience-trigger:nth-child(2) {
    position: fixed !important;

    left: auto !important;
    right: 3.5vw !important;

    top: 42vh !important;
    bottom: auto !important;

    width:
      clamp(
        130px,
        15vw,
        175px
      ) !important;

    height: auto !important;

    aspect-ratio:
      1.32 / 1 !important;

    transform: none !important;

    border-radius: 13px;
  }

  .experiences-dock .experience-trigger:nth-child(1):hover,
  .experiences-dock .experience-trigger:nth-child(2):hover {
    transform:
      translateY(-3px)
      scale(1.015) !important;
  }

  .experience-trigger-copy {
    left: 11px;
    right: 10px;
    bottom: 19px;
  }

  .experience-trigger-copy small {
    margin-bottom: 3px;

    font-size: 6px;
  }

  .experience-trigger-copy strong {
    font-size:
      clamp(
        14px,
        1.8vw,
        17px
      );
  }

  .experience-trigger::after {
    left: 11px;
    bottom: 9px;

    width: 26px;
  }


  /* --------------------------------------------------------
     ANFITRIONES — CENTRO DERECHA
     -------------------------------------------------------- */

  .hosts-trigger {
    position: fixed !important;

    left: auto !important;
    right: 21vw !important;

    top: 24vh !important;
    bottom: auto !important;

    width:
      clamp(
        155px,
        18vw,
        200px
      ) !important;

    height: auto !important;

    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;

    aspect-ratio:
      1.32 / 1 !important;

    transform: none !important;

    border-radius: 14px;
  }

  .hosts-trigger:hover {
    transform:
      translateY(-4px)
      scale(1.015) !important;
  }

  .hosts-trigger-copy {
    left: 13px;
    right: 13px;
    bottom: 24px;
  }

  .hosts-trigger-copy small {
    margin-bottom: 3px;

    font-size: 6px;
  }

  .hosts-trigger-copy strong {
    font-size:
      clamp(
        16px,
        2vw,
        19px
      );
  }

  .hosts-trigger::after {
    left: 13px;
    bottom: 10px;

    width: 30px;
  }


  /* --------------------------------------------------------
     MODALES TABLET HORIZONTAL
     -------------------------------------------------------- */

  .experience-modal,
  .hosts-modal {
    padding: 14px;
  }

  .experience-card,
  .hosts-card {
    width:
      min(
        760px,
        94vw
      );

    max-height:
      calc(
        100dvh - 28px
      );

    overflow: hidden;

    border-radius: 20px;
  }

  .experience-card {
    grid-template-columns:
      1.05fr
      0.95fr;
  }

  .experience-copy {
    padding: 24px;
  }

  .experience-copy h2 {
    margin-bottom: 14px;

    font-size:
      clamp(
        36px,
        4.5vw,
        48px
      );
  }

  .experience-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .experience-signature {
    margin-top: 13px;

    font-size: 19px;
  }

  .experience-modal[data-experience="horarios"] .experience-card {
    width:
      min(
        760px,
        94vw
      );

    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(0, 0.92fr);
  }

  .experience-modal[data-experience="horarios"] .experience-photo {
    padding: 12px;
  }

  .experience-modal[data-experience="horarios"] .experience-photo img {
    max-height:
      calc(
        100dvh - 52px
      );
  }

  .experience-modal[data-experience="horarios"] .experience-copy {
    padding: 22px;
  }

  .experience-modal[data-experience="horarios"] .experience-copy h2 {
    font-size:
      clamp(
        30px,
        4vw,
        40px
      );
  }

  .hosts-card {
    grid-template-columns:
      1.08fr
      0.92fr;
  }

  .hosts-photo img {
    object-fit: contain;
    object-position: center;
  }

  .hosts-copy {
    padding: 24px;
  }

  .hosts-copy h2 {
    margin-bottom: 14px;

    font-size:
      clamp(
        38px,
        4.7vw,
        50px
      );
  }

  .hosts-copy > p:not(.hosts-eyebrow):not(.hosts-signature) {
    font-size: 15px;
    line-height: 1.45;
  }

  .hosts-signature {
    margin-top: 13px;

    font-size: 19px;
  }
}


/* ==========================================================
   TABLET VERTICAL
   651px — 1100px

   COMPOSICIÓN INDEPENDIENTE.
   SIN VACÍO CENTRAL.
   LOGO DENTRO DEL BLOQUE PRINCIPAL.
   ========================================================== */

@media (hover: none) and (pointer: coarse) and (min-width: 651px) and (max-width: 1100px) and (orientation: portrait) {

  .site-header {
    height: 86px;

    padding:
      max(12px, env(safe-area-inset-top))
      18px
      6px;
  }

  .brand {
    display: none;
  }

  .language-switcher {
    margin-left: auto;

    gap: 5px;
    padding: 5px 8px;

    font-size: 13px;

    background:
      rgba(14, 34, 23, 0.62);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .language-switcher button {
    padding: 4px 7px;
    border-radius: 6px;
  }


  /* FACHADA COMPLETA, NO UNA VENTANA GIGANTE */

  .hero-image {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: auto;

    width: 100%;
    height: 53dvh;

    overflow: hidden;

    background:
      var(--green-deep)
      url("assets/images/casa.png")
      center top / 100% auto
      no-repeat;
  }

  .hero-image img {
    opacity: 0;
    animation: none;
    transform: none;
  }

  .hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        180deg,
        rgba(16, 37, 26, 0) 0%,
        rgba(16, 37, 26, 0) 50%,
        rgba(16, 37, 26, 0.05) 58%,
        rgba(16, 37, 26, 0.14) 65%,
        rgba(16, 37, 26, 0.28) 72%,
        rgba(16, 37, 26, 0.46) 79%,
        rgba(16, 37, 26, 0.66) 86%,
        rgba(16, 37, 26, 0.84) 93%,
        var(--green-deep) 100%
      );

    pointer-events: none;
  }


  /* TRES VENTANAS ARRIBA */

  .experience-trigger {
    top:
      clamp(
        190px,
        19dvh,
        250px
      );

    width:
      clamp(
        125px,
        18vw,
        155px
      );

    border-radius: 14px;
  }

  .experiences-dock .experience-trigger:nth-child(1) {
    left: 19%;
  }

  .experiences-dock .experience-trigger:nth-child(2) {
    left: 81%;
  }

  .experience-trigger-copy {
    left: 11px;
    right: 10px;
    bottom: 20px;
  }

  .experience-trigger-copy small {
    margin-bottom: 3px;
    font-size: 6px;
  }

  .experience-trigger-copy strong {
    font-size:
      clamp(15px, 2.1vw, 18px);
  }

  .experience-trigger::after {
    left: 11px;
    bottom: 9px;
    width: 27px;
  }


  /* ANFITRIONES CENTRO */

  .hosts-trigger {
    left: 50%;
    right: auto;

    top:
      clamp(
        180px,
        18dvh,
        240px
      );

    width:
      clamp(
        145px,
        21vw,
        180px
      );

    height: auto;

    transform:
      translateX(-50%);

    border-radius: 15px;
  }

  .hosts-trigger:hover {
    transform:
      translateX(-50%)
      translateY(-3px)
      scale(1.012);
  }

  .hosts-trigger-copy {
    left: 13px;
    right: 13px;
    bottom: 25px;
  }

  .hosts-trigger-copy small {
    margin-bottom: 3px;
    font-size: 6px;
  }

  .hosts-trigger-copy strong {
    font-size:
      clamp(17px, 2.4vw, 21px);
  }

  .hosts-trigger::after {
    left: 13px;
    bottom: 10px;
    width: 31px;
  }


  /* BLOQUE PRINCIPAL PEGADO A LA FACHADA */

  .hero-content {
    left: 40px;
    right: 40px;

    top: 54dvh;
    bottom: auto;

    width: auto;
  }

  .hero-logo {
    display: block !important;

    width: 132px;
    height: auto;

    margin:
      0 0 10px 0;

    object-fit: contain;
    object-position: left center;

    filter:
      drop-shadow(
        0 2px 2px
        rgba(0, 0, 0, 0.80)
      )
      drop-shadow(
        0 7px 16px
        rgba(0, 0, 0, 0.45)
      );
  }

  .hero-kicker {
    margin:
      0 0 8px;

    font-size:
      clamp(10px, 1.55vw, 12px);

    letter-spacing: 0.14em;

    white-space: normal;
  }

  .hero h1 {
    font-size:
      clamp(54px, 8.2vw, 72px);

    line-height: 0.89;
  }

  .hero h1 span {
    margin-left: 18px;
  }

  .hero-subtitle {
    margin-top: 11px;

    font-size:
      clamp(13px, 2vw, 16px);

    white-space: normal;
  }

  .hero-actions {
    width: 100%;

    margin-top: 13px;

    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 7px;
  }

  .hero-action {
    height: 58px;

    padding: 8px 9px;

    grid-template-columns:
      21px minmax(0, 1fr);

    column-gap: 7px;

    border-radius: 11px;
  }

  .hero-action svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-action span {
    font-size: 6px;
  }

  .hero-action strong {
    font-size: 11px;
  }

  .live-message {
    display: none;
  }


  /* MODALES TABLET VERTICAL */

  .experience-modal,
  .hosts-modal {
    padding: 16px;
  }

  .experience-card,
  .hosts-card {
    width:
      min(720px, 94vw);

    max-height:
      calc(100dvh - 32px);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 20px;
  }

  .experience-photo {
    width: 100%;

    height:
      min(34dvh, 340px);

    min-height: 0;

    flex:
      0 0 auto;
  }

  .experience-copy {
    flex:
      0 0 auto;

    padding:
      22px 26px 25px;

    justify-content:
      flex-start;
  }

  .experience-copy h2 {
    margin-bottom: 14px;

    font-size:
      clamp(38px, 5.7vw, 50px);
  }

  .experience-text {
    max-width: none;

    font-size: 16px;
    line-height: 1.46;
  }

  .experience-signature {
    margin-top: 13px;
    font-size: 20px;
  }


  /* HORARIOS VERTICAL */

  .experience-modal[data-experience="horarios"] .experience-card {
    width:
      min(700px, 94vw);

    display: flex;
    flex-direction: column;

    overflow: hidden;
  }

  .experience-modal[data-experience="horarios"] .experience-photo {
    width: 100%;
    height: auto;

    padding: 12px;

    flex:
      0 0 auto;
  }

  .experience-modal[data-experience="horarios"] .experience-photo img {
    width: 100%;
    height: auto;

    max-height:
      58dvh;

    object-fit: contain;
    object-position: center top;
  }

  .experience-modal[data-experience="horarios"] .experience-copy {
    padding:
      18px 24px 22px;
  }

  .experience-modal[data-experience="horarios"] .experience-copy h2 {
    font-size:
      clamp(31px, 4.8vw, 42px);

    margin-bottom: 11px;
  }

  .experience-modal[data-experience="horarios"] .experience-text {
    font-size: 15px;
    line-height: 1.42;
  }


  /* ANFITRIONES VERTICAL */

  .hosts-photo {
    width: 100%;
    height: auto;

    aspect-ratio:
      1408 / 1086;

    max-height: 40dvh;

    flex:
      0 0 auto;
  }

  .hosts-photo img {
    object-fit: contain;
    object-position: center;
  }

  .hosts-copy {
    flex:
      0 0 auto;

    padding:
      22px 26px 25px;

    justify-content:
      flex-start;
  }

  .hosts-copy h2 {
    margin-bottom: 14px;

    font-size:
      clamp(40px, 5.9vw, 52px);
  }

  .hosts-copy > p:not(.hosts-eyebrow):not(.hosts-signature) {
    max-width: none;

    font-size: 16px;
    line-height: 1.46;
  }

  .hosts-signature {
    margin-top: 13px;
    font-size: 20px;
  }
}


/* ==========================================================
   MÓVIL TÁCTIL REAL
   ========================================================== */

@media (hover: none) and (pointer: coarse) and (max-width: 650px) {

  .site-header {
    height: 88px;

    padding:
      max(11px, env(safe-area-inset-top))
      14px
      6px;
  }

  .brand {
    display: none;
  }

  .language-switcher {
    margin-left: auto;

    padding: 5px 7px;

    font-size: 12px;

    background:
      rgba(14, 34, 23, 0.62);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }


  /* FACHADA */

  .hero-image {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: auto;

    width: 100%;
    height: 56dvh;

    overflow: hidden;

    background:
      var(--green-deep)
      url("assets/images/casa.png")
      center top / 100% auto
      no-repeat;
  }

  .hero-image img {
    opacity: 0;

    animation: none;
    transform: none;
  }

  .hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        180deg,
        rgba(16, 37, 26, 0.00) 0%,
        rgba(16, 37, 26, 0.00) 46%,
        rgba(16, 37, 26, 0.04) 53%,
        rgba(16, 37, 26, 0.10) 59%,
        rgba(16, 37, 26, 0.20) 65%,
        rgba(16, 37, 26, 0.34) 71%,
        rgba(16, 37, 26, 0.50) 77%,
        rgba(16, 37, 26, 0.66) 83%,
        rgba(16, 37, 26, 0.80) 88%,
        rgba(16, 37, 26, 0.90) 93%,
        rgba(16, 37, 26, 0.97) 97%,
        var(--green-deep) 100%
      );

    pointer-events: none;
  }


  /* CONTENIDO */

  .hero-content {
    left: 18px;
    right: 18px;

    bottom:
      max(
        18px,
        env(safe-area-inset-bottom)
      );

    width: auto;
  }

  .hero-logo {
    display: block !important;

    width: 118px;
    height: auto;

    margin: 0 0 10px;

    object-fit: contain;
    object-position: left center;

    filter:
      drop-shadow(
        0 2px 2px
        rgba(0, 0, 0, 0.80)
      )
      drop-shadow(
        0 7px 16px
        rgba(0, 0, 0, 0.45)
      );
  }

  .hero-kicker {
    margin: 0 0 8px;

    font-size:
      clamp(10px, 2.45vw, 12px);

    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.13em;

    white-space: normal;
  }

  .hero h1 {
    font-size:
      clamp(48px, 13.5vw, 70px);

    line-height: 0.88;
  }

  .hero h1 span {
    margin-left: 12px;
  }

  .hero-subtitle {
    margin-top: 11px;

    font-size:
      clamp(13px, 3.45vw, 15px);

    line-height: 1.3;

    white-space: normal;
  }

  .hero-actions {
    width: 100%;

    margin-top: 12px;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 8px;
  }

  .hero-action {
    height: 60px;

    padding: 8px 10px;

    grid-template-columns:
      22px minmax(0, 1fr);

    column-gap: 8px;

    border-radius: 11px;
  }

  .hero-action svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero-action span {
    font-size: 7px;
  }

  .hero-action strong {
    font-size: 13px;
  }

  .live-message {
    display: none;
  }


  /* TRES CÍRCULOS */

  .experience-trigger {
    top:
      clamp(
        124px,
        17.5dvh,
        165px
      );

    width: 70px;
    height: 70px;

    aspect-ratio: auto;

    overflow: visible;

    border:
      1px solid
      rgba(255, 248, 236, 0.55);

    border-radius: 50%;

    background:
      var(--green-deep);

    box-shadow:
      0 9px 22px
      rgba(0, 0, 0, 0.34);
  }

  .experiences-dock .experience-trigger:nth-child(1) {
    left: 19%;
  }

  .experiences-dock .experience-trigger:nth-child(2) {
    left: 81%;
  }

  .experience-trigger::before {
    border-radius: 50%;

    background:
      rgba(7, 20, 13, 0.03);
  }

  .experience-trigger::after {
    display: none;
  }

  .experience-trigger img {
    border-radius: 50%;
  }

  .experiences-dock .experience-trigger:nth-child(1):hover,
  .experiences-dock .experience-trigger:nth-child(2):hover {
    transform:
      translateX(-50%);
  }

  .experiences-dock .experience-trigger:nth-child(1) img {
    object-fit: cover;
    object-position: center;
  }

  .experience-trigger-schedule {
    border-color:
      rgba(225, 188, 128, 0.90);
  }

  .experience-trigger-schedule img {
    object-fit: cover;
    object-position: center top;
  }

  .experience-trigger-copy {
    display: block;

    position: absolute;

    left: 50%;
    right: auto;

    top:
      calc(100% + 7px);

    bottom: auto;

    width: 94px;

    transform:
      translateX(-50%);

    padding: 0;

    text-align: center;

    pointer-events: none;
  }

  .experience-trigger-copy small {
    display: none;
  }

  .experience-trigger-copy strong {
    display: block;

    width: 100%;

    font-family:
      Arial,
      Helvetica,
      sans-serif;

    font-size: 11px;
    font-weight: 600;
    line-height: 1.08;

    letter-spacing: 0;

    white-space: normal;

    color:
      rgba(255, 248, 236, 0.98);

    text-shadow:
      0 1px 4px
      rgba(0, 0, 0, 0.95),
      0 3px 10px
      rgba(0, 0, 0, 0.65);
  }


  /* ANFITRIONES CENTRAL */

  .hosts-trigger {
    left: 50%;
    right: auto;

    top:
      clamp(
        114px,
        16.5dvh,
        155px
      );

    width: 88px;
    min-width: 88px;
    max-width: 88px;

    height: 88px;
    min-height: 88px;

    aspect-ratio: auto;

    overflow: visible;

    border:
      2px solid
      rgba(225, 188, 128, 0.94);

    border-radius: 50%;

    transform:
      translateX(-50%);

    background:
      rgba(16, 37, 26, 0.94);

    box-shadow:
      0 14px 34px
      rgba(0, 0, 0, 0.40),
      0 0 0 4px
      rgba(16, 37, 26, 0.35);
  }

  .hosts-trigger:hover {
    transform:
      translateX(-50%);
  }

  .hosts-trigger::before,
  .hosts-trigger::after {
    display: none;
  }

  .hosts-trigger img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 42%;

    border-radius: 50%;

    transform: none;

    background:
      var(--green-deep);
  }

  .hosts-trigger-copy {
    display: block;

    position: absolute;

    left: 50%;
    right: auto;

    top:
      calc(100% + 7px);

    bottom: auto;

    width: 118px;

    transform:
      translateX(-50%);

    padding: 0;

    text-align: center;

    pointer-events: none;
  }

  .hosts-trigger-copy small {
    display: block;

    margin: 0 0 2px;

    font-family:
      Arial,
      Helvetica,
      sans-serif;

    font-size: 7px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.15em;

    color: var(--gold);

    text-shadow:
      0 1px 4px
      rgba(0, 0, 0, 0.95);
  }

  .hosts-trigger-copy strong {
    display: block;

    width: 100%;
    max-width: none;

    font-family:
      Georgia,
      "Times New Roman",
      serif;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.05;

    letter-spacing: 0;

    white-space: normal;

    color: var(--cream);

    text-shadow:
      0 1px 4px
      rgba(0, 0, 0, 0.95),
      0 3px 10px
      rgba(0, 0, 0, 0.65);
  }


  /* MODAL YOGA */

  .experience-modal {
    padding:
      max(
        12px,
        env(safe-area-inset-top)
      )
      12px
      max(
        12px,
        env(safe-area-inset-bottom)
      );
  }

  .experience-card {
    width: 100%;
    height: auto;

    max-height:
      calc(
        100dvh -
        max(
          12px,
          env(safe-area-inset-top)
        ) -
        max(
          12px,
          env(safe-area-inset-bottom)
        )
      );

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 20px;
  }

  .experience-photo {
    width: 100%;

    height:
      clamp(
        230px,
        31dvh,
        300px
      );

    min-height: 0;

    flex:
      0 0 auto;
  }

  .experience-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }

  .experience-copy {
    flex:
      0 0 auto;

    min-height: 0;

    padding:
      20px 22px 22px;

    justify-content:
      flex-start;

    overflow: visible;
  }

  .experience-eyebrow {
    margin: 0 0 10px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: 0.18em;
  }

  .experience-copy h2 {
    margin: 0 0 15px;

    font-size:
      clamp(
        36px,
        9.4vw,
        46px
      );

    line-height: 0.95;

    letter-spacing: -0.03em;
  }

  .experience-text {
    max-width: none;

    font-size:
      clamp(
        15px,
        4vw,
        17px
      );

    line-height: 1.45;

    color:
      rgba(255, 248, 236, 0.90);
  }

  .experience-signature {
    margin: 15px 0 0;

    font-size:
      clamp(
        19px,
        5vw,
        22px
      );

    line-height: 1.15;
  }

  .experience-close {
    top: 13px;
    right: 13px;

    width: 44px;
    height: 44px;

    font-size: 29px;
  }


  /* HORARIOS — MODAL */

  .experience-modal[data-experience="horarios"] {
    padding:
      max(
        8px,
        env(safe-area-inset-top)
      )
      8px
      max(
        8px,
        env(safe-area-inset-bottom)
      );
  }

  .experience-modal[data-experience="horarios"] .experience-card {
    width: 100%;

    max-height:
      calc(
        100dvh -
        max(
          8px,
          env(safe-area-inset-top)
        ) -
        max(
          8px,
          env(safe-area-inset-bottom)
        )
      );

    display: flex;
    flex-direction: column;

    overflow-y: auto;
  }

  .experience-modal[data-experience="horarios"] .experience-photo {
    width: 100%;
    height: auto;

    min-height: 0;

    padding: 8px;

    flex:
      0 0 auto;

    background:
      #0b1b12;
  }

  .experience-modal[data-experience="horarios"] .experience-photo img {
    width: 100%;
    height: auto;

    max-height:
      calc(100dvh - 260px);

    object-fit: contain;
    object-position: center top;

    border-radius: 10px;
  }

  .experience-modal[data-experience="horarios"] .experience-copy {
    padding:
      14px 18px 18px;
  }

  .experience-modal[data-experience="horarios"] .experience-eyebrow {
    margin-bottom: 7px;
  }

  .experience-modal[data-experience="horarios"] .experience-copy h2 {
    margin-bottom: 10px;

    font-size:
      clamp(
        27px,
        7.5vw,
        36px
      );

    line-height: 0.98;
  }

  .experience-modal[data-experience="horarios"] .experience-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .experience-modal[data-experience="horarios"] .experience-signature {
    margin-top: 10px;

    font-size: 17px;
  }


  /* MODAL ANFITRIONES */

  .hosts-modal {
    padding:
      max(
        12px,
        env(safe-area-inset-top)
      )
      12px
      max(
        12px,
        env(safe-area-inset-bottom)
      );
  }

  .hosts-card {
    width: 100%;
    height: auto;

    max-height:
      calc(
        100dvh -
        max(
          12px,
          env(safe-area-inset-top)
        ) -
        max(
          12px,
          env(safe-area-inset-bottom)
        )
      );

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 20px;
  }

  .hosts-photo {
    width: 100%;
    height: auto;

    aspect-ratio:
      1408 / 1086;

    min-height: 0;

    flex:
      0 0 auto;

    overflow: hidden;

    background:
      #0b1b12;
  }

  .hosts-photo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background:
      #0b1b12;
  }

  .hosts-copy {
    flex:
      0 0 auto;

    min-height: 0;

    padding:
      20px 22px 22px;

    justify-content:
      flex-start;

    overflow: visible;
  }

  .hosts-eyebrow {
    margin: 0 0 10px;

    font-size: 11px;
    line-height: 1.1;

    letter-spacing: 0.18em;
  }

  .hosts-copy h2 {
    margin: 0 0 15px;

    font-size:
      clamp(
        37px,
        9.6vw,
        47px
      );

    line-height: 0.94;
  }

  .hosts-copy > p:not(.hosts-eyebrow):not(.hosts-signature) {
    max-width: none;

    font-size:
      clamp(
        15px,
        4vw,
        17px
      );

    line-height: 1.45;

    color:
      rgba(255, 248, 236, 0.90);
  }

  .hosts-signature {
    margin: 15px 0 0;

    font-size:
      clamp(
        19px,
        5vw,
        22px
      );

    line-height: 1.15;
  }

  .hosts-close {
    top: 13px;
    right: 13px;

    width: 44px;
    height: 44px;

    font-size: 29px;
  }
}


/* ==========================================================
   MÓVILES DE POCA ALTURA
   ========================================================== */

@media (hover: none) and (pointer: coarse) and (max-width: 650px) and (max-height: 760px) {

  .experience-trigger {
    top:
      clamp(
        108px,
        16dvh,
        135px
      );

    width: 62px;
    height: 62px;
  }

  .hosts-trigger {
    top:
      clamp(
        101px,
        15dvh,
        128px
      );

    width: 78px;
    min-width: 78px;
    max-width: 78px;

    height: 78px;
    min-height: 78px;
  }

  .experience-photo {
    height: 27dvh;
  }

  .experience-copy {
    padding:
      15px 18px 17px;
  }

  .experience-eyebrow {
    margin-bottom: 7px;

    font-size: 10px;
  }

  .experience-copy h2 {
    margin-bottom: 10px;

    font-size:
      clamp(
        31px,
        8.5vw,
        38px
      );
  }

  .experience-text {
    font-size: 14px;
    line-height: 1.36;
  }

  .experience-signature {
    margin-top: 10px;

    font-size: 17px;
  }

  .experience-modal[data-experience="horarios"] .experience-photo {
    height: auto;
  }

  .experience-modal[data-experience="horarios"] .experience-photo img {
    max-height:
      calc(100dvh - 225px);
  }

  .experience-modal[data-experience="horarios"] .experience-copy {
    padding:
      10px 15px 14px;
  }

  .experience-modal[data-experience="horarios"] .experience-copy h2 {
    font-size:
      clamp(
        24px,
        7vw,
        31px
      );
  }

  .experience-modal[data-experience="horarios"] .experience-text {
    font-size: 13px;
    line-height: 1.35;
  }

  .hosts-photo {
    aspect-ratio:
      1408 / 1086;
  }

  .hosts-copy {
    padding:
      15px 18px 17px;
  }

  .hosts-eyebrow {
    margin-bottom: 7px;

    font-size: 10px;
  }

  .hosts-copy h2 {
    margin-bottom: 10px;

    font-size:
      clamp(
        31px,
        8.5vw,
        39px
      );
  }

  .hosts-copy > p:not(.hosts-eyebrow):not(.hosts-signature) {
    font-size: 14px;
    line-height: 1.36;
  }

  .hosts-signature {
    margin-top: 10px;

    font-size: 17px;
  }
}


/* ==========================================================
   BLINDAJE ULTRAWIDE
   ========================================================== */

@media (min-width: 1800px) and (hover: hover) and (pointer: fine) {

  .site-header {
    height: 211px;

    padding:
      26px 49px;
  }

  .brand {
    width: 305px;
    height: 176px;
  }

  .brand::before {
    left: -37px;
    top: -28px;

    width: 380px;
    height: 232px;

    filter: blur(12px);
  }

  .brand-logo {
    width: 305px !important;
    height: 176px !important;
  }

  .language-switcher {
    gap: 7px;

    padding: 7px 9px;

    font-size: 15px;
  }

  .language-switcher button {
    padding: 5px 8px;

    border-radius: 7px;
  }

  .hero-content {
    left: 121px;
    bottom: 80px;

    width: 882px;
  }

  .hero-kicker {
    margin-bottom: 15px;

    font-size: 16px;
  }

  .hero h1 {
    font-size: 113px;
  }

  .hero h1 span {
    margin-left: 79px;
  }

  .hero-subtitle {
    margin-top: 21px;

    font-size: 19px;
  }

  .hero-actions {
    margin-top: 23px;

    gap: 12px;
  }

  .hero-action {
    height: 80px;

    padding:
      12px 14px;

    grid-template-columns:
      32px minmax(0, 1fr);

    column-gap: 11px;

    border-radius: 15px;
  }

  .hero-action svg {
    width: 29px !important;
    height: 29px !important;
  }

  .hero-action span {
    font-size: 9px;
  }

  .hero-action strong {
    font-size: 16px;
  }

  .live-message {
    right: 72px;
    bottom: 17px;

    max-width: 864px;

    padding:
      10px 18px;

    font-size: 16px;
  }

  .experience-trigger {
    top: 300px;

    width: 245px;

    border-radius: 16px;
  }

  .hosts-trigger {
    top: 290px;

    width: 280px;

    border-radius: 17px;
  }

  .experience-trigger-copy {
    left: 15px;
    right: 15px;
    bottom: 27px;
  }

  .experience-trigger-copy small {
    margin-bottom: 5px;

    font-size: 8px;
  }

  .experience-trigger-copy strong {
    font-size: 20px;
  }

  .hosts-trigger-copy {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }

  .hosts-trigger-copy small {
    margin-bottom: 5px;

    font-size: 9px;
  }

  .hosts-trigger-copy strong {
    font-size: 25px;
  }

  .hosts-copy h2 {
    font-size: 72px;
  }
}


/* ==========================================================
   ACCESIBILIDAD — MOVIMIENTO REDUCIDO
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .hero-image img {
    animation: none;
    transform: none;
  }

  .hero-action,
  .language-switcher button,
  .experience-trigger,
  .experience-trigger img,
  .experience-card,
  .experience-close,
  .experience-modal,
  .hosts-trigger,
  .hosts-trigger img,
  .hosts-card,
  .hosts-close,
  .hosts-modal {
    transition: none;
  }
}
