:root {
  --black: #090909;
  --dark: #111111;
  --panel: #171717;
  --white: #ffffff;
  --muted: #656565;
  --soft: #f7f3ee;
  --line: #e8e0d7;
  --red: #be1118;
  --gold: #c89b62;
  --shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 104px;
  scrollbar-color: var(--red) #111111;
  scrollbar-width: thin;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--white);
  font-family: 'Jost Regular';
  font-size: 16px;
  line-height: 1.65;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(180deg, #e5262e, var(--red));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff3a42, #9f0d13);
}

::-webkit-scrollbar-corner {
  background: #ffffff;
}
main{
  overflow: hidden;
}

section,
.site-footer {
  scroll-margin-top: 104px;
}
img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}
h1,h2,h3,h4{
  font-family: 'Qlassy';
  font-weight: normal;
}
.container {
  width: min(1400px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
    padding: 0;
    background: linear-gradient(267deg, #be1118, #be1118, #000000, #000000);
    .brand-logo {
    padding: 0px 6px;
        top: 0;
}
.brand-logo img {
    display: inline-block;
        width: 86px;
        height: 89px;
        border-radius: 50%;
        margin-top: 5px;
}
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 103px;
}

.brand-logo {
 border-radius: 0 600px 600px 0;
    background: #000;
    position: absolute;
    left: 0;
    top: 15px;
    width: 300px;
    text-align: right;
    padding: 13px 19px;
    transition: all .5s;
}

.brand-logo img {
  display: inline-block;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  transition: all .5s;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #FFF;
  font-family: 'Jost Regular';
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}

.call-link img {
  width: 24px;
  filter: brightness(0) invert(1);
  height: auto;
  transform: translateY(6px);
}

.btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 36px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Jost Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--red), #ef3038 48%, var(--black));
  opacity: 0;
  transform: scaleX(.72);
  transform-origin: left;
  transition: opacity .32s ease, transform .32s ease;
}

.btn::after {
  position: absolute;
  top: -40%;
  left: -38%;
  width: 34%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-22deg);
  transition: left .58s ease;
}

.btn:hover {
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(190,17,24,.28);
  transform: translateY(-4px);
}

.btn:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.btn:hover::after {
  left: 118%;
}

.btn:active {
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  transform: translateY(-1px) scale(.98);
}

.btn:focus-visible,
.custom-arrow:focus-visible,
.dining-arrow:focus-visible,
.gallery-lightbox-close:focus-visible,
.popup-close:focus-visible,
.faq-item button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn img {
  width: 22px;
  filter: invert(1);
  transition: filter .25s ease, transform .28s ease;
}

.btn:hover img {
  filter: brightness(0) invert(1);
  transform: translateX(4px);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-light {
  color: var(--black);
  background: var(--white);
}

.btn-light img {
  filter: none;
}

.btn-light:hover img {
  filter: brightness(0) invert(1);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: transparent;
}

.section-kicker {
  display: inline-flex;
    gap: 10px;
    font-family: 'Taprom Regular';
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 180.952%;
    letter-spacing: 1.26px;
    align-items: center;
}



.section-copy .section-kicker::before,
.banner-content .section-kicker::before,
.footer-card .section-kicker::before,
.testimonial-panel .section-kicker::before,
.dining-card .section-kicker::before,
.surroundings-copy .section-kicker::before {
  content: "";
}

.banner-content .section-kicker::after {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 60%;
  margin-top: 10px;
  color: #FFF;
  font-size: 76px;
  font-style: normal;
  font-weight: normal;
  line-height: 95px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 22px;
}

.banner-section {
  position: relative;
  color: var(--white);
  background: var(--black);
}

.banner-slide {
  height: 1098px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.26) 46%, rgba(0,0,0,.12));
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  align-items: flex-start;
  .section-kicker {
    font-family: 'Jost Regular';
}
}

.banner-content p {
    max-width: 52%;
    color: #FFF;
    font-family: 'Jost Medium';
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 30px;
}

.btn-light {
    width: auto;
    justify-content: space-between;
    border-color: rgba(255, 255, 255, .72);
    background: transparent;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 38px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 5px 8px 25px;
    gap: 25px;
}

.btn-light span {
  position: relative;
  z-index: 1;
  padding: 11px 8px;
    background: var(--white);
    width: 57px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .28s ease, transform .28s ease;
}

.btn-light:hover span {
  background: rgba(255,255,255,.16);
  transform: translateX(3px);
}

