/* =====/ Settings /===== */

:root {
  --window-height: calc((var(--vh, 1vh) * 100));
  --grid-column-width: calc((100vw - 13 * var(--gutter)) / 12);
  --gutter: 12px;
  --color-accent: #70cbd4;
  --header-logo-height: 40px;
  --header-height: calc(var(--header-logo-height) + 2 * var(--gutter));
  --button-font-size: 13px;
  --button-line-height: calc(1.125 * var(--button-font-size));
  --button-height: calc(var(--button-line-height) + 2 * var(--gutter) + 2px);
  --about-text-font-size: 18px;
  --about-text-line-height: calc(1.2 * var(--about-text-font-size));
  --infos-font-size: 14px;
  --infos-line-height: calc(1 * var(--infos-font-size));
  --room-title-font-size: 30px;
  --room-title-line-height: calc(1 * var(--room-title-font-size));
  --room-base-font-size: 16px;
  --room-base-line-height: calc(1.2 * var(--room-base-font-size));
  --room-know-more-font-size: 16px;
  --room-know-more-line-height: calc(1.2 * var(--room-know-more-font-size));
  --room-icon-base-height: 40px;
  --room-icon-font-size: 11px;
  --room-icon-line-height: calc(1.125 * var(--room-icon-font-size));
  --rooms-explore-header-height: calc(2 * var(--gutter) + 51.5px);
  --rooms-title-font-size: 15px;
  --rooms-title-line-height: calc(1 * var(--rooms-title-font-size));
  --icon-base-height: 28px;
  --icon-know-more-height: 12px;
}

@media screen and (min-width: 600px) {
  :root {
    --gutter: 16px;
    --button-font-size: 16px;
    --header-logo-height: 40px;
    --room-title-font-size: 30px;
    --room-base-font-size: 12px;
    --room-icon-font-size: 12px;
    --rooms-explore-header-height: calc(2 * var(--gutter) + 66px);
    --rooms-title-font-size: 18px;
  }
}

@media screen and (min-width: 900px) {
  :root {
    --button-font-size: 12px;
    --about-text-font-size: 24px;
    --infos-font-size: 16px;
    --room-icon-font-size: 10px;
    --rooms-title-font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --gutter: 20px;
    --button-font-size: 15px;
    --about-text-font-size: 22px;
    --infos-font-size: 16px;
    --room-title-font-size: 36px;
    --room-base-font-size: 14px;
    --room-icon-base-height: 3.125vw;
    --room-icon-font-size: 0.8vw;
    --rooms-title-font-size: 18px;
    --icon-base-height: clamp(28px, 3.125vw, 32px);
  }
}

@media screen and (min-width: 1400px) {
  :root {
    --button-font-size: 18px;
    --about-text-font-size: 28px;
    --infos-font-size: 16px;
    --room-base-font-size: 18px;
    --room-icon-font-size: 12px;
    --rooms-title-font-size: 22px;
  }
}

@media screen and (min-width: 1600px) {
  :root {
    --gutter: 24px;
    --button-font-size: 18px;
    --about-text-font-size: 28px;
    --infos-font-size: 16px;
    --room-base-font-size: 18px;
    --room-icon-font-size: 12px;
    --rooms-title-font-size: 22px;
  }
}

/* =====/ General /===== */

body {
  background-color: var(--color-accent);
  color: #fff;
  font-family: 'DM Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
}

