/*
Theme Name: Klevie
Theme URI:
Author: Klevie
Author URI: https://klevie.com/
Description: Tailor-made by Klevie
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* GENERAL */
:root {
  --green: #8FB5A7;
  --beige: #FDF1E7;
  --text-dark: #605C55;
  --text-green: #85AF9A;
  --text-white: #F8FFFB;
  --bg-beige: #FFFBF8;
  --container: 1200px;
  --gutter-half: calc((100vw - var(--container)) / 2);
  --limit: 1680px;
  --book: 'Avenir Book', sans-serif;
  --oblique: 'Avenir Oblique', sans-serif;
  --modern: 'Modern Deluxe', sans-serif;
}

@font-face {
  font-family: 'Avenir Book';
  src: url(./assets/fonts/Avenir_Book.woff2) format('woff2'),
       url(./assets/fonts/Avenir_Book.woff) format('woff'),
        url(./assets/fonts/Avenir_Book.ttf) format('truetype');
  font-style: normal;
}
@font-face {
  font-family: 'Avenir Oblique';
  src: url(./assets/fonts/Avenir-BookOblique.woff2) format('woff2'),
       url(./assets/fonts/Avenir-BookOblique.woff) format('woff'),
        url(./assets/fonts/Avenir-BookOblique.ttf) format('truetype');
  font-style: italic;
}
@font-face {
  font-family: 'Modern Deluxe';
  src: url(./assets/fonts/ModernDeluxe.woff2) format('woff2'),
       url(./assets/fonts/ModernDeluxe.woff) format('woff'),
        url(./assets/fonts/ModernDeluxe.otf) format('opentype');
  font-style: normal;
}

*, *::before, *::after {box-sizing: border-box;}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-beige);
  scroll-padding-top: 144px!important;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

h1 {
  font-size: 1px;
  position: absolute;
  left: -9999px;
  top: -9999px;
  pointer-events: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header .top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 54px;
  justify-content: space-between;
  transition: background-color 0.35s ease-out;
}
header .top .logo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 180 / 23;
  object-fit: contain;
}
header .top a.lang-toggle__link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--modern);
  font-size: 10px;
  color: var(--text-white);
  background-color: transparent;
  border: 1px solid var(--text-white);
  padding: 8px 16px;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
  justify-self: flex-start;
  color: var(--text-white);
  text-decoration: none;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
header .top a.lang-toggle__link:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}
header .top .booking {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--modern);
  font-size: 10px;
  color: var(--text-white);
  background-color: transparent;
  border: 1px solid var(--text-white);
  padding: 8px 16px;
  text-decoration: none;
  width: fit-content;
  justify-self: flex-end;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
header .top .booking img {
  transition: filter 0.35s ease-out;
}
header .top .booking:hover img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
}
header .top .booking:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}
header .bottom {
  padding: 16px 0;
  transition: background-color 0.35s ease-out;
}
header .top {
  background-color: var(--green);
}
header .bottom {
  background-color: var(--beige);
}
header .bottom ul {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 0;
  margin: 0;
}
header .bottom ul li {
  list-style: none;
}
header .bottom ul li:hover a {
  color: var(--text-green);
}
header .bottom ul li a {
  font-family: var(--book);
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1;
  transition: color 0.35s ease-out;
}
header .header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: flex-end;
}
header .menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid var(--text-white);
  background-color: transparent;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}
header .menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-white);
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}
header .menu-toggle span + span {
  margin-top: 6px;
}
header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header .mobile-booking {
  display: none;
}
@media (max-width: 1023px) {
  header .top {
    grid-template-columns: 1fr auto 1fr;
    padding: 16px 24px;
  }
  header .top .empty-space {
    display: block;
  }
  header .top>a.logo {
    width: 180px;
    max-width: 42vw;
  }
  header .top>a.logo img {
    width: 100%;
  }
  header .top .booking {
    display: none;
  }
  header .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .bottom {
    position: fixed;
    left: 0;
    top: 56px;
    width: 100%;
    height: calc(100vh - 56px);
    background-color: var(--beige);
    padding: 52px 24px 40px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s ease-out, opacity 0.35s ease-out, visibility 0s linear 0.45s;
    overflow-y: auto;
    z-index: 9998;
  }
  header.menu-open .bottom {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.45s ease-out, opacity 0.35s ease-out, visibility 0s linear 0s;
  }
  header .bottom ul {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  header .bottom ul li a {
    font-family: var(--modern);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dark);
  }
  header .mobile-booking {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px auto 0;
    font-family: var(--modern);
    font-size: 12px;
    color: var(--text-white);
    background-color: var(--green);
    border: 1px solid var(--green);
    padding: 12px 22px;
    text-decoration: none;
    text-transform: uppercase;
  }
  header .mobile-booking img {
    filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 540px) {
  header .top {
    padding: 14px 18px;
  }
  header .top>a.logo {
    max-width: 48vw;
  }
  header .bottom {
    top: 51px;
    height: calc(100vh - 51px);
    padding: 46px 20px 36px;
  }
  header .bottom ul {
    gap: 24px;
  }
  header .bottom ul li a {
    font-size: 18px;
  }
}
header .mobile-booking img {
  filter: brightness(0) invert(1);
}

footer {
  background-color: var(--green);
  padding: 40px 0;
  color: var(--text-white);
}
body.light-footer-page footer {
  background-color: var(--beige);
}
footer .inner {
  max-width: 1108px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .inner .top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}
footer .inner .top>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  text-align: center;
  align-items: center;
}
footer .inner .top>div h2 {
  font-family: var(--modern);
  font-size: 14px;
  margin: 0;
}
footer .inner .top>div p {
  font-family: var(--book);
  font-size: 14px;
  margin: 0;
}
footer .inner .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--book);
  font-size: 14px;
}
footer .inner .bottom .socials {
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
  align-items: center;
}
footer .inner .bottom .socials a img {
  display: block;
}
footer .inner .bottom .copyright {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
footer .inner .bottom .copyright a {
  color: var(--text-white);
  text-decoration: none;
}
footer .inner .copyright .footer-legal ul {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .inner .copyright .footer-legal ul li a {
  color: var(--text-white);
  text-decoration: none;
}
footer .inner .copyright .footer-legal ul li:hover a {
  text-decoration: underline;
}
body.light-footer-page footer h2,
body.light-footer-page footer p,
body.light-footer-page footer a,
body.light-footer-page footer span,
body.light-footer-page footer .copyright,
body.light-footer-page footer .inner .bottom .copyright a {
  color: var(--green);
}
body.light-footer-page footer .inner .bottom .socials svg path {
  fill: var(--green);
}

#banner-with-booking {
  position: relative;
}
#banner-with-booking>img,
#banner-with-booking>video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 60 / 31;
  object-fit: cover;
}
#banner-with-booking h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--modern);
  font-size: 40px;
  color: var(--text-white);
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  max-width: var(--container);
}
#banner-with-booking .booking-form {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  background-color: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 16px 40px;
  color: var(--text-white);
}
#banner-with-booking .booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
#banner-with-booking .booking-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--modern);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
}
#banner-with-booking .booking-icon {
  font-family: var(--book);
  font-size: 12px;
  line-height: 1;
  color: var(--text-white);
}
#banner-with-booking .booking-field input,
#banner-with-booking .booking-field select {
  width: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
  font-family: var(--book);
  font-size: 16px;
  line-height: 1.2;
  color: var(--text-white);
  outline: 0;
  appearance: none;
}
#banner-with-booking .booking-field input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
#banner-with-booking .booking-field select option {
  color: var(--text-dark);
}
#banner-with-booking .booking-submit {
  width: 100%;
  border: 1px solid var(--text-white);
  background-color: transparent;
  color: var(--text-white);
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#banner-with-booking .booking-submit:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}
.flatpickr-calendar {
  font-family: var(--book);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  font-family: var(--book);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  background: var(--green);
  border-color: var(--green);
}
.flatpickr-day.today {
  border-color: var(--green);
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-weekdays {
  color: var(--text-dark);
}

#simple-image-with-content {
  max-width: var(--container);
  margin: 140px auto 100px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  text-align: center;
}
#simple-image-with-content h2 {
  font-family: var(--modern);
  font-size: 32px;
  color: var(--text-dark);
  margin: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
#simple-image-with-content h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 172px;
  height: 4px;
  background-color: var(--green);
}
#simple-image-with-content .parallax-image-wrap {
  width: 100%;
  aspect-ratio: 30 / 11;
  overflow: hidden;
  position: relative;
}
#simple-image-with-content .parallax-image-wrap img {
  width: 100%;
  height: 120%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: -10%;
  will-change: transform;
}
#simple-image-with-content p {
  font-family: var(--book);
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