.slick-dots {
  bottom: 224px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

.slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0 2px;
  background: #fff;
  border-radius: 50%;
  transition: all .5s;
  &.slick-active{
    width: 44px;
    height: 15px;
    border-radius: 8px;
    background: #FFF;
  }
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots li button::before {
  width: 8px;
  height: 8px;
  color: var(--white);
  opacity: 1;
  font-size: 10px;
  line-height: 8px;
}

.slick-dots li.slick-active button::before {
  color: var(--white);
  opacity: 1;
}

.slick-dots li.slick-active button {
  position: relative;
  opacity: 0;
}

.custom-arrow {
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.18);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.custom-arrow::before {
  display: block;
  width: 21px;
  height: 15px;
  margin: auto;
  content: "";
  background: url("../img/slider-arrow.webp") center/contain no-repeat;
  opacity: 1;
}

.slick-prev.custom-arrow::before {
  transform: rotate(180deg);
}

.custom-arrow:hover {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(190,17,24,.25);
  transform: translateY(-3px) scale(1.04);
}

.custom-arrow:hover::before {
  filter: brightness(0) invert(1);
}

.light-arrow {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.light-arrow::before {
  filter: brightness(0) invert(1);
}

.rooms-slider .slick-prev,
.rooms-slider .slick-next,
.amenities-slider .slick-prev,
.amenities-slider .slick-next {
  top: calc(100% + 34px);
}

.rooms-slider .slick-prev,
.amenities-slider .slick-prev {
  left: calc(50% - 54px);
}

.rooms-slider .slick-next,
.amenities-slider .slick-next {
  right: calc(50% - 54px);
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  top: auto;
  bottom: -20px;
}

.testimonial-slider .slick-prev {
  left: auto;
  right: 58px;
}

.testimonial-slider .slick-next {
  right: 0;
}

.whatsapp-float {
  position: fixed;
    right: 11px;
    bottom: 22px;
    z-index: 40;
    width: auto;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .28));
    transition: transform .28s ease, filter .28s ease;
}

.fixed-enquiry-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 60;
  min-width: 126px;
  height: 42px;
  padding: 0 16px;
  border: 0;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), #ef3038);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg) translateY(-42px);
  transform-origin: right top;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
}

.fixed-enquiry-btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform .58s ease;
}

.fixed-enquiry-btn:hover {
  background: linear-gradient(135deg, #ef3038, var(--black));
  box-shadow: 0 16px 34px rgba(0,0,0,.32);
  transform: translateY(-50%) rotate(-90deg) translateY(-46px);
}

.fixed-enquiry-btn:hover::before {
  transform: translateX(120%) skewX(-20deg);
}

.banner-social {
  position: absolute;
  left: calc((100% - min(1400px, calc(100% - 36px))) / 2 + 18px);
  bottom: 68px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
}

.banner-social span {
  width: 284px;
    height: 1px;
    background: rgb(255, 255, 255);
    margin-left: -115px;
}

.banner-social a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  transition: background .28s ease, border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.banner-social a:hover {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(190,17,24,.26);
  transform: translateY(-4px) scale(1.05);
}

.banner-social img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.34));
  transform: translateY(-5px) scale(1.06);
}

.dark-section {
  color: var(--white);
  background: var(--black);
}

.build-comfort-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 42px;
  background-color: #090909;
  background-image: url("../img/about-bg.webp");
  background-size: cover;
  background-position: center;
}

.build-comfort-grid {
  display: grid;
    grid-template-columns: minmax(320px, 580px) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.section-copy p {
  color: rgba(255,255,255,.78);
  font-size: 11px;
  line-height: 1.85;
}

.build-comfort-section .section-copy {
  display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: start;
}

.build-comfort-section .section-copy h2 {
    margin-top: 8px;
    color: #FFF;
}
h2{
font-family: 'Qlassy';
    font-size: 50px;
    font-style: normal;
    font-weight: normal;
    line-height: 55px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 22px;
}
.build-comfort-section .section-copy p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}

.build-comfort-section .section-kicker {
  color: #FFF;
font-family: 'Taprom Regular';
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: 180.952%;
letter-spacing: 1.26px;
}

p{
  margin-bottom: 1rem;
}

.about-image-stack {
  display: flex;
    gap: 38px;
    align-items: center;
    justify-content: end;
    padding-top: 0;
    margin-right: calc((100vw - min(1400px, calc(100vw - 36px))) / -2);
}

.about-image-stack img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-stack .about-img-small {
  height: auto;
  margin-top: 38px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px;
  margin-top: 48px;
  margin-inline: auto;
  text-align: center;
}

.counter-card {
  position: relative;
  min-height: 112px;
  padding: 18px 15px 10px;
  background-image: url("../img/counter-bg.webp");
  background-repeat: no-repeat;
  background-position: center 22px;
  background-size: 126px auto;
}

.counter-card:not(:last-child)::after {
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: 88px;
  content: "";
  background: rgba(255,255,255,.12);
}

