/* ========================================
   HOME - PUERTA DE ALCALÁ
======================================== */

:root {
  --home-dark-green: #162D24;
  --home-cream: #F5E8D1;
}


/* ========================================
   HERO
======================================== */

.home-hero {
  position: relative;

  width: 100%;

  /*
    95% de la altura visible
    del navegador.
  */
  height: 95vh;
  height: 95dvh;

  min-height: 600px;

  overflow: hidden;

  background: var(--home-dark-green);
}


/* ========================================
   IMAGEN
======================================== */

.home-hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}


/* ========================================
   PANEL VERDE
======================================== */

.home-hero-panel {
  position: absolute;

  left: clamp(55px, 6.5vw, 125px);
  bottom: clamp(35px, 5vh, 80px);

  width: clamp(310px, 25vw, 470px);

  background: rgba(22, 45, 36, 0.94);

  box-sizing: border-box;

  padding:
    clamp(30px, 2.7vw, 50px)
    clamp(28px, 2.5vw, 48px);

  color: var(--home-cream);
}


/* ========================================
   CONTENIDO PANEL
======================================== */

.home-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* TÍTULO */

.home-hero-title {
  margin: 0;

  color: var(--home-cream);

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(21px, 1.65vw, 32px);

  font-weight: 400;

  line-height: 1.18;

  letter-spacing: 0.01em;
}


.home-hero-title strong {
  font-weight: 700;
}


/* ========================================
   BOTÓN
======================================== */