#highlighted-rooms {
  max-width: 1230px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
#highlighted-rooms h2 {
  font-family: var(--modern);
  font-size: 32px;
  color: var(--text-dark);
  margin: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
#highlighted-rooms h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 172px;
  height: 4px;
  background-color: var(--green);
}
#highlighted-rooms p {
  font-family: var(--book);
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}
#highlighted-rooms .rooms-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, 230px);
  grid-template-rows: 1fr;
  align-items: start;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
  justify-content: center;
}
#highlighted-rooms .rooms-flex .room-card {
  padding: 24px 28px;
  background-color: var(--bg-beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  width: fit-content;
}
#highlighted-rooms .rooms-flex .room-card .img-wrap {
  width: 100%;
  max-width: 130px;
  height: auto;
  aspect-ratio: 130 / 233;
  overflow: hidden;
  margin-bottom: 24px;
}
#highlighted-rooms .rooms-flex .room-card .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 130px;
  aspect-ratio: 130 / 233;
  transition: transform 0.35s ease-out;
}
#highlighted-rooms .rooms-flex .room-card .img-wrap img:hover {
  transform: scale(1.2);
}
#highlighted-rooms .rooms-flex .room-card h3 {
  font-family: var(--modern);
  font-size: 15px;
  color: var(--green);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
#highlighted-rooms .rooms-flex .room-card h4 {
  font-family: var(--modern);
  font-size: 12px;
  color: var(--green);
  margin: 0 0 auto;
  text-align: center;
  text-transform: uppercase;
}
#highlighted-rooms .rooms-flex .room-card a {
  margin: 24px 0;
  font-family: var(--modern);
  font-size: 10px;
  color: var(--text-dark);
  background-color: var(--beige);
  padding: 8px 10px;
  text-decoration: none;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#highlighted-rooms .rooms-flex .room-card a img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
  transition: filter 0.35s ease-out;
}
#highlighted-rooms .rooms-flex .room-card a:hover img {
  filter: unset;
}
#highlighted-rooms .rooms-flex .room-card a:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
}
#highlighted-rooms .rooms-flex .room-card span {
  font-family: var(--book);
  font-size: 12px;
  color: var(--text-dark);
  text-align: center;
}

#image-with-page-links {
  max-width: var(--container);
  margin: 100px auto;
  position: relative;
  z-index: 2;
  padding: 56px;
}
#image-with-page-links .bg-img-mask {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 530;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#image-with-page-links .background-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 530;
  display: block;
  object-fit: cover;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  z-index: 1;
}
.background-beige {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-top: -400px;
  height: 1074px;
  background-color: var(--beige);
  z-index: 0;
}
#image-with-page-links .links-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, 210px);
  grid-template-rows: 1fr;
  gap: 32px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
#image-with-page-links .links-flex .link-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#image-with-page-links .links-flex .link-item .content {
  position: relative;
}
#image-with-page-links .links-flex .link-item:not(:last-child) .content::after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: 0;
  width: 1px;
  height: calc(100% - 16px);
  background-color: #FFF;
}
#image-with-page-links .links-flex .link-item .img-mask {
  width: 100%;
  max-width: 164px;
  height: auto;
  aspect-ratio: 164 / 264;
  overflow: hidden;
}
#image-with-page-links .links-flex .link-item .img-mask img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 164 / 264;
  transition: transform 0.35s ease-out;
}
#image-with-page-links .links-flex .link-item .img-mask img:hover {
  transform: scale(1.1);
}
#image-with-page-links .links-flex .link-item:nth-child(odd) .img-mask {
  border-radius: 0 100px 0 100px;
}
#image-with-page-links .links-flex .link-item:nth-child(even) .img-mask {
  border-radius: 100px 0 100px 0;
}
#image-with-page-links .links-flex .link-item h3 {
  font-family: var(--modern);
  font-size: 13px;
  color: var(--text-white);
  margin: 16px 0 0;
  text-align: right;
  text-transform: uppercase;
}
#image-with-page-links .links-flex .link-item a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--book);
  font-size: 13px;
  color: var(--text-white);
  text-decoration: none;
  margin-top: 4px;
  justify-content: flex-end;
}
#image-with-page-links .links-flex .link-item p {
  font-family: var(--book);
  font-size: 13px;
  color: var(--text-white);
  margin: 0;
  text-align: right;
}

#client-reviews {
  max-width: var(--container);
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
    align-items: flex-start;
  text-align: left;
  position: relative;
  background-color: #FFF;
  padding: 40px 66px;
  z-index: 2;
}
#client-reviews h2 {
  font-family: var(--modern);
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}
#client-reviews span {
  display: flex;
  align-items: baseline;
}
#client-reviews span>p {
  font-family: var(--book);
  font-size: 16px;
  color: var(--green);
  margin: 0;
}
#client-reviews .review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#client-reviews .review-card h3 {
  font-family: var(--modern);
  font-size: 10px;
  color: var(--text-dark);
  margin: 0;
}
#client-reviews .review-card p {
  font-family: var(--oblique);
  font-size: 12px;
  color: var(--green);
  margin: 0;
}
#client-reviews .glide__track {
  margin: 0 48px;
}
#client-reviews .glide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
#client-reviews .glide__arrows .glide__arrow {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

#timeline {
  position: relative;
  z-index: 2;
  background-color: var(--beige);
}
#timeline .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 0;
}
#timeline .timeline-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 60px;
  scrollbar-color: var(--green) #D8D4D0;
  scrollbar-width: thin;
  position: relative;
}
#timeline .timeline-scroll::-webkit-scrollbar {
  height: 8px;
}
#timeline .timeline-scroll::-webkit-scrollbar-track {
  background-color: #D8D4D0;
  border: 1px solid #A9A39C;
}
#timeline .timeline-scroll::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 0;
}
#timeline .timeline-line-svg {
  position: sticky;
  left: 0;
  top: 216px;
  width: 100%;
  min-width: 1068px;
  height: 14px;
  color: var(--green);
  z-index: 1;
  pointer-events: none;
}
#timeline .timeline-line-svg svg {
  width: 100%;
  height: 14px;
  display: block;
}
#timeline .timeline-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 40px;
  width: max-content;
  min-width: 100%;
  padding: 0 80px;
  margin-top: -14px;
  z-index: 2;
}
#timeline .timeline-point {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: 90px 124px 36px auto;
  justify-items: center;
  text-align: center;
}
#timeline .timeline-image {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
#timeline .timeline-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#timeline .timeline-title-box {
  width: 140px;
  height: 94px;
  border: 2px solid var(--green);
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 28px 18px 20px;
  position: relative;
  z-index: 4;
}
#timeline .timeline-title-box h3 {
  font-family: var(--modern);
  font-size: 16px;
  line-height: 1.08;
  color: var(--green);
  margin: 0;
}
#timeline .timeline-title-box h3 sup {
  font-size: 45%;
  line-height: 0;
  top: -0.65em;
  position: relative;
}
#timeline .timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--green);
  position: relative;
  z-index: 6;
}
#timeline .timeline-line-down {
  width: 2px;
  height: 84px;
  background-color: var(--green);
  margin-top: -18px;
  position: relative;
  z-index: 3;
}
#timeline .timeline-point p {
  max-width: 210px;
  font-family: var(--oblique);
  font-size: 14px;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0;
}
#timeline .timeline-description {
  max-width: 980px;
  margin: 40px auto 0;
  font-family: var(--book);
  font-size: 16px;
  line-height: 1.35;
  color: var(--green);
  text-align: center;
}
#timeline .timeline-description p {
  margin: 0;
}