.counter-card strong {
  display: block;
    color: #FFF;
    font-family: 'Qlassy';
    font-size: 85px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.counter-card span {
  color: #FFF;
text-align: center;
font-family: 'Qlassy';
font-size: 26px;
font-style: normal;
font-weight: 400;
line-height: 111.538%;
}

.counter-card strong .count-number {
  display: inline;
  margin: 0;
  color: var(--white);
  font-size: inherit;
  line-height: inherit;
}

.why-choose-section {
  position: relative;
  padding: 62px 0 0px;
  overflow: hidden;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: minmax(390px, 520px) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.why-choose-section .section-heading {
  padding-top: 5px;
}

.why-choose-section .section-kicker {
  color: var(--black);
}
p{
  color: #383737;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 155%;
}

.why-choose-section .section-heading h2 {
    max-width: 100%;
    margin-top: 8px;
}

.why-choose-img {
  width: calc(100% + ((100vw - min(1400px, calc(100vw - 36px))) / 2));
  max-width: none;
  height: auto;
  margin-top: 30px;
  margin-left: calc((100vw - min(1400px, calc(100vw - 36px))) / -2);
  object-fit: cover;
}

.why-content {
  position: relative;
  padding-top: 0;
  background: url("../img/why-choose-vector.webp") 0 0 / 112px auto no-repeat;
      height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 10%;
    align-items: start;
}

.why-content > p {
  max-width: 100%;
    min-height: 108px;
    margin: 0;
    padding: 4px 0 0 68px;
    line-height: 1.65;
}

.why-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 26px 0 31px;
  overflow: hidden;
  background: url("../img/why-choose-vector2.webp") right center / 270px auto no-repeat;
}

.why-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 18px;
  min-height: 119px;
  padding: 21px 28px 20px 12px;
  background: transparent;
  transition: all .5s;
  &:hover{
    background: #fff;
    box-shadow: 0 -1px 17px -4px rgba(0, 0, 0, .22);
    transform: translateY(-5px);
    img{
      transform: rotateY(180deg);
    }
  }
}
img{
  transition: all .5s;
  height: auto;
}
.why-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.why-card:nth-child(-n+2) {
  border-bottom: 1px solid var(--line);
}

.why-card img {
  width: 38px;
  margin-top: 4px;
  transform: translateY(5px);
}

.why-card h3 {
  color: #131313;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: capitalize;
}

.why-card p {
  grid-column: 2;
}


.why-content .btn-dark {
  width: auto;
  justify-content: space-between;
  background: #000;
  span{
    background: #000;
    outline: 1px solid #fff;
    img{
      filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(343deg) brightness(103%) contrast(104%);
    }
  }
}


.stays-accommodations-section {
  padding: 52px 0 86px;
  overflow: hidden;
  background-color: var(--black);
  background-image:  url("../img/about-bg.webp");
  background-size: cover;
  background-position: center;
}

.stays-accommodations-section .narrow-heading {
  max-width: 52%;
}

.stays-accommodations-section .section-kicker {
  color: var(--white);
}
.stays-accommodations-section .narrow-heading h2 {
  margin-top: 7px;
  color: #fff;
}
.stays-accommodations-section .narrow-heading p {
  max-width: 100%;
  margin: 12px auto 0;
  color: rgb(255, 255, 255);
  line-height: 1.55;
}

.narrow-heading {
  max-width: 780px;
  text-align: center;
}

.narrow-heading .section-kicker {
  justify-content: center;
}

.rooms-slider {
  position: relative;
  width: 100%;
  margin: 34px auto 0;
  padding-bottom: 66px;
}

.rooms-slider::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: min(920px, calc(100% - 32px));
  height: 2px;
  margin: 0;
  content: "";
  transform: translateX(-50%);
  background: rgba(255,255,255,.5);
}

.rooms-slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: flex;
  width: min(920px, calc(100% - 32px));
  height: 2px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
}

.rooms-slider .slick-dots li {
  flex: 1;
  width: auto;
  height: 2px;
  margin: 0;
}

.rooms-slider .slick-dots li button {
  width: 100%;
  height: 2px;
  padding: 0;
}

.rooms-slider .slick-dots li button::before,
.rooms-slider .slick-dots li.slick-active button::after {
  display: none;
}

.rooms-slider .slick-dots li.slick-active button {
  background: var(--red);
  opacity: 1;
}

.rooms-slider .slick-list {
  overflow: hidden;
}