.home-hero-btn {
  margin-top: clamp(28px, 3.5vh, 45px);

  min-height: clamp(35px, 2.3vw, 44px);

  padding: 0 clamp(18px, 1.4vw, 27px);

  box-sizing: border-box;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  border: 1px solid var(--home-cream);
  border-radius: 999px;

  color: var(--home-cream);

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(9px, 0.67vw, 13px);

  font-weight: 400;

  line-height: 1;

  white-space: nowrap;

  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


.home-hero-btn:hover {
  background: var(--home-cream);

  color: var(--home-dark-green);

  transform: translateY(-2px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

  .home-hero {
    min-height: 550px;
  }

  .home-hero-panel {
    left: 5vw;
    bottom: 5vh;

    width: clamp(300px, 35vw, 390px);
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .home-hero {
    height: 95vh;
    height: 95dvh;

    min-height: 560px;
  }


  .home-hero-image {
    object-position: center center;
  }


  .home-hero-panel {
    left: 20px;
    right: 20px;
    bottom: 25px;

    width: auto;

    padding: 28px 25px;
  }


  .home-hero-title {
    font-size: clamp(20px, 5.8vw, 27px);
  }


  .home-hero-btn {
    margin-top: 25px;

    min-height: 38px;

    font-size: 10px;
  }

}


/* ========================================
   INTRO APARTAMENTOS
======================================== */

.home-intro {
  position: relative;

  width: 100%;
  min-height: clamp(500px, 42vw, 700px);

  box-sizing: border-box;

  padding:
    clamp(65px, 6vw, 115px)
    clamp(55px, 6.2vw, 120px);

  display: grid;
  grid-template-columns: 58% 42%;

  overflow: hidden;

  /* Fondo sólido */
  background: #162D24;
}


/* ========================================
   TÍTULO
======================================== */

.home-intro-title {
  position: relative;
  z-index: 1;
}

.home-intro-title h2 {
  margin: 0;

  color: #F5E8D1;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(42px, 3.2vw, 78px);
  font-weight: 700;

  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home-intro::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    url("../img/luz-home.webp")
    center / cover
    no-repeat;

  opacity: 1;
  mix-blend-mode: multiply;
  
  pointer-events: none;

  z-index: 0;
}


/* ========================================
   INFORMACIÓN DERECHA
======================================== */

.home-intro-info {
  position: relative;
  z-index: 1;

  align-self: end;

  max-width: 520px;

  padding-bottom: clamp(15px, 2vw, 40px);
}

.home-intro-info p {
  margin: 0;

  color: #F5E8D1;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(11px, 0.8vw, 15px);
  font-weight: 400;

  line-height: 1.2;
}


/* ========================================
   BOTÓN
======================================== */

.home-intro-btn {
  margin-top: clamp(20px, 1.8vw, 30px);

  min-height: clamp(34px, 2.1vw, 42px);

  padding: 0 clamp(18px, 1.3vw, 26px);

  display: inline-flex;
  justify-content: center;
  align-items: center;

  box-sizing: border-box;

  border: 1px solid #3DAA35;
  border-radius: 999px;

  color: #3DAA35;

  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.65vw, 12px);
  font-weight: 400;

  white-space: nowrap;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.home-intro-btn:hover {
  background: #3DAA35;
  color: #162D24;

  transform: translateY(-2px);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .home-intro {
    min-height: auto;

    padding: 65px 20px;

    display: flex;
    flex-direction: column;

    background:
      radial-gradient(
        ellipse at 50% 105%,
        rgba(61, 170, 53, 0.18) 0%,
        rgba(61, 170, 53, 0.07) 35%,
        rgba(61, 170, 53, 0) 70%
      ),
      #162D24;
  }


  .home-intro-title h2 {
    font-size: clamp(34px, 10vw, 52px);
  }


  .home-intro-info {
    align-self: auto;

    max-width: 100%;

    margin-top: 70px;
    padding-bottom: 0;
  }


  .home-intro-info p {
    font-size: 12px;
    line-height: 1.3;
  }


  .home-intro-btn {
    margin-top: 25px;

    min-height: 38px;

    font-size: 9px;
  }

}


/* ========================================
   UBICACIÓN
======================================== */

.ubicacion-home {
  --ubicacion-side: clamp(35px, 3vw, 120px);

  position: relative;
  width: 100%;

  padding:
    clamp(40px, 4vw, 100px)
    0
    clamp(40px, 4vw, 120px);

  box-sizing: border-box;
  overflow: hidden;
  background: #162D24;
}


/* ========================================
   VIDEO DE FONDO
======================================== */

.ubicacion-video-bg {
  position: absolute;
  inset: 0;

  z-index: 0;

  overflow: hidden;
}


.ubicacion-bg-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  /* Flip horizontal */
  transform: scaleX(-1);
}


/* Capa opcional para integrar el video
   con los colores del proyecto */

.ubicacion-video-bg::after {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(22, 45, 36, 0.4);

  pointer-events: none;
}


/* ========================================
   CONTENIDO
======================================== */

.ubicacion-home-content {
  position: relative;

  z-index: 1;
}


/* ========================================
   TÍTULO
======================================== */

.ubicacion-home-title {
  margin:
    0
    var(--ubicacion-side)
    clamp(35px, 2vw, 75px);

  color: #F5E8D1;
  font-family: 'Montserrat', sans-serif;

  font-size: clamp(42px, 4vw, 78px);
  font-weight: 700;
  line-height: 1;

  text-align: right;
}

/* ========================================
   SLIDER
======================================== */

.ubicacion-slider {
  width: 100%;
  overflow: hidden;

  /* Necesario para swipe horizontal sin bloquear scroll vertical */
  touch-action: pan-y;

  cursor: grab;

  user-select: none;
}

.ubicacion-slider.is-dragging {
  cursor: grabbing;
}


.ubicacion-slider-track {
  display: flex;

  gap: clamp(28px, 3vw, 55px);

  /*
    El izquierdo puede seguir siendo más amplio.
    El derecho coincide exactamente con UBICACIÓN.
  */
  padding-left: clamp(55px, 6vw, 120px);
  padding-right: var(--ubicacion-side);

  box-sizing: border-box;

  transition:
    transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);

  will-change: transform;
}

.ubicacion-slider.is-dragging .ubicacion-slider-track {
  transition: none;
}


/* ========================================
   TARJETA
======================================== */

.ubicacion-card {
  flex:
    0
    0
    clamp(500px, 36vw, 760px);

  min-width: 0;

  aspect-ratio: 1.42 / 1;

  display: grid;

  grid-template-columns:
    minmax(0, 69%)
    minmax(0, 31%);

  box-sizing: border-box;

  padding: clamp(17px, 1.3vw, 26px);

  background: rgba(22, 45, 36, 0.94);

  color: #F5E8D1;
}


/* ========================================
   IMAGEN CUADRADA
======================================== */

.ubicacion-card-image {
  width: 100%;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  align-self: center;
}

.ubicacion-card img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}


.ubicacion-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.ubicacion-card:hover .ubicacion-card-image img {
  transform: scale(1.025);
}


/* ========================================
   INFORMACIÓN
======================================== */