img.ratio-4-3,
img.ratio-16-9 {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

img.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

img.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

img.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

/* =====/ Header /===== */

.site-header svg.logo path {
  fill: #fff;
}

.site-header__branding a {
  display: block;
}

.site-header svg.logo {
  display: block;
}

@media screen and (max-width: 899px) {
  .site-header {
    background-color: var(--color-accent);
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: calc(1 * var(--gutter));
    position: fixed;
    width: 100%;
  }

  .site-header svg.logo {
    height: var(--header-logo-height);
    width: auto;
  }

  .site-header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 900px) {
  .site-header button.hamburger {
    display: none;
  }

  .site-header {
    background-color: var(--color-accent);
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: calc(1 * var(--gutter));
    position: fixed;
    width: 100%;
    z-index: 1;
  }

  .site-header svg.logo {
    height: var(--header-logo-height);
    width: auto;
  }
}

/* =====/ Menu /===== */

@media screen and (max-width: 899px) {
  .site-header {
    z-index: 4;
  }

  .site-menu--desktop {
    display: none;
  }

  .site-menu--mobile {
    background-color: var(--color-accent);
    display: flex;
    flex-direction: column-reverse;
    gap: calc(1 * var(--gutter));
    height: calc((var(--vh, 1vh) * 100) - var(--header-height));
    justify-content: space-between;
    left: 0;
    padding: var(--gutter);
    position: fixed;
    transform: translateY(100%);
    transition: 0.625s transform;
    top: 0;
    width: 100%;
    z-index: 3;
  }

  .site-menu--mobile,
  .site-menu--mobile .site-menu__list a {
    color: #fff;
  }

  .menu-is-open .site-menu--mobile {
    transform: translateY(0);
  }

  .site-menu__cta ul {
    display: grid;
    gap: calc(0.5 * var(--gutter));
    grid-template-columns: 1fr 1fr;
  }

  .site-menu__list {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: calc(2.5 * var(--gutter));
    height: 100%;
    justify-content: center;
  }

  .site-menu__list a {
    display: block;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    width: fit-content;
  }

  .site-menu__list a span {
    display: block;
  }

  .site-menu--mobile .site-menu__cta,
  .site-menu--mobile .site-menu__list li {
    opacity: 0;
    transform: translateY(50%);
    transition: 0.625s opacity, 0.625s transform;
  }

  .menu-is-open .site-menu--mobile .site-menu__cta,
  .menu-is-open .site-menu--mobile .site-menu__list li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-is-open .site-menu--mobile .site-menu__cta {
    transition-delay: 0.5s;
  }

  .menu-is-open .site-menu--mobile .site-menu__list li {
    transition-delay: 0.25s;
  }
}

@media screen and (min-width: 900px) {
  .site-menu--mobile,
  .site-menu__cta {
    display: none;
  }

  .site-menu__list {
    align-items: center;
    display: flex;
    gap: calc(4 * var(--gutter));
    height: 100%;
  }

  .site-menu__list a {
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
  }
}

/* =====/ Hamburger / Customized /===== */

.hamburger {
  padding: 0;
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 1;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  height: 6px;
  border-radius: 0px;
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #fff;
}

/* =====/ Buttons /===== */

.button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: calc(4 * var(--gutter));
  color: #fff;
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 600;
  line-height: var(--button-line-height);
  padding: calc(1.25 * var(--gutter)) calc(2 * var(--gutter));
  text-align: center;
  text-transform: uppercase;
  transition: 0.325s all;
}

.button--full {
  display: block;
  width: 100%;
}