.rooms-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.room-card {
    position: relative;
    width: min(912px, 56vw);
    height: 800px;
    margin: 0 14px;
    overflow: hidden;
    background: var(--panel);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.room-card:hover img {
  transform: scale(1.06);
}

.room-capacity {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 9px 17px;
  background: #B30709;
  opacity: 1;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.room-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 92px;
  padding: 0 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent 0, rgba(0,0,0,.78) 100%);
  transition: min-height .34s ease, padding .34s ease, background .34s ease;
  align-items: start;
}


.room-overlay h3 {
    transition: font-size .5s ease;
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    text-transform: capitalize;
}

.room-overlay p {
  margin: 10px 0 0;
  color: rgb(255, 255, 255);
  line-height: 1.65;
}

.room-details,
.room-overlay .btn {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height .34s ease, opacity .28s ease, transform .28s ease, margin .28s ease;
}

.room-details ul {
  margin: 10px 0 0;
  padding-left: 24px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  margin-bottom: 20px;
}

.room-overlay .btn {
  margin-top: 14px;
  span{
    img{
      transform: scale(1);
      width: auto;
      height: auto;
    }
  }
}


.room-card:hover .room-overlay {
     min-height: auto;
    padding: 40px;
    background: rgb(22 21 21 / 74%);
}

.room-card:hover .room-overlay span {
  opacity: 1;
}

.room-card:hover .room-overlay h3 {
  font-size: 45px;
  line-height: normal;
  margin-bottom: 10px;
}

.room-card:hover .room-details,
.room-card:hover .room-overlay .btn {
  max-height: max-content;
  opacity: 1;
  transform: translateY(0);
}

.rooms-slider .slick-center .room-card .room-capacity {
  opacity: 1;
  transform: translateY(0);
}

.rooms-slider .slick-center .room-card .room-overlay,
.rooms-slider .slick-center .room-card:hover .room-overlay {
  min-height: 275px;
  padding: 24px 28px 29px;
  background: rgba(0,0,0,.58);
}

.rooms-slider .slick-center .room-card .room-overlay span,
.rooms-slider .slick-center .room-card:hover .room-overlay span {
  opacity: 0;
  max-height: 0;
}

.rooms-slider .slick-center .room-card .room-overlay h3,
.rooms-slider .slick-center .room-card:hover .room-overlay h3 {
  font-size: 31px;
}

.rooms-slider .slick-center .room-card .room-details,
.rooms-slider .slick-center .room-card .room-overlay .btn,
.rooms-slider .slick-center .room-card:hover .room-details,
.rooms-slider .slick-center .room-card:hover .room-overlay .btn {
  max-height: 230px;
  opacity: 1;
  transform: translateY(0);
}

.rooms-slider .slick-slide:not(.slick-center) .room-card:hover .room-overlay {
  min-height: 92px;
  padding: 0 26px 26px;
  background: linear-gradient(transparent 0, rgba(0,0,0,.78) 100%);
}

.rooms-slider .slick-slide:not(.slick-center) .room-card:hover .room-overlay span,
.rooms-slider .slick-slide:not(.slick-center) .room-card:hover .room-details,
.rooms-slider .slick-slide:not(.slick-center) .room-card:hover .room-overlay .btn {
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
}

.rooms-slider .slick-slide:not(.slick-center) .room-card:hover .room-overlay h3 {
  font-size: 21px;
}

.dining-experience-section {
  padding: 66px 0 30px;
  background: var(--white);
}

.dining-wrap {
  position: relative;
}

.dining-slide {
  position: relative;
  width: 76%;
  height: auto;
  padding-bottom: 90px;
  margin-left: auto;
}

.dining-slider .slick-list {
  overflow: hidden;
}

.dining-img {
  width: 100%;
  height: auto;
  margin-left: auto;
  object-fit: cover;
}

.dining-card {
  position: absolute;
    left: -240px;
    bottom: 0px;
    width: min(790px, 92%);
    min-height: auto;
    padding: 47px;
    color: var(--white);
    background: #c80006;
    overflow: hidden;
}

.dining-card::after {
  position: absolute;
    right: -40px;
    top: 54px;
    content: "";
    background: url(../img/why-choose-vector.webp) center / contain no-repeat;
    filter: brightness(0) invert(1);
    opacity: .36;
    pointer-events: none;
    width: 272.013px;
    height: 271.98px;
}

.dining-card .section-kicker {
  display: none;
}