#image-mosaic-with-content {
  max-width: var(--container);
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}
#image-mosaic-with-content .mosaic-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 280px 500px 320px;
  gap: 24px;
  align-items: stretch;
}
#image-mosaic-with-content .mosaic-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#image-mosaic-with-content .mosaic-text-box {
  min-height: 318px;
  border: 1px solid var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 54px;
  text-align: center;
  font-family: var(--oblique);
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-dark);
}
#image-mosaic-with-content .mosaic-text-box p {
  margin: 0;
}
#image-mosaic-with-content .mosaic-text-box-small {
  min-height: 100px;
  padding: 28px 42px;
}
#image-mosaic-with-content .mosaic-image-wrap {
  width: 100%;
  overflow: hidden;
}
#image-mosaic-with-content .mosaic-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#image-mosaic-with-content .mosaic-left-bottom {
  height: 462px;
}
#image-mosaic-with-content .mosaic-middle {
  height: 800px;
}
#image-mosaic-with-content .mosaic-middle img {
  transform: scale(1.10);
  object-position: 100% 0%;
  transition: transform 0.6s ease-out;
}
#image-mosaic-with-content .mosaic-middle:hover img {
  transform: scale(1);
}
#image-mosaic-with-content .mosaic-right-top {
  height: 220px;
}
#image-mosaic-with-content .mosaic-right-middle {
  height: 440px;
}
#image-mosaic-with-content .mosaic-content-below {
  max-width: 1030px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  font-family: var(--book);
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-dark);
}
#image-mosaic-with-content .mosaic-content-below p {
  margin: 0;
}
#image-mosaic-with-content .mosaic-logo {
  width: 185px;
  height: auto;
  display: block;
}

#gallery-section {
  width: 100%;
  position: relative;
  z-index: 2;
}
#gallery-section .gallery-banner {
  position: relative;
  width: 100%;
  height: 694px;
  overflow: hidden;
}
#gallery-section .gallery-banner:after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.28);
  z-index: 1;
}
#gallery-section .gallery-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: 0 70%;
  object-fit: cover;
}
#gallery-section .gallery-banner h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: var(--modern);
  font-size: 22px;
  line-height: 1;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}
#gallery-section .gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 0 100px;
}
#gallery-section .gallery-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--modern);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 34px;
}
#gallery-section .gallery-breadcrumbs a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.35s ease-out;
}
#gallery-section .gallery-breadcrumbs a:hover {
  color: var(--green);
}
#gallery-section .gallery-filters {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 54px;
}
#gallery-section .gallery-filter {
  border: 0;
  padding: 0;
  background-color: transparent;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition-property: color, opacity, transform;
  transition-duration: 0.35s, 1s, 1s;
  transition-timing-function: ease-out;
}
#gallery-section .gallery-filter:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background-color: var(--green);
  transform-origin: center;
  transition: transform 0.35s ease-out;
}
#gallery-section .gallery-filter:hover,
#gallery-section .gallery-filter.active {
  color: var(--green);
}
#gallery-section .gallery-filter.active:after {
  transform: translateX(-50%) scaleX(1);
}
#gallery-section .gallery-mosaic {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 10px;
}
#gallery-section .gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--text-white);
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
#gallery-section .gallery-item.is-hidden {
  display: none;
}
#gallery-section .gallery-item.is-collapsed {
  display: none;
}
#gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
#gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}
#gallery-section .gallery-item:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
  z-index: 1;
}
#gallery-section .gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  font-family: var(--oblique);
  font-size: 13px;
  line-height: 1.25;
  color: var(--text-white);
  z-index: 2;
}
#gallery-section .gallery-load-more {
  width: 100%;
  max-width: 780px;
  height: 40px;
  margin: 42px auto 0;
  border: 0;
  border-top: 2px solid var(--green);
  background-color: transparent;
  display: flex;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
#gallery-section .gallery-load-more span {
  width: 0;
  height: 0;
  margin-top: 14px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--green);
  transition: transform 0.35s ease-out;
}
#gallery-section .gallery-load-more:hover span {
  transform: translateY(4px);
}
#gallery-section .gallery-load-more.is-hidden {
  display: none;
}
#gallery-section .gallery-load-more.is-expanded span {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  #gallery-section .gallery-inner {
    padding: 48px 20px 80px;
  }
  #gallery-section .gallery-filters {
    gap: 24px;
    flex-wrap: wrap;
  }
  #gallery-section .gallery-mosaic {
    grid-auto-rows: 78px;
  }
}
@media (max-width: 640px) {
  #gallery-section .gallery-banner {
    height: 280px;
  }
  #gallery-section .gallery-mosaic {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  #gallery-section .gallery-item {
    height: 260px;
  }
}

#accordion {
  background-color: var(--beige);
}
#accordion .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 0 80px;
  position: relative;
  min-height: 472px;
}
#accordion .accordion-bg {
  position: absolute;
  inset: 120px 0 80px;
  width: 100%;
  height: calc(100% - 200px);
  min-height: 472px;
  display: block;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}
#accordion h2 {
  position: relative;
  z-index: 3;
  margin: 42px 0 42px;
  font-family: var(--modern);
  font-size: 26px;
  line-height: 1;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#accordion .accordion-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 740px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
  gap: 6px;
}
#accordion .left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#accordion .accordion-item {
  background-color: var(--bg-beige);
  overflow: hidden;
}
#accordion .accordion-header {
  width: 100%;
  min-height: 48px;
  border: 0;
  background-color: var(--bg-beige);
  padding: 0 24px;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--book);
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-dark);
}
#accordion .accordion-header span {
  display: block;
}
#accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-family: var(--oblique);
  font-size: 13px;
  line-height: 1.35;
  color: var(--green);
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}
#accordion .accordion-content p {
  margin: 0;
}
#accordion .accordion-item.active .accordion-content {
  padding: 0 24px 22px;
}
#accordion .right {
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  padding: 64px 26px 42px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#accordion .right:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.26);
  z-index: 1;
}
#accordion .right h3,
#accordion .right p,
#accordion .right a {
  position: relative;
  z-index: 2;
}
#accordion .right h3 {
  margin: 0;
  font-family: var(--modern);
  font-weight: 300;
  font-size: 10px;
  line-height: 1;
  color: var(--text-white);
  text-transform: uppercase;
}
#accordion .right p {
  max-width: 210px;
  margin: 0;
  font-family: var(--book);
  font-size: 12px;
  line-height: 1.25;
  color: var(--text-white);
}
#accordion .right .box-link {
  margin-top: 6px;
  border: 1px solid var(--text-white);
  padding: 8px 18px;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  color: var(--text-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#accordion .right .box-link:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}

#contact-info {
  background-color: var(--bg-beige);
}
#contact-info .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
  align-items: center;
}
#contact-info .contact-content h2 {
  margin: 0 0 8px;
  font-family: var(--modern);
  font-size: 18px;
  line-height: 1;
  color: var(--green);
  text-transform: uppercase;
}
#contact-info .address {
  max-width: 430px;
  margin-bottom: 32px;
  font-family: var(--book);
  font-size: 17px;
  line-height: 1.2;
  color: var(--text-dark);
}
#contact-info .address p {
  margin: 0;
}
#contact-info .contacts {
  margin-bottom: 28px;
}
#contact-info .contacts p {
  margin: 0;
  font-family: var(--book);
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-dark);
}
#contact-info .contacts a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.35s ease-out;
}
#contact-info .contacts a:hover {
  color: var(--green);
}
#contact-info .maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 36px;
  background-color: var(--green);
  color: var(--text-white);
  font-family: var(--modern);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#contact-info .maps-link:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
}
#contact-info .contact-map {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#contact-info .maplibregl-canvas {
  outline: none;
}
#contact-info .maplibregl-ctrl-logo,
#contact-info .maplibregl-ctrl-attrib {
  display: none !important;
}
#contact-info .contact-map-marker {
  width: 24px;
  height: 42px;
  display: block;
}
#contact-info .contact-map-marker img {
  width: 100%;
  height: 100%;
  display: block;
}

.single-room-page {
  padding-top: 144px;
}
#single-room-hero {
  max-width: var(--container);
  margin: 0 auto 80px;
}
#single-room-hero .room-hero-glide {
  position: relative;
  overflow: hidden;
}
#single-room-hero .room-hero-image {
  width: 100%;
  height: 522px;
  overflow: hidden;
}
#single-room-hero .room-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#single-room-hero .room-hero-content {
  position: absolute;
  left: 36px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  gap: 12px;
  max-width: 505px;
  color: var(--text-white);
  flex-direction: column;
}
#single-room-hero .room-hero-content h2 {
  font-family: var(--modern);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
#single-room-hero .room-hero-content h3 {
  font-family: var(--modern);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
#single-room-hero .room-hero-content p {
  font-family: var(--book);
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}
#single-room-hero .room-hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
#single-room-hero .room-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background-color: transparent;
  color: var(--text-white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}
#single-room-hero .room-hero-arrow-left {
  left: 26px;
}
#single-room-hero .room-hero-arrow-right {
  right: 26px;
}
#single-room-hero .room-show-more {
  position: absolute;
  right: 36px;
  bottom: 42px;
  z-index: 3;
  border: 1px solid var(--text-white);
  padding: 8px 16px;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  color: var(--text-white);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#single-room-hero .room-show-more:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}