.button--selected {
  background-color: var(--color-accent);
  background-color: #fff;
  border-color: var(--color-accent);
  color: #fff;
  color: var(--color-accent);
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  .button {
    cursor: pointer;
    padding: calc(1 * var(--gutter));
  }

  .button:hover {
    background-color: #fff;
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
}

/* =====/ Home /===== */

.home__hero h1 {
  display: none;
}

.home__hero {
  height: calc((var(--vh, 1vh) * 100) - var(--header-height));
  position: relative;
}

.home__hero picture,
.home__hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home__infos {
  display: none;
}

.home__slider .swiper-button-next:after,
.home__slider .swiper-rtl .swiper-button-prev:after,
.home__slider .swiper-button-prev:after,
.home__slider .swiper-rtl .swiper-button-next:after {
  display: none;
}

.home__slider {
  --swiper-navigation-sides-offset: var(--gutter);
}

.home__slider .swiper-button-next svg {
  transform: rotate(180deg);
}

.home__cta,
.home__slider {
  user-select: none;
}

.home__slider .swiper-slide picture,
.home__slider .swiper-slide img,
.home__slider .swiper-slide video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home__slider,
.home__slider .swiper,
.home__slider .swiper-wrapper,
.home__slider .swiper-slide {
  height: 100%;
}

.home__cta,
.home__content,
.home__infos {
  z-index: 2;
}

.home__slider .desktop {
  display: none !important;
}

@media screen and (max-width: 899px) {
  .home__cta {
    left: var(--gutter);
    position: fixed;
    top: var(--gutter);
    width: calc(100% - 2 * var(--gutter));
  }

  .home__cta ul {
    display: grid;
    gap: calc(0.5 * var(--gutter));
    grid-template-columns: 1fr 1fr;
  }

  .home__content {
    bottom: calc(1 * var(--gutter));
    font-size: 26px;
    left: var(--gutter);
    line-height: 1.125;
    pointer-events: none;
    position: absolute;
    touch-action: none;
    width: calc(100% - 2 * var(--gutter));
  }
}

@media screen and (min-width: 900px) {
  .home__cta {
    left: var(--gutter);
    position: fixed;
    top: var(--gutter);
    width: 360px;
  }

  .home__cta ul {
    display: grid;
    gap: calc(1 * var(--gutter));
    grid-template-columns: 1fr 1fr;
  }

  .home__content {
    font-size: 32px;
    line-height: 1.125;
    position: absolute;
    right: var(--gutter);
    top: var(--gutter);
    width: calc(60%);
  }

  .home__infos {
    bottom: var(--gutter);
    display: block;
    left: var(--gutter);
    position: absolute;
  }

  .home__slider .desktop {
    display: block !important;
  }

  .home__slider .mobile {
    display: none !important;
  }
}

/* =====/ Pages /===== */

.page__header {
  padding: var(--gutter);
}

/* =====/ Infos /===== */

.infos,
.infos p {
  font-size: var(--infos-font-size);
  font-weight: 500;
  line-height: var(--infos-line-height);
  text-transform: uppercase;
}

.infos {
  margin-top: calc(1 * var(--infos-line-height));
}

.infos p:not(:last-child) {
  margin-bottom: calc(1 * var(--infos-line-height));
}

@media screen and (min-width: 900px) {
  .infos {
    margin-top: calc(1 * var(--gutter));
  }

  .infos p:not(:last-child) {
    margin-bottom: calc(1 * var(--gutter));
  }
}

/* =====/ About /===== */

.about__header {
  display: none;
}

.about__content,
.about__content p {
  font-size: var(--about-text-font-size);
  font-weight: 500;
  line-height: var(--about-text-line-height);
}

.about__content p:not(:last-child) {
  margin-bottom: var(--about-text-line-height);
}

.about__main {
  padding: var(--gutter);
}

.about__map-container {
  background-color: #fff;
}

.about__map-container iframe {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .about__main {
    padding-bottom: calc(var(--gutter) + var(--header-height));
  }

  .page-about .page__header {
    display: flex;
    justify-content: flex-end;
  }

  .about__map {
    border-top: 1px solid #fff;
    margin-top: calc(2 * var(--gutter));
    padding-top: calc(2 * var(--gutter));
  }

  .about__map-container {
    border-radius: calc(2 * var(--gutter));
    overflow: hidden;
  }

  .about__map-container,
  .about__map-container iframe {
    aspect-ratio: 21 / 9;
    display: block;
  }

  .about__aside .about__cta {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .about__main {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(12, 1fr);
  }

  .about__aside {
    grid-column: 1 / span 4;
    grid-row: 1;
  }

  .about__content {
    grid-column: 6 / span 7;
    grid-row: 1;
  }

  .about__map {
    margin-top: calc(1 * var(--gutter));
  }

  .about__cta {
    display: flex;
    justify-content: flex-end;
  }

  .about__map-container {
    border-radius: calc(2 * var(--gutter));
    overflow: hidden;
  }

  .about__map-container,
  .about__map-container iframe {
    aspect-ratio: 7 / 6;
    display: block;
  }

  .page__header {
    display: none;
  }

  .about__content,
  .about__content p {
    font-weight: 600;
  }
}

/* =====/ Room /===== */

.room__back-link {
  padding: var(--gutter);
}

.room__back-link svg {
  display: block;
  height: var(--icon-base-height);
  width: auto;
}

.room-feature {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(0.75 * var(--gutter));
}

.room-feature__icon {
  align-items: center;
  display: flex;
  height: var(--room-icon-base-height);
}

.room-feature svg {
}

.room-feature__text {
  font-size: var(--room-icon-font-size);
  line-height: var(--room-icon-line-height);
  text-align: center;
  text-transform: uppercase;
}

.room__splash,
.room__title,
.room__know-more,
.room__expand {
  cursor: pointer;
}

.room__splash {
  height: calc((var(--vh, 1vh) * 100) - var(--header-height));
  position: relative;
}

.room__splash button {
  height: 100%;
  width: 100%;
}

.room__splash-image {
  display: block;
  height: calc((var(--vh, 1vh) * 100) - var(--header-height));
  width: 100%;
}

.room__splash-image,
.room__splash-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room__splash-image video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room__header {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.25s;
  width: 100%;
  z-index: 1;
}

.room__title {
  font-size: var(--room-title-font-size);
  line-height: var(--room-title-line-height);
  text-transform: uppercase;
}

.room__know-more {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: var(--room-know-more-font-size);
  gap: calc(0.75 * var(--gutter));
  line-height: var(--room-know-more-line-height);
  position: absolute;
  right: var(--gutter);
  text-transform: uppercase;
  top: calc(42px + 0.5 * var(--gutter));
}

.room__know-more svg {
  transform: rotate(-90deg);
  height: var(--icon-know-more-height);
  width: auto;
}

.room__photos img {
  display: block;
}

.room__description,
.room__features h2 {
  font-size: var(--room-base-font-size);
  line-height: var(--room-base-line-height);
}

.room__description p:not(:last-child) {
  margin-bottom: var(--room-base-line-height);
}

.room__features h2 {
  font-weight: 700;
  margin-bottom: calc(1 * var(--gutter));
}

.room__title,
.room__splash,
.room__expand {
  user-select: none;
}

.page-room--hide-title .room__header {
  opacity: 0;
}

@media screen and (max-width: 900px) {
  .room__title {
    padding-right: var(--gutter);
  }

  .room__main {
    padding: calc(2 * var(--gutter)) var(--gutter)
      calc(var(--header-height) + var(--gutter));
  }

  .room__description,
  .room__features,
  .room__photos {
    margin-bottom: calc(2 * var(--gutter));
  }

  .room__features ul {
    display: grid;
    gap: 8px 0;
    grid-template-columns: repeat(4, 1fr);
  }

  .room__cta {
  }

  .room__cta ul {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: 1fr 1fr;
  }

  .room__cta .button {
    width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .room__main {
    --room-cta-height: 86px;
  }

  .room__main {
    display: grid;
    gap: calc(2 * var(--gutter)) var(--gutter);
    grid-template-areas:
      'c c c c x p p p p p p p'
      'cta cta cta cta cta cta cta cta cta cta cta cta';
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows:
      calc(
        var(--window-height) - var(--header-height) - 4 * var(--gutter) -
          var(--room-cta-height)
      )
      var(--room-cta-height);
    height: var(--window-height);
    padding: var(--gutter) var(--gutter)
      calc(var(--header-height) + var(--gutter));
  }

  .room__header {
    padding-bottom: 0;
    transition: opacity 0.25s;
    width: calc(4 * var(--gutter) + 4 * var(--grid-column-width));
  }

  .room__know-more {
    justify-content: flex-end;
    left: 0;
    right: auto;
    width: calc(4 * var(--gutter) + 4 * var(--grid-column-width));
    top: calc(42px + 0.625 * var(--gutter));
    z-index: 2;
  }

  .room__content {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--gutter));
    grid-area: c;
    justify-content: space-between;
  }

  .room__description {
    overflow: hidden;
  }

  .room__description-scroll {
    height: 100%;
    overflow: auto;
  }

  .room__features h2 {
    font-size: calc(1.125 * var(--room-base-font-size));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: calc(1 * var(--gutter));
  }

  .room__photos {
    grid-area: p;
  }

  .room__features ul {
    display: grid;
    gap: 12px 0;
    grid-template-columns: repeat(5, 1fr);
  }

  .room__cta {
    display: grid;
    gap: var(--gutter);
    grid-area: cta;
    grid-template-columns: repeat(12, 1fr);
    height: var(--room-cta-height);
  }

  .room__cta ul {
    display: grid;
    gap: var(--gutter);
    grid-column: 1 / span 4;
    grid-template-columns: 1fr 1fr;
  }

  .room__cta .button {
    width: 100%;
  }

  .room__photos img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}

@media screen and (min-width: 1400px) {
}

/* =====/ Room feature /===== */

.room-feature svg {
  --svg-base-height: var(--room-icon-base-height);
  display: block;
  width: auto;
}

.room-feature .tv {
  height: calc(0.8125 * var(--svg-base-height));
}

.room-feature .bath-tv {
  height: calc(1.1875 * var(--svg-base-height));
}

.room-feature .bed {
  height: calc(0.625 * var(--svg-base-height));
}

.room-feature .fridge {
  height: calc(1 * var(--svg-base-height));
}

.room-feature .erotic-products {
  height: calc(0.9375 * var(--svg-base-height));
}

.room-feature .tub {
  height: calc(0.8125 * var(--svg-base-height));
}

.room-feature .interactive-box {
  height: calc(1 * var(--svg-base-height));
}

.room-feature .control-panel {
  height: calc(1 * var(--svg-base-height));
}

.room-feature .hair-drier {
  height: calc(0.8125 * var(--svg-base-height));
}

.room-feature .vanity-table {
  height: calc(0.8125 * var(--svg-base-height));
}

.room-feature .sunroof {
  height: calc(0.5 * var(--svg-base-height));
}

.room-feature .interactive-window {
  height: calc(1 * var(--svg-base-height));
}

.room-feature .private-garage {
  height: calc(0.875 * var(--svg-base-height));
  opacity: 0.925;
}

.room-feature .collective-garage {
  height: calc(0.875 * var(--svg-base-height));
  opacity: 0.925;
}

.room-feature .bar {
  height: calc(1 * var(--svg-base-height));
}

.room-feature .elevator {
  height: calc(0.875 * var(--svg-base-height));
  opacity: 0.875;
}

.room-feature .lounge {
  height: calc(1 * var(--svg-base-height));
}

/* =====/ Rooms / Categories / Experiences /===== */

.page-rooms h1 {
  display: none;
}

.rooms-list {
  opacity: 1;
  transition: 0.325s opacity;
}

.rooms-list--fade-out {
  opacity: 0;
}

.rooms-list-item {
  display: flex;
  flex-direction: column;
  gap: calc(0.5 * var(--gutter));
}

.rooms-list-item__image,
.rooms-list-item__image picture,
.rooms-list-item__image img {
  display: block;
}

.rooms-list-item__image img {
  border-radius: calc(2 * var(--gutter));
}

.rooms-list-item__text {
  display: flex;
  font-size: var(--rooms-title-font-size);
  justify-content: space-between;
  line-height: var(--rooms-title-line-height);
}

.rooms-list-item__name {
  font-weight: 600;
  text-transform: uppercase;
}

.rooms-list-item__featured-image {
  display: none;
}

.room-category {
  color: #fff;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .rooms-explore {
    height: calc((var(--vh, 1vh) * 100) - var(--header-height));
    padding: var(--gutter);
    position: fixed;
    inset: 0;
    z-index: 0;
  }

  .rooms-explore__header {
    margin-bottom: calc(2 * var(--gutter));
  }

  .rooms-explore__header,
  .room-category {
    align-items: center;
    display: grid;
    gap: calc(0.5 * var(--gutter));
    grid-template-columns: 1fr 1fr;
  }

  .room-category__name {
    display: block;
  }

  .room-category__short-description {
    font-size: 13px;
    line-height: 1.125;
  }

  .rooms-explore__categories ul {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--gutter));
  }

  .rooms-explore__categories .button--selected {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
  }

  .rooms-list-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: var(--gutter) var(--gutter) calc(2 * var(--gutter));
  }

  .rooms-list-header-back-button,
  .rooms-list-header-back-button svg {
    display: block;
    height: var(--icon-base-height);
    width: auto;
  }

  .rooms-list-header-title {
    font-size: var(--room-title-font-size);
    line-height: var(--room-title-line-height);
    text-transform: uppercase;
  }

  .rooms-list--all .rooms-list-header {
    display: none;
  }

  .rooms-list {
    background-color: var(--color-accent);
    height: calc((var(--vh, 1vh) * 100) - var(--header-height));
    left: 0;
    position: absolute;
    overflow: hidden;
    top: 0;
    transform: translateX(-100%);
    transition: 0.625s transform;
    width: 100%;
    z-index: 1;
  }

  .rooms-list-scroll {
    height: 100%;
    overflow-y: auto;
    padding-bottom: calc(68px);
  }

  .rooms-list--all .rooms-list-scroll {
    padding-bottom: 0;
  }

  .rooms-list--all .rooms-list-scroll {
    padding-top: var(--gutter);
  }

  .rooms-list ul {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--gutter));
    justify-content: center;
    overflow-y: auto;
    padding: 0 var(--gutter) var(--gutter);
  }

  .page-rooms--list-is-active .rooms-list {
    transform: translateX(0);
  }
}