.ubicacion-card-info {
  padding:
    clamp(20px, 2vw, 38px)
    clamp(12px, 1.6vw, 30px);

  display: flex;
  flex-direction: column;

  justify-content: flex-end;
  align-items: flex-start;

  box-sizing: border-box;
}


.ubicacion-card-icon {
  width: clamp(40px, 3.3vw, 62px);
  height: clamp(40px, 3.3vw, 62px);

  object-fit: contain;

  margin-bottom: clamp(28px, 3vw, 55px);
}


.ubicacion-card-info p {
  margin: 0;

  color: #F5E8D1;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(11px, 0.78vw, 15px);

  font-weight: 500;

  line-height: 1.13;

  text-transform: uppercase;
}


/* ========================================
   CONTROLES
======================================== */

.ubicacion-slider-controls {
  display: flex;

  justify-content: flex-end;

  gap: 10px;

  margin:
    clamp(25px, 2.5vw, 45px)
    clamp(55px, 6vw, 120px)
    0;
}


.ubicacion-arrow {
  width: 44px;
  height: 44px;

  padding: 0;

  border: 1px solid #F5E8D1;
  border-radius: 50%;

  background: transparent;

  color: #F5E8D1;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}


.ubicacion-arrow:hover {
  background: #F5E8D1;
  color: #162D24;
}

.ubicacion-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .ubicacion-home {
    --ubicacion-side: 20px;

    padding:
      55px
      0
      70px;
  }


  .ubicacion-video-bg::after {
 

  background: rgba(22, 45, 36, 0.18);

 
}

   .ubicacion-home-title {
    margin:
      0
      var(--ubicacion-side)
      35px;

    font-size: clamp(38px, 11vw, 55px);
    text-align: left;
  }


    .ubicacion-slider-track {
    gap: 18px;

    padding-left: var(--ubicacion-side);
    padding-right: var(--ubicacion-side);
  }


  .ubicacion-card {
    flex: 0 0 calc(100vw - 40px);

    aspect-ratio: auto;

    grid-template-columns: 1fr;

    padding: 15px;
  }


  .ubicacion-card-image {
    width: 100%;
  }


  .ubicacion-card-info {
    min-height: 150px;

    padding:
      22px
      8px
      8px;
  }


  .ubicacion-card-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 22px;
  }


  .ubicacion-card-info p {
    font-size: 12px;
  }


  .ubicacion-slider-controls {
    margin:
      25px
      20px
      0;
  }

}



/* ========================================
   VISTA AÉREA / MAPA
======================================== */

.ubicacion-interactiva {
  position: relative;

  width: 100%;

  /* Más horizontal en desktop */
  height: clamp(520px, 80svh, 760px);

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    clamp(105px, 12.5vw, 240px);

  background: #162D24;

  overflow: hidden;
}


/* ========================================
   IFRAME
======================================== */

.ubicacion-iframe-wrap {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background: #162D24;
}


.ubicacion-iframe-wrap iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;

  opacity: 1;

  transition:
    opacity 0.25s ease;
}


.ubicacion-iframe-wrap iframe.is-changing {
  opacity: 0;
}


/* ========================================
   TABS LATERALES
======================================== */

.ubicacion-tabs {
  width: 100%;
  height: 100%;

  display: grid;
  grid-template-rows: 1fr 1fr;

  background: #162D24;
}


/* ========================================
   TAB
======================================== */

.ubicacion-tab {
  position: relative;

  width: 100%;
  height: 100%;

  padding: 0;

  border: 0;

  background: rgba(245, 232, 209, 0.12);

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: clamp(20px, 2.2vh, 32px);

  cursor: pointer;

  transition:
    background-color 0.35s ease;
}


/* Línea divisoria */

.ubicacion-tab + .ubicacion-tab {
  border-top:
    1px solid rgba(245, 232, 209, 0.35);
}


/* ========================================
   ICONO
======================================== */

.ubicacion-tab img {
  width: clamp(27px, 2.2vw, 40px);
  height: clamp(27px, 2.2vw, 40px);

  object-fit: contain;

  opacity: 0.75;

  transition:
    opacity 0.3s ease,
    transform 0.35s ease;
}


/* ========================================
   TEXTO VERTICAL
======================================== */