.dining-card h2 {
  position: relative;
  z-index: 1;
  color: #fff;
}
.dining-card h3{
    color: #FFF;
    font-family: 'Taprom Regular';
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 113.514%;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.dining-card p {
  position: relative;
  z-index: 1;
  color: rgb(255, 255, 255);
  line-height: 1.65;
  margin-bottom: 30px;
}



.dining-arrow {
  position: absolute;
  bottom: 10px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: background .28s ease, color .28s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.dining-arrow::before {
  content: "\2190";
  color: var(--black);
  font-size: 16px;
  line-height: 1;
}

.dining-next::before {
  content: "\2192";
}

.dining-prev {
  left: calc(50% + 100px);
}

.dining-next {
  left: calc(50% + 165px);
}

.dining-arrow:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(190,17,24,.25);
  transform: translateY(-3px) scale(1.05);
}

.dining-arrow:hover::before {
  color: var(--white);
}

.amenities-facilities-section {
  padding: 80px 0 110px;
  p{
    position: relative;
    &:after{
      content: '';
      background-image: url(../img/why-choose-vector.webp);
      width: 165.36px;
      height: 165.36px;
      position: absolute;
      left: -77px;
      top: -30px;
      opacity: 0.62;
      background-size: 160px;
      background-repeat: no-repeat;
    }
        
  }
  .dining-prev {
    left: calc(50% + -49px);
}
.dining-next {
    left: calc(50% + 5px);
}
.dining-arrow {
    bottom: -70px;
}
}

.split-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: end;
}

.amenities-slider {
  margin-top: 36px;
}

.amenity-card {
  position: relative;
  margin: 0 13px;
  overflow: hidden;
  background: var(--black);
}

.amenity-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform .4s ease;
}

.amenity-card:hover img {
  transform: scale(1.06);
}

.amenity-card h3 {
  position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 29px;
    background: #000000;
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 31px;
}

.pool-leisure-section {
  padding: 98px 0 110px;
  background: var(--soft) url("../img/pool-bg.webp") center/cover no-repeat;
}

.pool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.pool-grid img {
  width: 100%;
  height: 690px;
  object-fit: cover;
}

.what-client-say-section {
  background-size: contain;
  background-position: right center;
  h2{
    color: #fff;
    margin-bottom: 40px;
  }
  &.dark-section {
    color: var(--white) ;
    background: url("../img/testimonials-bg.webp") #232222;
}
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-panel {
  align-self: center;
  max-width: 700px;
  padding: 54px 70px;
}

.testimonial-panel p {
  color: rgb(255, 255, 255);
}

.client-row {
  display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 50px;
    color: #FFF;
    font-family: 'Qlassy';
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    border-top: 1px solid #727272;
    padding-top: 40px;
}

.client-row img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.client-row span {
  display: block;
  color: var(--gold);
  font-size: 13px;
}

.our-gallery-section {
  padding: 95px 0;
  background-image: url("../img/about-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  h2{
    color: #fff;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 410px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--black);
  cursor: pointer;
}

.gallery-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0,0,0,.48);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-plus {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-plus img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.gallery-item:hover::before,
.gallery-item:hover .gallery-plus,
.gallery-item:focus-visible::before,
.gallery-item:focus-visible .gallery-plus {
  opacity: 1;
}

.gallery-item:hover > img,
.gallery-item:focus-visible > img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-plus,
.gallery-item:focus-visible .gallery-plus {
  transform: scale(1);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-card {
  position: relative;
  z-index: 1;
  width: min(1000px, 94vw);
  transform: translateY(18px) scale(.96);
  transition: transform .3s ease;
}

.gallery-lightbox.active .gallery-lightbox-card {
  transform: translateY(0) scale(1);
}

.gallery-lightbox-card > img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: var(--black);
  box-shadow: var(--shadow);
}

.gallery-lightbox-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
  background: rgba(0,0,0,.35);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.gallery-lightbox-close:hover {
  border-color: var(--red);
  background: var(--red);
  transform: rotate(90deg) scale(1.05);
}

.gallery-action {
  margin-top: 34px;
  text-align: center;
}

.frequently-asked-questions-section {
  padding: 100px 0;
  background: var(--white) url("../img/faq-bg.webp") center/cover no-repeat;
}

.faq-list {
  max-width: 900px;
  margin-top: 34px;
}

.faq-item {
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: rgba(255,255,255,.92);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.faq-item:hover {
  border-color: rgba(190,17,24,.32);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 18px 52px 18px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-family: 'Qlassy';
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
  line-height: 37px;
  transition: color .25s ease, background .25s ease;
}

.faq-item button:hover {
  color: var(--red);
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 22px;
  height: 22px;
  content: "+";
  color: var(--white);
  background: var(--black);
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
  transition: background .25s ease, transform .25s ease;
}

.faq-item button:hover::after,
.faq-item.active button::after {
  background: var(--red);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.active button::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.hotel-surroundings-section {
  position: relative;
  padding: 0;
  background: var(--white);
}

.surroundings-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 58px;
  align-items: stretch;
}

.surroundings-copy {
  position: relative;
  padding: 78px 0 74px;
}

.surroundings-copy::before {
  position: absolute;
  left: -82px;
  top: 168px;
  width: 360px;
  height: 360px;
  content: "";
  background: url("../img/place-vector.webp") center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.surroundings-copy > * {
  position: relative;
  z-index: 1;
}

.surroundings-copy .section-kicker {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
}

.surroundings-copy h2 {
  margin-top: 4px;
  font-size: clamp(36px, 3.4vw, 50px);
}

.places-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
}

.place-category {
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--line);
}

.place-category:first-child {
  padding-top: 0;
}

.place-category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.places-grid h3 {
  margin-bottom: 14px;
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 55px;
    text-transform: capitalize;
}

.place-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
}

.places-grid p {
      display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    margin: 0;
    line-height: 1.15;
    color: #000;
    font-family: 'Qlassy';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
}

.places-grid img {
  flex: 0 0 auto;
  width: 14px;
  margin-top: 2px;
  height: auto;
}

.places-grid small {
  display: block;
    margin-top: 4px;
    color: var(--dark);
    font-size: 19px;
    line-height: 1.2;
    font-family: 'Jost Regular';
}

.map-card {
  position: relative;
  min-height: 640px;
  margin-right: calc((100vw - min(1400px, calc(100vw - 36px))) / -2);
  overflow: hidden;
  box-shadow: none;
}

.map-card::after {
  content: none;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
}

.site-footer {
  padding: 42px 0 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.82)), url("../img/footer-bg.webp") center/cover no-repeat;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 64vw minmax(300px, 1fr);
  gap: 32px;
  align-items: stretch;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-gallery {
  display: grid;
  grid-template-columns: 62% 38%;
  grid-template-rows: 300px 240px;
  gap: 0;
  align-items: stretch;
}