@media screen and (min-width: 900px) {
  .page-rooms .site-main {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(12, 1fr);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    padding: var(--gutter);
  }

  .rooms-explore {
    grid-column: 1 / span 4;
    transition: 0.325s opacity;
  }

  .rooms-list {
    grid-column: 6 / span 7;
  }

  .rooms-explore__header {
    margin-bottom: calc(2 * var(--gutter));
  }

  .rooms-explore__header,
  .room-category {
    align-items: center;
    display: grid;
    gap: calc(0.5 * var(--gutter));
    grid-template-columns: 1fr 1fr;
  }

  .rooms-explore__categories ul {
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--gutter));
  }

  .rooms-list-header {
    display: none;
  }

  .rooms-list {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(2, 1fr);
    height: calc(100vh - 1 * var(--gutter) - var(--header-height));
  }

  .rooms-list ul {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--gutter));
  }

  .rooms-list-scroll {
    height: 100%;
    overflow-y: auto;
    padding-bottom: var(--gutter);
  }

  .rooms-explore__categories {
    opacity: 1;
    transition: 0.325s opacity;
  }

  .page-rooms--list-is-active .rooms-explore__categories {
    opacity: 0;
  }

  .rooms-list-item__featured-image {
    bottom: var(--header-height);
    display: block;
    left: var(--gutter);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: var(--gutter);
    transition: 0.325s opacity;
    width: calc(4 * var(--grid-column-width) + 3 * var(--gutter));
  }

  .rooms-list-item__featured-image picture,
  .rooms-list-item__featured-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .rooms-list-item__featured-image img {
    border-radius: 0 calc(2 * var(--gutter)) 0 0;
  }

  .rooms-list-item--hovered .rooms-list-item__featured-image {
    opacity: 1;
  }

  .page-rooms--room-is-hovered .rooms-explore {
    opacity: 0;
  }

  /*
  .rooms-list-selected-category-description {
    background-color: #fff;
    border-radius: 16px;
    color: var(--color-accent);
    height: fit-content;
    padding: var(--gutter);
  }
  */

  .rooms-list-selected-category-description,
  .rooms-list-selected-category-description h2,
  .rooms-list-selected-category-description h3,
  .rooms-list-selected-category-description h4,
  .rooms-list-selected-category-description h5,
  .rooms-list-selected-category-description h6 {
    font-size: var(--rooms-title-font-size);
    line-height: 1.25;
  }

  .rooms-list-selected-category-description h2,
  .rooms-list-selected-category-description h3,
  .rooms-list-selected-category-description h4,
  .rooms-list-selected-category-description h5,
  .rooms-list-selected-category-description h6 {
    font-weight: 600;
  }

  .rooms-list-selected-category-description > * + * {
    margin-top: var(--room-base-line-height);
  }
}