#single-room-hero .room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 12px;
  overflow: scroll;
}
#single-room-hero .room-thumb {
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.35s ease-out;
}
#single-room-hero .room-thumb.active,
#single-room-hero .room-thumb:hover {
  opacity: 1;
}
#single-room-hero .room-thumb img {
  width: 156px;
  height: auto;
  aspect-ratio: 156 / 93;
  display: block;
  object-fit: cover;
}
#single-room-hero .room-booking-form {
  margin-top: 12px;
  background-color: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 16px 40px;
  color: var(--text-white);
}
#single-room-hero .booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#single-room-hero .booking-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--modern);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-white);
}
#single-room-hero .booking-field input,
#single-room-hero .booking-field select {
  width: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
  font-family: var(--book);
  font-size: 12px;
  color: var(--text-white);
  outline: 0;
  appearance: none;
  cursor: pointer;
}
#single-room-hero .booking-field select option {
  color: var(--text-dark);
}
#single-room-hero .booking-submit {
  width: 100%;
  border: 1px solid var(--text-white);
  background-color: transparent;
  color: var(--text-white);
  font-family: var(--modern);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#single-room-hero .booking-submit:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}
#room-commodities {
  background-color: var(--beige);
  padding: 70px 0;
}
#room-commodities h2 {
  font-family: var(--modern);
  font-size: 24px;
  color: var(--text-dark);
  margin: 0 0 60px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
#room-commodities h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background-color: var(--green);
}
#room-commodities .commodities-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
#room-commodities .commodity-card {
  min-height: 220px;
  background-color: var(--bg-beige);
  padding: 50px 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#room-commodities .commodity-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
#room-commodities .commodity-top img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
#room-commodities .commodity-top h3 {
  font-family: var(--book);
  font-size: 13px;
  color: var(--text-dark);
  margin: 0;
}
#room-commodities .commodity-top span {
  font-family: var(--modern);
  font-size: 44px;
  line-height: 1;
  color: var(--green);
}
#room-commodities .commodity-description {
  font-family: var(--oblique);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  color: var(--text-dark);
}
#room-commodities .commodity-description p {
  margin: 0;
}
#single-room-reviews {
  max-width: 1068px;
  margin: 90px auto;
  position: relative;
}
#single-room-reviews .room-review-card {
  text-align: center;
  max-width: 297px;
  margin: 0 auto;
}
#single-room-reviews .room-review-card p {
  font-family: var(--oblique);
  font-size: 12px;
  color: var(--green);
  margin: 12px 0;
}
#single-room-reviews .room-review-card h3 {
  font-family: var(--modern);
  font-size: 10px;
  color: var(--text-dark);
  margin: 0;
}
#single-room-reviews .glide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 80px);
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
}
#single-room-reviews .glide__arrow {
  border: 0;
  background-color: transparent;
  color: var(--green);
  font-size: 28px;
  cursor: pointer;
}
#single-room-hero .room-show-more {
  position: absolute;
  right: 36px;
  bottom: 42px;
  z-index: 3;
  border: 1px solid var(--text-white);
  background-color: transparent;
  padding: 8px 16px;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  color: var(--text-white);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#single-room-hero .room-show-more:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}
.room-gallery-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #FFFBF8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease-out, visibility 0s linear 0.45s;
}
.room-gallery-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s ease-out, visibility 0s linear 0s;
}
.room-gallery-popup-inner {
  width: 100%;
  max-width: 1280px;
  background-color: var(--bg-beige);
  border: none;
  padding: 48px 64px;
  position: relative;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.45s ease-out, opacity 0.45s ease-out;
}
.room-gallery-popup.active .room-gallery-popup-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.room-gallery-popup-inner {
  width: 100%;
  max-width: 1280px;
  background-color: var(--bg-beige);
  border: none;
  padding: 48px 64px;
  position: relative;
}
.room-popup-close {
  position: absolute;
  right: 52px;
  top: 42px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background-color: #3F604F;
  color: var(--text-white);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: rotate(0deg);
}
.room-popup-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.room-popup-image {
  width: 100%;
  height: 540px;
  overflow: hidden;
}
.room-popup-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 594 / 540;
  display: block;
  object-fit: cover;
}
.room-popup-content h2 {
  font-family: var(--modern);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.room-popup-specs {
  display: flex;
  gap: 6px;
  font-family: var(--book);
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 24px;
  align-items: baseline;
}
.room-popup-description {
  max-width: 500px;
  font-family: var(--book);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.room-popup-description p {
  margin: 0 0 18px;
}
.room-popup-description p:last-child {
  margin-bottom: 0;
}
.room-popup-commodities {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 54px;
  margin-bottom: 28px;
}
.room-popup-commodity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--book);
  font-size: 14px;
  color: var(--text-dark);
}
.room-popup-commodity img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}
.room-popup-booking {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--text-dark);
  padding: 8px 18px;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  color: var(--text-dark);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
.room-popup-booking:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
}
.room-popup-booking img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
  transition: filter 0.35s ease-out;
}
.room-popup-booking:hover img {
  filter: unset;
}
.room-popup-thumbs {
  margin-top: 80px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 170px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-color: var(--green) #D8D4D0;
  scrollbar-width: thin;
}
.room-popup-thumbs::-webkit-scrollbar {
  height: 5px;
}
.room-popup-thumbs::-webkit-scrollbar-track {
  background-color: #D8D4D0;
}
.room-popup-thumbs::-webkit-scrollbar-thumb {
  background-color: var(--green);
}
.room-popup-thumb {
  border: 0;
  padding: 0;
  height: 115px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.35s ease-out;
}
.room-popup-thumb.active,
.room-popup-thumb:hover {
  opacity: 1;
}
.room-popup-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
body.room-popup-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .room-gallery-popup {
    padding: 24px;
  }
  .room-gallery-popup-inner {
    padding: 40px 24px;
  }
  .room-popup-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .room-popup-content {
    padding-right: 0;
  }
  .room-popup-close {
    right: 24px;
    top: 24px;
  }
  .room-popup-thumbs {
    margin-top: 36px;
  }
}

#special-offers {
  background-color: var(--bg-beige);
}
#special-offers .special-offers-main {
  margin: 144px auto 110px;
  max-width: 900px;
}
#special-offers .special-offer-panel {
  display: none;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
#special-offers .special-offer-panel.active {
  display: grid;
}
#special-offers .special-offer-main-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
#special-offers .special-offer-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
#special-offers .special-offer-main-image:hover img {
  transform: scale(1.04);
}
#special-offers .special-offer-content {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#special-offers .special-offer-date {
  font-family: var(--book);
  font-size: 14px;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 16px;
}
#special-offers .special-offer-content h2 {
  font-family: var(--modern);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 58px;
}
#special-offers .special-offer-content p {
  max-width: 410px;
  font-family: var(--book);
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-dark);
  margin: 0;
}
#special-offers .special-offer-thumbs {
  display: flex;
  gap: 18px;
  margin-top: auto;
  margin-bottom: 26px;
}
#special-offers .special-offer-thumb {
  width: 88px;
  height: 58px;
  border: 0;
  padding: 0;
  background-color: transparent;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.35s ease-out;
}
#special-offers .special-offer-thumb.active,
#special-offers .special-offer-thumb:hover {
  opacity: 1;
}
#special-offers .special-offer-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#special-offers .special-offer-count {
  font-family: var(--book);
  font-size: 20px;
  line-height: 1;
  color: var(--green);
}
#special-offers .special-offers-more {
  background-color: var(--beige); 
}
#special-offers .special-offers-more .inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 0;
}
#special-offers .special-offers-more h3 {
  font-family: var(--modern);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
}
#special-offers .special-offers-list {
  display: flex;
  width: 100%;
  height: 280px;
  gap: 8px;
}
#special-offers .special-offer-card {
  flex: 1 1 25%;
  min-width: 0;
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  transition: flex 0.5s ease-out, opacity 0.35s ease-out;
}
#special-offers .special-offers-list:hover .special-offer-card {
  flex: 0.85 1 20%;
}
#special-offers .special-offers-list .special-offer-card:hover {
  flex: 1.5 1 35%;
}
#special-offers .special-offer-card img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease-out, filter 0.35s ease-out;
}
#special-offers .special-offer-card:hover img {
  transform: scale(1.06);
}
#special-offers .special-offer-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.22);
  z-index: 1;
  transition: background-color 0.35s ease-out;
}
#special-offers .special-offer-card:hover:after,
#special-offers .special-offer-card.active:after {
  background-color: rgba(0, 0, 0, 0.08);
}
#special-offers .special-offer-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 194px;
  padding: 0 34px;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--modern);
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-white);
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 900px) {
  #special-offers .special-offers-inner {
    padding: 80px 20px;
  }
  #special-offers .special-offer-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #special-offers .special-offer-content {
    min-height: 0;
  }
  #special-offers .special-offer-content h2 {
    margin-bottom: 28px;
  }
  #special-offers .special-offers-list {
    height: auto;
    flex-direction: column;
  }
  #special-offers .special-offer-card {
    height: 180px;
  }
}