.footer-gallery img {
  width: 96%;
  height: 100%;
  object-fit: cover;
}

.footer-front-img {
  grid-column: 1;
  grid-row: 1;
}

.footer-brand-note {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  grid-column: 1;
  grid-row: 2;
  gap: 22px;
  align-items: center;
  padding: 24px 32px 24px 126px;
  background: rgba(0,0,0,.28);
}

.footer-brand-note img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand-note p {
  max-width: 270px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.55;
}

.footer-reception-img {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.footer-card {
  padding: 2px 24px 0 0;
  background: transparent;
}

.footer-card h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(32px, 3vw, 35px);
}

.footer-contact-list {
  display: grid;
  gap: 5px;
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  a{
    color: #fff;
    transition: all .5s;
    &:hover{
      color: var(--red);
    }
  }
}

.footer-contact-list strong {
  margin-top: 10px;
  color: var(--white);
  font-family: 'Qlassy';
  font-size: 22px;
  font-weight: normal;
  line-height: 1.15;
}

.footer-contact-list strong:first-child {
  margin-top: 0;
}

.footer-card h3 {
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(30px, 2.6vw, 35px);
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.social-links a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 50%;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.social-links a:hover {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(190,17,24,.28);
  transform: translateY(-4px) scale(1.06);
}

.social-links img {
  width: 15px;
  max-height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-copyright {
  margin: 30px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.45;
}
a{
  transition: all .5s;
}
.footer-bottom {
  margin-top: 0;
  padding: 14px 18px;
  color: var(--white);
  background: var(--black);
  text-align: center;
  font-size: 16px;
  a:hover{
      color: var(--red);
    }
}

.hover-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}

.enquiry-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .32s ease;
}

.enquiry-popup.active .popup-backdrop {
  opacity: 1;
}

.popup-card {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(26px) scale(.96);
  transition: opacity .32s ease, transform .32s cubic-bezier(.2,.8,.2,1);
}

.enquiry-popup.active .popup-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}

.popup-close:hover {
  color: var(--red);
  transform: rotate(90deg) scale(1.08);
}

.enquiry-form {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--red);
}

.form-note {
  display: none;
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 700;
}
/* ===============================
   Responsive
 ============================== */