/* =====/ Room / Photos panel /===== */

.room-photos-panel {
  display: grid;
  gap: calc(1 * var(--gutter));
  grid-template-columns: 4fr 1fr;
  position: relative;
}

.room-photos-panel img,
.room-photos-panel__explorer a {
  display: block;
  height: auto;
}

.room-photos-panel__featured {
  height: fit-content;
}

.room-photos-panel__featured img {
  border-radius: calc(2 * var(--gutter));
  width: 100%;
}

.room-photos-panel,
.room-photos-panel__explorer {
  overflow: hidden;
}

.room-photos-panel__explorer .scroll {
  height: 100%;
  overflow-y: auto;
}

@media screen and (max-width: 899px) {
  .room-photos-panel__explorer {
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: calc((100% - var(--gutter)) / 5);
  }
}

@media screen and (min-width: 900px) {
  .room-photos-panel {
    grid-template-columns: 7fr 1fr;
  }

  .room-photos-panel__explorer {
    bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: calc((100% - var(--gutter)) / 8);
  }
}

/* =====/ Services /===== */

.page-como-funciona {
  --border-radius: calc(1.5 * var(--gutter));
  --close-button-width: 16px;
  --content-font-size: 16px;
}

.page-como-funciona h1 {
  display: none;
}

.services__video-box-close-button svg.close g {
  fill: var(--color-accent);
}