.visual-brand-page {
  overflow: hidden;
}
#cafetaria-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 140px;
  background-color: var(--bg-beige);
  overflow: hidden;
}
#cafetaria-page:before {
  content: '';
  position: absolute;
  top: -170px;
  left: -170px;
  width: 520px;
  height: 760px;
  background-color: #F2D4DC;
  border-radius: 48% 52% 50% 50%;
  transform: rotate(12deg);
  z-index: 0;
}
#cafetaria-page:after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: 640px;
  height: 1020px;
  background-color: var(--green);
  border-radius: 50% 50% 0 0 / 12% 12% 0 0;
  z-index: 0;
}
#cafetaria-page .lerias-intro {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}
#cafetaria-page .lerias-logo {
  width: 200px;
  height: auto;
  aspect-ratio: 200 / 75;
  display: block;
  margin: 0 auto 36px;
}
#cafetaria-page .lerias-intro-text {
  max-width: 720px;
  margin: 36px auto 0;
  font-family: var(--book);
  font-size: 14px;
  line-height: 1.35;
  color: var(--green);
}
#cafetaria-page .lerias-intro-text p {
  margin: 0 0 22px;
}
#cafetaria-page .lerias-intro-text p:last-child {
  margin-bottom: 0;
}
#cafetaria-page .lerias-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 150px;
}
#cafetaria-page .lerias-hero-lines {
  position: absolute;
  left: -42px;
  right: -42px;
  top: 36px;
  bottom: -32px;
  border: 1px solid #EACD9B;
  z-index: 1;
}
#cafetaria-page .lerias-hero-lines:before {
  content: '';
  position: absolute;
  left: -42px;
  right: -42px;
  top: 42px;
  height: 120px;
  background-image: repeating-linear-gradient(to bottom, #EACD9B 0 1px, transparent 1px 24px);
}
#cafetaria-page .lerias-hero {
  width: 100%;
  aspect-ratio: 760 / 350;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
#cafetaria-page .lerias-hero img {
  width: 100%;
  height: 120%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: -10%;
  will-change: transform;
  transform-origin: center;
}
#cafetaria-page .lerias-mosaic {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 250px;
}
#cafetaria-page .lerias-mosaic:after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #EACD9B;
  z-index: 10;
  pointer-events: none;
}
#cafetaria-page .lerias-mosaic-cell {
  position: relative;
  min-width: 0;
  border: 2px solid #EFDFC5;
}
#cafetaria-page .lerias-mosaic-cell.lerias-mosaic-bottom-image {
  border: none
}
#cafetaria-page .lerias-mosaic-image {
  overflow: hidden;
}
#cafetaria-page .lerias-mosaic-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
#cafetaria-page .lerias-mosaic-image:hover img {
  transform: scale(1.05);
}
#cafetaria-page .lerias-mosaic-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  text-align: center;
  font-family: var(--oblique);
  font-size: 13px;
  line-height: 1.35;
  color: var(--green);
}
#cafetaria-page .lerias-mosaic-text p {
  margin: 0;
}
#cafetaria-page .lerias-mosaic-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 34px;
  background-color: var(--green);
  color: var(--text-white);
  font-family: var(--book);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
#cafetaria-page .lerias-mosaic-text a:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
}
#cafetaria-page .lerias-mosaic-top-left {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  background-color: #E2EAE6;
}
#cafetaria-page .lerias-mosaic-top-right {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}
#cafetaria-page .lerias-mosaic-bottom-left {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background-color: #BCC7E4;
  color: var(--text-white);
}
#cafetaria-page .lerias-mosaic-bottom-image {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  height: calc(100% + 14px);
  z-index: 3;
}
#cafetaria-page .lerias-mosaic-bottom-right {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  background-color: #E8BF8F;
  color: var(--text-white);
}
#cafetaria-page .lerias-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  position: relative;
  flex: 0 0 auto;
}
#cafetaria-page .lerias-circle:before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background-color: var(--bg-beige);
}
#cafetaria-page .lerias-circle-purple {
  background-color: #C7B8D8;
}
#cafetaria-page .lerias-circle-white {
  background-color: var(--bg-beige);
}
#cafetaria-page .lerias-circle-white:before {
  background-color: var(--green);
}
#cafetaria-page .lerias-decor {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 1;
}
#cafetaria-page .decor-ring-left {
  left: -150px;
  top: 80px;
  width: 360px;
  height: 520px;
  border: 1px solid #EACD9B;
  border-radius: 50%;
}
#cafetaria-page .decor-ring-right {
  right: -170px;
  top: 600px;
  width: 310px;
  height: 620px;
  border: 1px solid #EACD9B;
  border-radius: 50%;
}
#cafetaria-page .decor-zigzag {
  left: calc(50% - 455px);
  top: 980px;
  width: 173px;
  height: 175px;
  background-image: url('./assets/icons/Group.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#cafetaria-page .decor-dots {
  right: calc(50% - 450px);
  bottom: 95px;
  width: 160px;
  height: 140px;
  background-image: radial-gradient(#EACD9B 2px, transparent 2px);
  background-size: 12px 12px;
}
@media (max-width: 900px) {
  #cafetaria-page {
    padding: 90px 20px 100px;
  }
  #cafetaria-page:before {
    width: 360px;
    height: 520px;
    left: -190px;
  }
  #cafetaria-page:after {
    top: 600px;
    height: 900px;
  }
  #cafetaria-page .lerias-intro {
    margin-bottom: 70px;
  }
  #cafetaria-page .lerias-hero-wrap {
    margin-bottom: 90px;
  }
  #cafetaria-page .lerias-hero-lines {
    left: -12px;
    right: -12px;
    bottom: -16px;
  }
  #cafetaria-page .lerias-mosaic {
    display: flex;
    flex-direction: column;
    max-width: 520px;
  }
  #cafetaria-page .lerias-mosaic-cell {
    min-height: 220px;
  }
  #cafetaria-page .lerias-mosaic-bottom-image {
    transform: none;
  }
  #cafetaria-page .decor-ring-left,
  #cafetaria-page .decor-ring-right,
  #cafetaria-page .decor-zigzag,
  #cafetaria-page .decor-dots {
    opacity: 0.35;
  }
}
@media (max-width: 640px) {
  #cafetaria-page .lerias-logo {
    width: 130px;
  }
  #cafetaria-page .lerias-intro-text {
    font-size: 12px;
  }
  #cafetaria-page .lerias-hero-wrap {
    margin-bottom: 70px;
  }
  #cafetaria-page .lerias-hero {
    aspect-ratio: 4 / 3;
  }
  #cafetaria-page .lerias-mosaic-text {
    padding: 30px 24px;
  }
}

#lerias-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 130px;
  background-color: var(--bg-beige);
  overflow: hidden;
}
#lerias-page:before {
  content: '';
  position: absolute;
  top: -170px;
  left: -170px;
  width: 520px;
  height: 760px;
  background-color: #F2D4DC;
  border-radius: 48% 52% 50% 50%;
  transform: rotate(12deg);
  z-index: 0;
}
#lerias-page:after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  top: 720px;
  height: 1230px;
  background-color: var(--green);
  border-radius: 50% 50% 0 0 / 10% 10% 0 0;
  z-index: 0;
}
#lerias-page .lerias-decor {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 1;
}
#lerias-page .decor-ring-left {
  left: -150px;
  top: 80px;
  width: 360px;
  height: 520px;
  border: 1px solid #EACD9B;
  border-radius: 50%;
}
#lerias-page .decor-ring-right {
  right: -165px;
  top: 560px;
  width: 310px;
  height: 620px;
  border: 1px solid #EACD9B;
  border-radius: 50%;
}
#lerias-page .lerias-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 86px;
  text-align: center;
}
#lerias-page .lerias-logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 26px;
}
#lerias-page .circles-decor {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 42px;
}
#lerias-page .lerias-intro-text {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--book);
  font-size: 13px;
  line-height: 1.35;
  color: var(--green);
}
#lerias-page .lerias-intro-text p {
  margin: 0 0 22px;
}
#lerias-page .lerias-intro-text p:last-child {
  margin-bottom: 0;
}
#lerias-page .lerias-story {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 82px;
  align-items: center;
}
#lerias-page .story-content h2,
#lerias-page .chef-content h2 {
  font-family: var(--modern);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#lerias-page .story-text,