.ubicacion-tab span {
  color: rgba(245, 232, 209, 0.72);

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(12px, 0.9vw, 16px);

  font-weight: 600;

  line-height: 1;

  writing-mode: vertical-rl;

  transform: rotate(180deg);

  white-space: nowrap;

  transition:
    color 0.3s ease;
}


/* ========================================
   ACTIVO
======================================== */

.ubicacion-tab.active {
  background: #162D24;
}


.ubicacion-tab.active span {
  color: #F5E8D1;
}


.ubicacion-tab.active img {
  opacity: 1;
}


/* ========================================
   HOVER
======================================== */

.ubicacion-tab:hover {
  background: rgba(22, 45, 36, 0.88);
}


.ubicacion-tab:hover span {
  color: #F5E8D1;
}


.ubicacion-tab:hover img {
  opacity: 1;

  transform: translateY(-2px);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .ubicacion-interactiva {
    height: auto;

    display: flex;
    flex-direction: column;
  }


  .ubicacion-iframe-wrap {
    height: 60dvh;
    min-height: 420px;
  }


  .ubicacion-tabs {
    height: 80px;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }


  .ubicacion-tab {
    flex-direction: row;

    gap: 10px;
  }


  .ubicacion-tab + .ubicacion-tab {
    border-top: 0;

    border-left:
      1px solid rgba(245, 232, 209, 0.12);
  }


  .ubicacion-tab img {
    width: 25px;
    height: 25px;
  }


  .ubicacion-tab span {
    writing-mode: horizontal-tb;

    transform: none;

    font-size: 12px;
  }

}



/* ========================================
   NOTA REGIOTRAM
======================================== */

.regiotram-note {
  width: 100%;
  box-sizing: border-box;

  padding:
    18px
    clamp(35px, 6vw, 120px);

  background: #162D24;

  border-top:
    1px solid rgba(245, 232, 209, 0.18);
}

.regiotram-note p {

  margin: 0;

  color: rgba(245, 232, 209, 0.65);

  font-family: "Montserrat", sans-serif;
  font-size: clamp(9px, 0.65vw, 12px);
  font-weight: 400;

  line-height: 1.45;
  text-align: center;
}

.regiotram-note strong {
  color: #F5E8D1;
  font-weight: 600;
}

@media (max-width: 768px) {

  .regiotram-note {
    padding: 16px 20px;
  }

  .regiotram-note p {
    font-size: 9px;
    line-height: 1.5;
  }

}



/* ========================================
   ZONAS COMUNES
======================================== */

.amenities-section {
  width: 100%;

  min-height: clamp(600px, 48vw, 850px);

  display: grid;
  grid-template-columns: 45% 55%;

  background: #F2E6D6;

  color: #162D24;

  overflow: hidden;
}


/* ========================================
   COLUMNA IZQUIERDA
======================================== */