@media (max-width: 1600px),(max-width: 1536px){
  .dining-card {
    left: -330px;
}
.about-image-stack {
    gap: 15px;
    margin-right: calc((100vw - min(-256px, calc(100vw - 36px))) / -9);
}
}
@media (max-width: 1440px), (max-width: 1366px) {
    .container {
        max-width: 1200px;
    }
    h1 {
    font-size: 62px;
    line-height: 78px;
    margin-bottom: 20px;
}
.banner-content p {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
}
.banner-slide{
    height: 770px;
}
.brand-logo img {
    width: 126px;
    height: 126px;
}
.slick-dots {
    bottom: 100px;
}
.build-comfort-grid {
    grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
    gap: 30px;
}
    .about-image-stack {
        gap: 15px;
        margin-right: calc((100vw - min(-256px, calc(100vw - 36px))) / -5);
    }
    .why-choose-img {
    width: calc(100% + ((100vw - min(1400px, calc(100vw - 83px))) / 1));
    max-width: none;
    height: auto;
    margin-top: 30px;
    margin-left: calc((100vw - min(1400px, calc(100vw - 166px))) / -2);
    object-fit: cover;
}
.why-card {
    padding: 10px 20px 10px 15px;
}
p {
    font-size: 17px;
}
.why-card p {
    grid-column: 2;
    font-size: 16px;
}
.room-card {
    height: 675px;
}
.dining-card {
    left: -290px;
    width: min(699px, 92%);
}
.place-list {
    gap: 18px 15px;
}
.places-grid p {
    font-size: 18px;
}
.footer-contact-list {
    font-size: 16px;
}
.footer-card h2 {
    margin: 0 0 12px;
    font-size: clamp(29px, 3vw, 30px);
}
.footer-card h3 {
    font-size: clamp(29px, 3vw, 30px);
}
}


@media (max-width: 1100px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 18px;
    right: 18px;
    padding: 22px;
    background: rgba(0,0,0,.94);
  }

  .main-nav.open {
    display: grid;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .build-comfort-grid,
  .why-choose-grid,
  .surroundings-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    padding: 0 0 42px;
  }

  .surroundings-copy {
    padding-bottom: 0;
  }

  .map-card {
    margin-right: 0;
  }

  .about-image-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-right: 0;
  }

  .why-choose-img {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .room-card {
    width: auto;
  }
}