#lerias-page .chef-text {
  font-family: var(--book);
  font-size: 13px;
  line-height: 1.35;
  color: var(--green);
}
#lerias-page .story-text p,
#lerias-page .chef-text p {
  margin: 0 0 18px;
}
#lerias-page .story-text p:last-child,
#lerias-page .chef-text p:last-child {
  margin-bottom: 0;
}
#lerias-page .story-image-wrap {
  width: 100%;
  border: 2px solid #EACD9B;
  padding: 12px;
}
#lerias-page .story-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 190;
  display: block;
  object-fit: cover;
}
#lerias-page .lerias-chef {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 82px;
  align-items: center;
}
#lerias-page .chef-image-wrap {
  width: 100%;
  overflow: hidden;
}
#lerias-page .chef-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 410;
  display: block;
  object-fit: cover;
}
#lerias-page .chef-content h2 {
  color: var(--text-white);
  margin-bottom: 26px;
}
#lerias-page .chef-text {
  color: var(--text-white);
}
#lerias-page .chef-sweets-gallery {
  margin-top: 42px;
}
#lerias-page .chef-sweets-gallery img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  object-fit: contain;
}
#lerias-page .lerias-bottom-mosaic {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
#lerias-page .bottom-mosaic-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #EACD9B;
}
#lerias-page .bottom-left-grid-image,
#lerias-page .bottom-video-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
}
#lerias-page .bottom-left-grid-image img,
#lerias-page .bottom-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#lerias-page .bottom-video-wrap {
  position: relative;
  background-color: var(--text-dark);
}
#lerias-page .bottom-video-wrap:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 54px solid rgba(255, 255, 255, 0.82);
  pointer-events: none;
}
#lerias-page .bottom-mosaic-texts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  margin-top: 34px;
}
#lerias-page .bottom-description h3 {
  font-family: var(--modern);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
#lerias-page .bottom-description div {
  font-family: var(--book);
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-white);
}
#lerias-page .bottom-description p {
  margin: 0;
}

#cdl-journal {
  background-color: var(--bg-beige);
}
#cdl-journal .journal-banner {
  position: relative;
  width: 100%;
  height: 570px;
  overflow: hidden;
}
#cdl-journal .journal-banner:after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.24);
  z-index: 1;
}
#cdl-journal .journal-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#cdl-journal .journal-banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-white);
}
#cdl-journal .journal-banner-content img {
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
}
#cdl-journal .journal-banner-content h2 {
  margin: 0;
  font-family: var(--modern);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#cdl-journal .journal-highlighted {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 0 70px;
}
#cdl-journal .journal-highlighted-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
  padding-bottom: 74px;
  margin-bottom: 74px;
  border-bottom: 1px solid rgba(143, 181, 167, 0.36);
}
#cdl-journal .journal-highlighted-post:last-child {
  margin-bottom: 0;
}
#cdl-journal .journal-highlighted-post.image-right {
  grid-template-columns: 0.9fr 1.1fr;
}
#cdl-journal .journal-highlighted-post.image-right .journal-highlighted-image {
  grid-column: 2;
  grid-row: 1;
}
#cdl-journal .journal-highlighted-post.image-right .journal-highlighted-content {
  grid-column: 1;
  grid-row: 1;
}
#cdl-journal .journal-highlighted-image {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
#cdl-journal .journal-highlighted-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 360;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
#cdl-journal .journal-highlighted-image:hover img {
  transform: scale(1.05);
}
#cdl-journal .journal-highlighted-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
  z-index: 1;
}
#cdl-journal .journal-highlighted-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 300px;
  font-family: var(--oblique);
  font-size: 12px;
  line-height: 1.25;
  color: var(--text-white);
}
#cdl-journal .journal-highlighted-content h2 {
  margin: 0 0 6px;
  font-family: var(--modern);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#cdl-journal .journal-highlighted-content h2 a {
  color: var(--green);
  text-decoration: none;
}
#cdl-journal .journal-highlighted-content time {
  display: block;
  margin-bottom: 28px;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  color: var(--green);
  text-transform: uppercase;
}
#cdl-journal .journal-excerpt {
  font-family: var(--book);
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-dark);
}
#cdl-journal .journal-excerpt p {
  margin: 0 0 18px;
}
#cdl-journal .journal-excerpt p:last-child {
  margin-bottom: 0;
}
#cdl-journal .journal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}
#cdl-journal .journal-more {
  font-family: var(--modern);
  font-size: 9px;
  line-height: 1;
  color: var(--text-dark);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.35s ease-out;
}
#cdl-journal .journal-more:hover {
  color: var(--green);
}
#cdl-journal .journal-share {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--modern);
  font-size: 9px;
  line-height: 1;
  color: var(--text-dark);
  text-transform: uppercase;
}
#cdl-journal .journal-share a {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--book);
  font-size: 8px;
  line-height: 1;
  color: var(--text-white);
  text-decoration: none;
  transition: background-color 0.35s ease-out;
}
#cdl-journal .journal-share a:hover {
  background-color: var(--text-dark);
}
#cdl-journal .journal-grid-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 0 100px;
}
#cdl-journal .journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 42px;
}
#cdl-journal .journal-card.is-collapsed {
  display: none;
}
#cdl-journal .journal-card-image {
  display: block;
  overflow: hidden;
  margin-bottom: 28px;
}
#cdl-journal .journal-card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 270;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
#cdl-journal .journal-card-image:hover img {
  transform: scale(1.05);
}
#cdl-journal .journal-card h3 {
  margin: 24px 0 12px;
  font-family: var(--modern);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
}
#cdl-journal .journal-card h3 a {
  color: var(--green);
  text-decoration: none;
}
#cdl-journal .journal-card-excerpt {
  margin-bottom: 14px;
  font-family: var(--book);
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#cdl-journal .journal-card-excerpt p {
  margin: 0;
}
#cdl-journal .journal-card time {
  display: block;
  font-family: var(--modern);
  font-size: 10px;
  line-height: 1;
  color: var(--text-dark);
  text-transform: uppercase;
}
#cdl-journal .journal-load-more {
  width: 100%;
  max-width: 924px;
  height: 40px;
  margin: 64px auto 0;
  border: 0;
  border-top: 2px solid var(--green);
  background-color: transparent;
  display: flex;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
#cdl-journal .journal-load-more span {
  width: 0;
  height: 0;
  margin-top: 14px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--green);
  transition: transform 0.35s ease-out;
}
#cdl-journal .journal-load-more:hover span {
  transform: translateY(4px);
}
#cdl-journal .journal-load-more.is-expanded span {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  #cdl-journal .journal-banner {
    height: 420px;
  }
  #cdl-journal .journal-highlighted {
    padding: 70px 20px 50px;
  }
  #cdl-journal .journal-highlighted-post,
  #cdl-journal .journal-highlighted-post.image-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #cdl-journal .journal-highlighted-post.image-right .journal-highlighted-image,
  #cdl-journal .journal-highlighted-post.image-right .journal-highlighted-content {
    grid-column: auto;
    grid-row: auto;
  }
  #cdl-journal .journal-grid-wrap {
    padding: 0 20px 80px;
  }
  #cdl-journal .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 28px;
  }
}
@media (max-width: 640px) {
  #cdl-journal .journal-banner {
    height: 320px;
  }
  #cdl-journal .journal-grid {
    grid-template-columns: 1fr;
  }
  #cdl-journal .journal-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

.page-content.single-post {
  max-width: var(--container);
  margin: 120px auto;
  font-family: var(--book);
}

main.legal-page {
  max-width: var(--container);
  margin: 120px auto;
  font-family: var(--book);
}