.amenities-left {
  padding:
    clamp(55px, 5vw, 95px)
    clamp(45px, 4.5vw, 85px);

  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* ========================================
   NAVEGACIÓN
======================================== */

.amenities-nav {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: clamp(4px, 0.45vw, 9px);
}


.amenity-nav-item {
  position: relative;

  padding: 0;

  border: 0;

  background: transparent;

  color: #162D24;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(19px, 1.65vw, 32px);

  font-weight: 400;

  line-height: 1.15;

  text-align: left;

  cursor: pointer;

  transition:
    font-weight 0.2s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}


.amenity-nav-item:hover {
  transform: translateX(7px);
}


.amenity-nav-item.active {
  font-weight: 700;
}


/* ========================================
   TEXTO INFERIOR
======================================== */

.amenities-copy {
  width: 100%;

  max-width: 600px;
}


.amenities-line {
  width: 100%;
  height: 1px;

  margin-bottom: clamp(20px, 1.7vw, 30px);

  background: rgba(22, 45, 36, 0.55);
}


.amenities-copy h3 {
  margin:
    0
    0
    clamp(15px, 1.3vw, 24px);

  color: #162D24;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(16px, 1.25vw, 23px);

  font-weight: 500;
}


.amenities-copy p {
  margin: 0;

  max-width: 550px;

  color: #162D24;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(10px, 0.75vw, 14px);

  font-weight: 400;

  line-height: 1.25;
}


/* ========================================
   IMAGEN
======================================== */

.amenities-visual {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 600px;

  overflow: hidden;

  background: #162D24;
}


.amenities-visual > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  opacity: 1;

  transform: scale(1);

  transition:
    opacity 0.35s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.amenities-visual > img.is-changing {
  opacity: 0;

  transform: scale(1.015);
}


/* ========================================
   FLECHAS
======================================== */

.amenity-arrow {
  position: absolute;

  top: 50%;

  width: clamp(36px, 2.8vw, 48px);
  height: clamp(36px, 2.8vw, 48px);

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: #F2E6D6;

  color: #162D24;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 17px;

  cursor: pointer;

  transform: translateY(-50%);

  z-index: 2;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}


.amenity-prev {
  left: clamp(15px, 1.5vw, 28px);
}


.amenity-next {
  right: clamp(15px, 1.5vw, 28px);
}


.amenity-arrow:hover {
  transform:
    translateY(-50%)
    scale(1.08);
}


/* ========================================
   VER GALERÍA
======================================== */

.amenity-gallery-btn {
  position: absolute;

  left: 50%;
  bottom: clamp(25px, 3vw, 50px);

  transform: translateX(-50%);

  min-height: 42px;

  padding: 0 28px;

  border: 0;
  border-radius: 999px;

  background: #F2E6D6;

  color: #162D24;

  font-family: 'Montserrat', sans-serif;

  font-size: clamp(9px, 0.65vw, 12px);

  font-weight: 500;

  cursor: pointer;

  z-index: 2;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}


.amenity-gallery-btn:hover {
  transform:
    translateX(-50%)
    translateY(-2px);
}


/* ========================================
   MODAL GALERÍA
======================================== */

.amenity-gallery-modal {
  position: fixed;

  inset: 0;

  z-index: 30000;

  display: flex;

  justify-content: center;
  align-items: center;

  padding: clamp(50px, 6vw, 110px);

  box-sizing: border-box;

  background: rgba(15, 24, 19, 0.82);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s;
}


.amenity-gallery-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.45s ease,
    visibility 0s;
}


/* ========================================
   IMAGEN MODAL
======================================== */

.amenity-gallery-stage {
  position: relative;

  width: min(72vw, 1400px);
  height: min(82vh, 850px);

  overflow: hidden;

  background: #162D24;

  transform: scale(0.96);

  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}


.amenity-gallery-modal.active
.amenity-gallery-stage {
  transform: scale(1);
}


.amenity-gallery-stage img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    opacity 0.3s ease,
    transform 0.6s ease;
}


/* ========================================
   FLECHAS GALERÍA
======================================== */

.amenity-gallery-arrow {
  position: absolute;

  top: 50%;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: #F2E6D6;

  color: #162D24;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  transform: translateY(-50%);

  z-index: 2;
}


.amenity-gallery-prev {
  left: 20px;
}


.amenity-gallery-next {
  right: 20px;
}


/* ========================================
   CERRAR
======================================== */

.amenity-gallery-close {
  position: fixed;

  top: clamp(25px, 2.5vw, 45px);
  right: clamp(25px, 2.5vw, 45px);

  width: 50px;
  height: 50px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #F2E6D6;

  font-family: 'Montserrat', sans-serif;

  font-size: 42px;
  font-weight: 200;

  line-height: 1;

  cursor: pointer;

  z-index: 3;

  transition: transform 0.35s ease;
}


.amenity-gallery-close:hover {
  transform: rotate(90deg);
}


/* ========================================
   NOMBRE GALERÍA
======================================== */

.amenity-gallery-footer {
  position: fixed;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  color: #F2E6D6;

  font-family: 'Montserrat', sans-serif;

  font-size: 12px;

  letter-spacing: 0.04em;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .amenities-section {
    min-height: auto;

    display: flex;
    flex-direction: column;
  }


  .amenities-left {
    padding:
      50px
      20px
      40px;
  }


  .amenities-nav {
    gap: 6px;

    margin-bottom: 60px;
  }


  .amenity-nav-item {
    font-size: clamp(20px, 6vw, 28px);
  }


  .amenities-copy p {
    font-size: 12px;
  }


  .amenities-visual {
    height: 68dvh;

    min-height: 480px;
  }


  .amenity-gallery-modal {
    padding:
      70px
      20px;
  }


  .amenity-gallery-stage {
    width: 100%;
    height: 65dvh;
  }


  .amenity-gallery-prev {
    left: 10px;
  }


  .amenity-gallery-next {
    right: 10px;
  }

}