@media (max-width: 820px) {
  .header-actions .call-link {
    display: none;
  }

  .brand-logo {
    top: 8px;
    width: 170px;
    padding: 7px 12px;
  }

  .brand-logo img {
    width: 82px;
    height: 82px;
    padding: 0;
  }

  .header-inner {
    min-height: 84px;
  }

  .banner-slide {
    height: 580px;
  }

  .banner-content h1,
  h1 {
    max-width: 100%;
    font-size: 54px;
    line-height: 1.08;
  }

  .banner-content p {
    max-width: 100%;
    font-size: 20px;
    line-height: 1.55;
  }

  .banner-social {
    left: 18px;
    bottom: 40px;
  }

  .banner-social span {
    width: 120px;
    margin-left: 0;
  }

  .slick-dots {
    bottom: 50px;
  }

  .build-comfort-section,
  .stays-accommodations-section,
  .frequently-asked-questions-section,
  .site-footer {
    padding: 72px 0;
  }

  .hotel-surroundings-section {
    padding: 0 0 72px;
  }

  .site-footer {
    padding: 42px 0 0;
  }

  .build-comfort-grid,
  .why-choose-grid,
  .split-heading,
  .testimonial-grid,
  .pool-grid {
    grid-template-columns: 1fr;
  }

  .about-image-stack,
  .counter-grid,
  .why-list,
  .places-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .footer-front-img,
  .footer-brand-note,
  .footer-reception-img {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-front-img,
  .footer-reception-img {
    height: 320px;
  }

  .footer-brand-note {
    grid-template-columns: 110px minmax(0, 1fr);
    padding: 24px;
  }

  .footer-brand-note img {
    width: 100px;
    height: 100px;
  }

  .why-choose-grid {
    gap: 34px;
  }

  .why-choose-img {
    height: 340px;
  }

  .why-content > p {
    min-height: auto;
    padding: 82px 0 0;
    background-position: left top;
  }

  .why-card {
    border-right: 0;
  }

  .why-card:nth-child(odd) {
    border-right: 0;
  }

  .why-card:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .surroundings-copy {
    padding-top: 72px;
  }

  .place-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-image-stack img,
  .about-image-stack .about-img-small {
    height: 340px;
    margin-top: 0;
  }

  .dining-img {
    width: 100%;
    height: 420px;
  }

  .dining-slide {
    min-height: 0;
    padding-bottom: 50px;
  }

  .dining-card {
    position: relative;
    bottom: auto;
    width: 100%;
  }

  .dining-prev {
    left: 0;
  }

  .dining-next {
    left: 36px;
  }

  .room-card {
    width: auto;
    height: 520px;
    margin: 0 8px;
  }

  .pool-grid img,
  .map-card iframe,
  .map-card {
    height: 390px;
    min-height: 390px;
  }

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .testimonial-panel,
  .footer-card,
  .popup-card {
    padding: 30px;
  }

  .footer-card {
    padding: 30px 18px 42px;
  }

  .stays-accommodations-section .narrow-heading {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  h2 {
    font-size: 33px;
  }

  .header-actions .btn {
            width: auto;
        min-height: auto;
        font-size: 14px;
        padding: 0px 22px;
  }

    .brand-logo {
        width: 90px;
        top: 5px;
        padding: 4px 7px;
    }

  .brand-logo img {
    width: 64px;
    height: 64px;
    margin-bottom: -7px;
  }

  .header-inner {
    min-height: 76px;
  }
.banner-content {
    .section-kicker {
        font-size: 15px;
    }
}
  .banner-slide {
    height: 100dvh;
    .banner-img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .section-kicker img{
        width: 20%;
    }
    .banner-content h1, h1 {
        max-width: 100%;
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 10px;
    }
  }
  .banner-slide::before {
    background: linear-gradient(90deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 59%) 46%, rgb(0 0 0 / 61%));
}
.btn-light {
    font-size: 16px;
    padding: 8px 5px 8px 18px;
    gap: 25px;
}
.btn-light span {
    width: 46px;
    height: 36px;
}
.banner-content {
        padding-bottom: 140px;
    }
.banner-social {
        bottom: 70px;
        left: 0;
    }
  .banner-content p {
    font-size: 17px;
    line-height: 1.4;
  }

  .fixed-enquiry-btn {
    display: none;
  }


  .banner-social span {
    width: 74px;
  }
.slick-dots {
        bottom: 10px;
    }
    .slick-dots li {
      width: 8px;
        height: 8px;
    &.slick-active {
        width: 26px;
        height: 2px;
    }
}
  .about-image-stack img,
  .about-image-stack .about-img-small,
  .amenity-card img,
  .footer-front-img,
  .footer-reception-img {
    height: 300px;
  }

  .footer-brand-note {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .footer-brand-note img {
    width: 92px;
    height: 92px;
  }

  .counter-grid {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .room-overlay {
    padding: 22px;
  }

  .whatsapp-float {
    width: 46px;
  }
  .build-comfort-section .section-copy p {
    font-size: 16px;
    line-height: 27px;
}
.site-header.scrolled {
    .brand-logo img {
        display: inline-block;
        width: 67px;
        height: 67px;
        border-radius: 50%;
        margin-top: 5px;
    }
}
    .build-comfort-section, .stays-accommodations-section, .frequently-asked-questions-section, .site-footer {
        padding: 40px 0;
    }
    h2 {
    margin-bottom: 10px;
}
.about-image-stack {
        gap: 15px;
        flex-direction: column;
    }
    .counter-card:nth-child(2)::after {
    display: none;
}
.why-choose-section {
    padding: 30px 0 0px;
}
h2 {
        line-height: normal;
    }
        .why-content > p {
        min-height: auto;
        padding: 0px 0 0;
        background-position: left top;
    }
  .room-overlay h3 {
    font-size: 24px;
}
.room-card:hover .room-overlay {
    padding: 15px;
}
.room-details ul {
    font-size: 14px;
    line-height: 153%;
    margin-bottom: 5px;
}
.room-overlay p {
    margin: 10px 0 0;
    line-height: normal;
    font-size: 14px;
}
p{
  font-size: 16px;
}
.room-card:hover .room-overlay h3 {
    font-size: 24px;
    line-height: normal;
    margin-bottom: 5px;
}
.dining-slide {
    width: 100%;
}
.dining-experience-section {
    padding: 0px 0 30px;
}
    .dining-card {
        position: relative;
        bottom: auto;
        width: 100%;
        left: 0;
        padding: 15px;
    }
    .dining-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}
.dining-prev {
    left: calc(8% + 100px);
        bottom: -21px;
}
.dining-next {
    left: calc(8% + 165px);
    bottom: -21px;
}
.split-heading {
    gap: 15px;
}
.amenity-card h3 {
    padding: 17px;
    font-size: 20px;
}
.pool-leisure-section {
    padding: 28px 0 60px;
    background: var(--soft) url(../img/pool-bg.webp) center / cover no-repeat;
}
.section-kicker img{
  width: 20%;
}
.testimonial-panel {
    align-self: center;
    min-width: 100%;
}
.client-row {
    margin-top: 24px;
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 80px;
}
.faq-item button {
    padding: 10px 45px 10px 12px;
    font-size: 18px;
    line-height: 22px;
}
.surroundings-copy h2 {
    font-size: clamp(32px, 3.4vw, 50px);
}
.places-grid h3 {
    font-size: 20px;
    line-height: 32px;
}
.room-capacity {
    font-size: 18px;
}
    .room-card {
        width: auto;
        height: 460px;
    }
    .rooms-slider {
    padding-bottom: 40px;
  }
  .our-gallery-section{
    padding: 40px 0;
  }
}


span.wpcf7-spinner {
    position: absolute;
	bottom: 0;
}