/* RESPONSIVE BASE */
@media (max-width: 1240px) {
  :root {
    --container: calc(100vw - 48px);
  }
  footer .inner,
  #highlighted-rooms,
  #image-with-page-links,
  #client-reviews,
  #timeline .inner,
  #image-mosaic-with-content,
  #contact-info .inner,
  #single-room-hero,
  #room-commodities .commodities-grid,
  #single-room-reviews {
    width: calc(100% - 48px);
  }
  #banner-with-booking .booking-form {
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 1023px) {
  html,
  body {
    scroll-padding-top: 82px!important;
  }
  body:not(.home) .page-content,
  .single-room-page {
    padding-top: 12px;
  }
  header .top {
    padding: 16px 24px;
  }
  header .top>a.logo,
  header .top .logo {
    max-width: 180px;
  }
  header .top .booking {
    display: none;
  }
  header .bottom {
    position: fixed;
    left: 0;
    top: 56px;
    width: 100%;
    height: calc(100vh - 56px);
    padding: 54px 24px;
    background-color: var(--beige);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: transform 0.45s ease-out, opacity 0.35s ease-out, visibility 0s linear 0.45s;
  }
  header.menu-open .bottom {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.45s ease-out, opacity 0.35s ease-out, visibility 0s linear 0s;
  }
  header .bottom ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  header .bottom ul li a {
    font-family: var(--modern);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  body.menu-open {
    overflow: hidden;
  }

  footer {
    padding: 56px 24px;
  }
  footer .inner {
    width: 100%;
  }
  footer .inner .top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  footer .inner .top>div {
    max-width: 420px;
    margin: 0 auto;
  }
  footer .inner .bottom .copyright {
    max-width: 520px;
    text-align: center;
  }
  footer .inner .bottom .copyright span {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  #banner-with-booking>img,
  #banner-with-booking>video {
    min-height: 720px;
    aspect-ratio: auto;
  }
  #banner-with-booking h2 {
    max-width: calc(100% - 48px);
    font-size: 34px;
    line-height: 1.15;
  }
  #banner-with-booking .booking-form {
    bottom: 42px;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
    padding: 22px 28px;
  }

  #simple-image-with-content,
  #highlighted-rooms,
  #image-with-page-links,
  #client-reviews,
  #image-mosaic-with-content {
    margin: 80px auto;
  }
  #simple-image-with-content {
    width: calc(100% - 48px);
  }
  #simple-image-with-content .parallax-image-wrap {
    aspect-ratio: 16 / 9;
  }
  #highlighted-rooms .rooms-flex {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: 100%;
  }
  #highlighted-rooms .rooms-flex .room-card {
    width: 100%;
  }

  #image-with-page-links {
    padding: 44px 28px;
  }
  #image-with-page-links .bg-img-mask,
  #image-with-page-links .background-image {
    height: 100%;
    aspect-ratio: auto;
  }
  #image-with-page-links .links-flex {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
  #image-with-page-links .links-flex .link-item {
    align-items: center;
  }
  #image-with-page-links .links-flex .link-item .content,
  #image-with-page-links .links-flex .link-item h3,
  #image-with-page-links .links-flex .link-item p {
    text-align: center;
  }
  #image-with-page-links .links-flex .link-item a {
    justify-content: center;
  }
  #image-with-page-links .links-flex .link-item:not(:last-child) .content::after {
    display: none;
  }
  .background-beige {
    height: 900px;
  }

  #client-reviews {
    padding: 40px 42px;
  }
  #client-reviews .glide__track {
    margin: 0 34px;
  }

  #timeline .inner {
    padding: 56px 0;
  }
  #timeline .timeline-description {
    padding: 0 24px;
  }

  #image-mosaic-with-content .mosaic-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
  #image-mosaic-with-content .mosaic-middle {
    height: 620px;
  }
  #image-mosaic-with-content .mosaic-left-bottom,
  #image-mosaic-with-content .mosaic-right-middle {
    height: 420px;
  }
  #image-mosaic-with-content .mosaic-right-top {
    height: 260px;
  }

  #accordion .inner {
    width: calc(100% - 48px);
    padding: 80px 0;
  }
  #accordion .accordion-bg {
    inset: 80px 0;
    height: calc(100% - 160px);
  }
  #accordion .accordion-wrap {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  #accordion .right {
    min-height: 280px;
  }

  #contact-info .inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 80px 0;
  }
  #contact-info .contact-content {
    text-align: center;
  }
  #contact-info .address {
    margin-left: auto;
    margin-right: auto;
  }
  #contact-info .contact-map {
    height: 360px;
  }
}

@media (max-width: 768px) {
  :root {
    --container: calc(100vw - 32px);
  }
  #accordion .inner,
  #contact-info .inner,
  #single-room-hero,
  #room-commodities .commodities-grid,
  #single-room-reviews {
    width: calc(100% - 32px);
  }

  #banner-with-booking>img,
  #banner-with-booking>video {
    min-height: 680px;
  }
  #banner-with-booking h2 {
    font-size: 28px;
    max-width: calc(100% - 36px);
  }
  #banner-with-booking .booking-form {
    max-width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 18px;
    bottom: 28px;
  }
  #banner-with-booking .booking-field label {
    font-size: 11px;
  }
  #banner-with-booking .booking-field input,
  #banner-with-booking .booking-field select {
    font-size: 14px;
  }

  #simple-image-with-content,
  #highlighted-rooms,
  #image-with-page-links,
  #client-reviews,
  #image-mosaic-with-content {
    width: calc(100% - 32px);
    margin: 64px auto;
  }
  #simple-image-with-content h2,
  #highlighted-rooms h2 {
    font-size: 26px;
    line-height: 1.15;
  }
  #simple-image-with-content h2:after,
  #highlighted-rooms h2:after {
    width: 120px;
    height: 3px;
  }
  #simple-image-with-content p,
  #highlighted-rooms p,
  #image-mosaic-with-content .mosaic-content-below {
    font-size: 14px;
  }
  #simple-image-with-content .parallax-image-wrap {
    aspect-ratio: 4 / 3;
  }

  #highlighted-rooms .rooms-flex {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  #highlighted-rooms .rooms-flex .room-card .img-wrap,
  #highlighted-rooms .rooms-flex .room-card .img-wrap img {
    max-width: 160px;
  }

  #image-with-page-links {
    padding: 36px 20px;
  }
  #image-with-page-links .links-flex {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  #image-with-page-links .links-flex .link-item {
    align-items: center;
  }
  #image-with-page-links .links-flex .link-item .img-mask {
    max-width: 190px;
  }
  .background-beige {
    display: none;
  }

  #client-reviews {
    padding: 34px 24px;
    gap: 38px;
  }
  #client-reviews span {
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }
  #client-reviews h2,
  #client-reviews span>p {
    text-align: center;
  }
  #client-reviews .glide__track {
    margin: 0 30px;
  }

  #timeline .timeline-description {
    font-size: 14px;
  }

  #image-mosaic-with-content {
    gap: 42px;
  }
  #image-mosaic-with-content .mosaic-text-box {
    min-height: 220px;
    padding: 34px 28px;
  }
  #image-mosaic-with-content .mosaic-middle,
  #image-mosaic-with-content .mosaic-left-bottom,
  #image-mosaic-with-content .mosaic-right-middle {
    height: 360px;
  }
  #image-mosaic-with-content .mosaic-right-top {
    height: 220px;
  }

  #accordion .inner {
    padding: 64px 0;
  }
  #accordion .accordion-bg {
    inset: 64px 0;
    height: calc(100% - 128px);
  }
  #accordion h2 {
    font-size: 24px;
    margin: 30px 0 34px;
  }
  #accordion .accordion-wrap {
    max-width: calc(100% - 32px);
  }
  #accordion .accordion-header {
    min-height: 52px;
    padding: 0 18px;
    font-size: 13px;
  }
  #accordion .accordion-content {
    padding: 0 18px;
    font-size: 12px;
  }
  #accordion .accordion-item.active .accordion-content {
    padding: 0 18px 20px;
  }
  #accordion .right {
    padding: 48px 24px;
  }

  #contact-info .inner {
    padding: 64px 0;
  }
  #contact-info .address,
  #contact-info .contacts p {
    font-size: 15px;
  }
  #contact-info .contact-map {
    height: 320px;
  }
}