.services__cta ul {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr 1fr;
}

.services__video {
  display: none;
}

.services__video-box {
  background-color: #eef7f9;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 100%;
  position: relative;
}

.services__video-box-close-button {
  position: absolute;
  right: var(--gutter);
  top: var(--gutter);
}

.services__video-box-close-button svg {
  display: block;
  height: auto;
  width: var(--close-button-width);
}

.services__video-details {
  color: var(--color-accent);
  text-align: center;
  text-transform: uppercase;
}

.services__content p {
  font-size: var(--content-font-size, 16px);
  font-weight: 600;
  line-height: calc(1.1875 * var(--content-font-size));
}

.services__content p:not(:last-child) {
  margin-bottom: calc(1.1875 * var(--content-font-size));
}

.services__content a {
  text-decoration: underline;
}

@media screen and (max-width: 899px) {
  .page-como-funciona {
    --border-radius: calc(1.5 * var(--gutter));
    --close-button-width: 16px;
    --video-details-height: calc(5 * (11px * 1.125));
    --cta-height: calc(2 * var(--gutter) + var(--button-height));
    --content-font-size: 16px;
  }

  .page-como-funciona .page-header {
    background-color: var(--color-accent);
    position: fixed;
    top: 0;
    width: 100%;
  }

  .services__cta,
  .services__video,
  .services__content {
    padding: var(--gutter);
  }

  .services__main {
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
    padding: var(--cta-height) 0;
  }

  .services__content {
    order: 1;
    padding-bottom: 0;
  }

  .services__image {
    order: 2;
    padding: 0 var(--gutter) var(--gutter);
    width: 100%;
  }

  .services__image img {
    display: block;
    border-radius: var(--border-radius);
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .services__video {
    height: calc(
      var(--window-height) - var(--cta-height) - var(--header-height)
    );
  }

  .services__video video {
    display: block;
    height: calc(100% - var(--gutter) - var(--video-details-height));
    object-fit: cover;
    width: calc(100% - 2 * var(--gutter) - var(--close-button-width));
  }

  .services__video-box video {
    border-radius: var(--border-radius);
    height: calc(100% - 2 * var(--gutter) - var(--video-details-height));
  }

  .services__video-details {
    color: var(--color-accent);
    font-size: 11px;
    line-height: calc(11px * 1.125);
    margin-top: var(--gutter);
    text-align: center;
    text-transform: uppercase;
  }

  .services__video-details p:not(:last-child) {
    margin-bottom: calc(11px * 1.125);
  }

  .services__video {
    position: fixed;
    top: var(--cta-height);
    transition: 0.625s transform;
  }

  .services-video-is-closed .services__video {
    transform: translateY(100%);
  }

  .services__content .scroll {
  }
}

@media screen and (min-width: 900px) {
  .page-como-funciona {
    --cta-height: 64.5px;
    --close-button-width: 24px;
    --content-font-size: 28px;
  }

  .services__main {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(12, 1fr);
    padding: var(--gutter);
    position: relative;
  }

  .services__video {
    bottom: var(--header-height);
    left: 0;
    position: fixed;
    top: 0;
    transition: 0.625s transform;
    width: calc(5 * var(--grid-column-width) + 5 * var(--gutter));
  }

  .services__image {
    height: calc(100% - var(--button-height) - var(--gutter));
    left: var(--gutter);
    overflow: hidden;
    position: fixed;
    top: calc(2 * var(--gutter) + var(--button-height));
    width: calc(4 * var(--grid-column-width) + 3 * var(--gutter));
  }

  .services__image picture,
  .services__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .services__image img {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .services__content {
    grid-column: 6 / span 7;
    grid-row: 1;
  }

  .services__video-box {
    border-radius: 0 var(--border-radius) 0 0;
    display: grid;
    gap: var(--gutter);
    grid-template-columns: 3fr 1fr;
    padding: var(--gutter);
  }

  .services__video-box video {
    border-radius: 4px;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .services__video-box-close-button {
    cursor: pointer;
    position: absolute;
    right: var(--gutter);
    top: var(--gutter);
  }

  .page-como-funciona .page-header {
    left: var(--gutter);
    position: fixed;
    top: var(--gutter);
    width: calc(4 * var(--grid-column-width) + 3 * var(--gutter));
    z-index: 1;
  }

  .services__video-details {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    justify-content: center;
    line-height: calc(1.125 * 13px);
  }

  .services__video-details p {
    font-weight: 500;
  }

  .services__video-details p:not(:last-child) {
    margin-bottom: calc(1.125 * 13px);
  }

  .services-video-is-closed .services__video {
    transform: translateX(-100%);
  }
}

/* =====/ SimpleLightbox /===== */

.sl-wrapper {
  background-color: var(--color-accent);
}

.sl-wrapper svg.close g,
.sl-wrapper svg.left-arrow g {
  fill: #fff;
}

.sl-next svg.left-arrow {
  transform: rotate(180deg);
}

body .sl-wrapper button:hover {
  opacity: 1;
}

body .sl-wrapper .sl-close {
  height: fit-content;
  left: 0;
  line-height: var(--icon-base-height);
  margin-top: 0;
  margin-right: 0;
  padding: var(--gutter);
  right: auto;
  top: 0;
  width: fit-content;
}

body .sl-wrapper .sl-close svg,
body .sl-navigation svg {
  height: var(--icon-base-height);
  width: auto;
}

body .sl-wrapper .sl-navigation {
  left: auto;
  position: absolute;
  right: var(--gutter);
  top: var(--gutter);
}

body .sl-wrapper .sl-navigation button {
  height: fit-content;
  margin: 0;
  padding: var(--gutter);
  top: 0;
  width: fit-content;
}

body .sl-wrapper .sl-navigation button svg {
  height: var(--icon-base-height);
  width: fit-content;
}

body .sl-wrapper .sl-navigation button.sl-next {
  right: 0;
}

body .sl-wrapper .sl-navigation button.sl-prev {
  left: auto;
  right: calc(2 * var(--gutter) + 18px);
}

body .sl-wrapper .sl-room-title {
  font-size: calc(0.75 * var(--room-base-font-size));
  font-weight: 600;
  left: var(--gutter);
  position: absolute;
  top: var(--gutter);
  text-transform: uppercase;
}

body .sl-wrapper .sl-site-logo {
  display: none;
}

body .sl-wrapper .sl-image img {
  border-radius: var(--gutter);
}

@media screen and (min-width: 600px) {
  body .sl-wrapper .sl-room-title {
    font-size: var(--room-base-font-size);
  }
}

/* =====/ Modal /===== */

.nuu-modal {
  background-color: #fff;
  border-radius: calc(2 * var(--gutter)) 0 0 0;
  color: var(--color-accent);
  bottom: var(--header-height);
  padding: var(--gutter) var(--gutter) 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  transform: translateX(100%);
  transition: 0.625s transform;
  top: 0;
  width: 87.5%;
  z-index: 2;
}

body.nuu-modal-is-open {
  height: var(--window-height);
  overflow: hidden;
}

body.nuu-modal-is-open .nuu-modal {
  transform: translateX(0);
}

body.nuu-modal-is-open .nuu-modal-overlay {
  height: var(--window-height);
  inset: 0;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  z-index: 0;
}

.nuu-modal__close {
  display: flex;
  justify-content: flex-end;
  padding-bottom: var(--gutter);
}

.nuu-modal__close button {
  cursor: pointer;
}

.nuu-modal__close svg {
  height: var(--icon-base-height);
}

.nuu-modal__content {
  font-size: var(--room-base-font-size);
  line-height: var(--room-base-line-height);
  height: 100%;
  overflow-y: auto;
  padding-bottom: calc(2 * var(--gutter) + var(--icon-base-height));
}

.nuu-modal__content > * + * {
  margin-top: var(--room-base-line-height);
}

@media screen and (min-width: 600px) {
  .nuu-modal {
    width: 50%;
  }
}

@media screen and (min-width: 900px) {
  .nuu-modal {
    width: calc(2 * var(--gutter) + 37.5ch);
  }

  .nuu-modal__content {
    padding-bottom: calc(2 * var(--gutter) + var(--icon-base-height));
  }
}

/* =====/ Scrollbar /===== */

::-webkit-scrollbar {
  display: none;
}