@media (max-width: 540px) {
  header .top {
    padding: 14px 18px;
  }
  header .top>a.logo,
  header .top .logo {
    max-width: 156px;
  }
  header .bottom {
    top: 51px;
    height: calc(100vh - 51px);
    padding: 46px 20px;
  }
  header .bottom ul {
    gap: 24px;
  }
  header .bottom ul li a {
    font-size: 18px;
  }

  footer {
    padding: 46px 20px;
  }
  footer .inner .top {
    gap: 24px;
  }
  footer .inner .top>div h2,
  footer .inner .top>div p,
  footer .inner .bottom {
    font-size: 12px;
  }
  footer .inner .bottom .copyright {
    gap: 8px;
  }

  #banner-with-booking>img,
  #banner-with-booking>video {
    min-height: 640px;
  }
  #banner-with-booking h2 {
    font-size: 24px;
    letter-spacing: 0.06em;
  }
  #banner-with-booking .booking-form {
    padding: 20px;
  }

  #simple-image-with-content,
  #highlighted-rooms,
  #image-with-page-links,
  #client-reviews,
  #image-mosaic-with-content {
    margin: 54px auto;
  }
  #simple-image-with-content {
    gap: 28px;
  }
  #simple-image-with-content h2,
  #highlighted-rooms h2 {
    font-size: 22px;
  }
  #simple-image-with-content .parallax-image-wrap {
    aspect-ratio: 1 / 1;
  }

  #image-with-page-links {
    padding: 32px 18px;
  }
  #image-with-page-links .links-flex .link-item .img-mask {
    max-width: 170px;
  }

  #client-reviews {
    padding: 30px 18px;
  }
  #client-reviews .glide__track {
    margin: 0 22px;
  }

  #accordion .inner {
    width: calc(100% - 24px);
    padding: 54px 0;
  }
  #accordion .accordion-bg {
    inset: 54px 0;
    height: calc(100% - 108px);
  }
  #accordion h2 {
    font-size: 21px;
  }
  #accordion .accordion-wrap {
    max-width: calc(100% - 20px);
  }
  #accordion .right {
    min-height: 240px;
  }

  #contact-info .inner {
    width: calc(100% - 32px);
    padding: 54px 0;
  }
  #contact-info .contact-map {
    height: 280px;
  }
}

/* LÉRIAS PAGE MOBILE */
@media (max-width: 1023px) {
  #lerias-page {
    padding: 100px 24px 90px;
    overflow: hidden;
  }
  #lerias-page:before {
    top: 60px;
    left: 50%;
    width: 460px;
    height: 620px;
    transform: translateX(-50%) rotate(8deg);
    border-radius: 48% 52% 50% 50%;
  }
  #lerias-page:after {
    left: -40%;
    right: -40%;
    top: 560px;
    height: calc(100% - 520px);
    min-height: 1500px;
    border-radius: 50% 50% 0 0 / 5% 5% 0 0;
  }
  #lerias-page .decor-ring-left {
    left: -230px;
    top: 120px;
    width: 340px;
    height: 560px;
    opacity: 0.55;
  }
  #lerias-page .decor-ring-right {
    right: -235px;
    top: 520px;
    width: 340px;
    height: 720px;
    opacity: 0.55;
  }
  #lerias-page .lerias-intro {
    max-width: 620px;
    margin: 0 auto 72px;
  }
  #lerias-page .lerias-logo {
    width: 160px;
    margin-bottom: 24px;
  }
  #lerias-page .circles-decor {
    width: 82px;
    margin-bottom: 34px;
  }
  #lerias-page .lerias-intro-text {
    max-width: 560px;
    font-size: 13px;
    line-height: 1.4;
    padding: 0 8px;
  }
  #lerias-page .lerias-story {
    max-width: 620px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  #lerias-page .story-content {
    text-align: center;
  }
  #lerias-page .story-content h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }
  #lerias-page .story-text {
    font-size: 13px;
    line-height: 1.4;
  }
  #lerias-page .story-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  #lerias-page .lerias-chef {
    max-width: 620px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  #lerias-page .chef-image-wrap {
    max-width: 340px;
    margin: 0 auto;
    order: 1;
  }
  #lerias-page .chef-content {
    order: 2;
    text-align: center;
  }
  #lerias-page .chef-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #lerias-page .chef-text {
    max-width: 560px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.4;
  }
  #lerias-page .chef-sweets-gallery {
    margin-top: 34px;
    display: flex;
    justify-content: center;
  }
  #lerias-page .chef-sweets-gallery img {
    max-width: 360px;
  }
  #lerias-page .lerias-bottom-mosaic {
    max-width: 620px;
    margin: 0 auto;
  }
  #lerias-page .bottom-mosaic-media {
    grid-template-columns: 1fr;
  }
  #lerias-page .bottom-left-grid-image,
  #lerias-page .bottom-video-wrap {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  #lerias-page .bottom-left-grid-image img,
  #lerias-page .bottom-video-wrap video {
    height: 100%;
  }
  #lerias-page .bottom-video-wrap:after {
    border-top-width: 26px;
    border-bottom-width: 26px;
    border-left-width: 42px;
  }
  #lerias-page .bottom-mosaic-texts {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px;
    text-align: center;
  }
  #lerias-page .bottom-description h3 {
    font-size: 20px;
  }
  #lerias-page .bottom-description div {
    max-width: 520px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (max-width: 640px) {
  #lerias-page {
    padding: 92px 18px 70px;
  }
  #lerias-page:before {
    top: 70px;
    width: 390px;
    height: 540px;
  }
  #lerias-page:after {
    top: 520px;
    left: -70%;
    right: -70%;
    height: calc(100% - 490px);
    min-height: 1550px;
    border-radius: 50% 50% 0 0 / 3% 3% 0 0;
  }
  #lerias-page .decor-ring-left {
    left: -265px;
    top: 115px;
    width: 330px;
    height: 560px;
    opacity: 0.45;
  }
  #lerias-page .decor-ring-right {
    right: -285px;
    top: 485px;
    width: 360px;
    height: 760px;
    opacity: 0.45;
  }
  #lerias-page .lerias-intro {
    margin-bottom: 58px;
  }
  #lerias-page .lerias-logo {
    width: 138px;
    margin-bottom: 20px;
  }
  #lerias-page .circles-decor {
    width: 72px;
    margin-bottom: 28px;
  }
  #lerias-page .lerias-intro-text {
    font-size: 11px;
    line-height: 1.35;
    padding: 0;
  }
  #lerias-page .lerias-intro-text p {
    margin-bottom: 16px;
  }
  #lerias-page .lerias-story {
    margin-bottom: 64px;
    gap: 28px;
  }
  #lerias-page .story-content h2,
  #lerias-page .chef-content h2 {
    font-size: 22px;
    line-height: 1.15;
  }
  #lerias-page .story-text,
  #lerias-page .chef-text,
  #lerias-page .bottom-description div {
    font-size: 11px;
    line-height: 1.4;
  }
  #lerias-page .story-text p,
  #lerias-page .chef-text p {
    margin-bottom: 14px;
  }
  #lerias-page .story-image-wrap {
    max-width: 300px;
    padding: 8px;
    border-width: 1px;
  }
  #lerias-page .lerias-chef {
    margin-bottom: 64px;
    gap: 30px;
  }
  #lerias-page .chef-image-wrap {
    max-width: 290px;
  }
  #lerias-page .chef-sweets-gallery img {
    max-width: 300px;
  }
  #lerias-page .bottom-mosaic-media {
    border-width: 1px;
  }
  #lerias-page .bottom-left-grid-image,
  #lerias-page .bottom-video-wrap {
    aspect-ratio: 1 / 1;
  }
  #lerias-page .bottom-mosaic-texts {
    gap: 30px;
    margin-top: 30px;
  }
  #lerias-page .bottom-description h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 420px) {
  #lerias-page:before {
    width: 340px;
    height: 510px;
    left: 60%;
  }
  #lerias-page:after {
    top: 720px;
    min-height: 1600px;
  }
  #lerias-page .story-image-wrap,
  #lerias-page .chef-image-wrap {
    max-width: 100%;
  }
}

/* ROOMS PAGE */
.rooms-page #single-room-hero .room-hero-slide {
  position: relative;
}
.rooms-page #single-room-hero .room-hero-image {
  position: relative;
}
.rooms-page #single-room-hero .room-hero-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04));
  z-index: 1;
  pointer-events: none;
}
.rooms-page #single-room-hero .room-hero-content,
.rooms-page #single-room-hero .room-show-more {
  z-index: 2;
}
.rooms-page #single-room-hero .room-gallery-thumbs {
  grid-template-columns: repeat(5, 1fr);
  overflow: visible;
}
.rooms-page #single-room-hero .room-thumb img {
  width: 100%;
  height: 93px;
  aspect-ratio: auto;
}
#room-commodities .room-commodities-panel {
  display: none;
}
#room-commodities .room-commodities-panel.active {
  display: block;
  animation: roomCommoditiesFade 0.35s ease-out;
}
@keyframes roomCommoditiesFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1023px) {
  .rooms-page #single-room-hero .room-gallery-thumbs {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .rooms-page #single-room-hero .room-thumb img {
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  .rooms-page #single-room-hero .room-gallery-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 150px;
    grid-template-columns: none;
  }
  .rooms-page #single-room-hero .room-thumb img {
    height: 90px;
  }
}