:root {
  --container: min(1180px, 92vw);
  --white: #ffffff;
  --green: #189652;
  --green-dark: #11783f;
  --ink: #1a1c1a;
  --paper: #f8f5ef;
  --card: #fffdf8;
  --line: #ddd3c4;
  --gold: #90714f;
  --forest-900: #0e1b15;
  --forest-800: #15281f;
  --forest-700: #1f3a2d;
  --mint-100: #d9e7df;
  --overlay: rgba(8, 14, 10, 0.36);
  --text-soft: rgba(255, 255, 255, 0.82);
  --cta-bg: linear-gradient(
    135deg,
    #d4af37 0%,
    #f6e27a 30%,
    #d4af37 60%,
    #b8962e 100%
  );
  --cta-bg-hover: linear-gradient(
    135deg,
    #e6c75a 0%,
    #fff1a8 40%,
    #d4af37 80%
  );
  --cta-text: #1a1a1a;
}

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

body {
  font-family: "Manrope", sans-serif;
  /* background: var(--paper); */
  color: var(--white);
}

.hero {
  min-height: 100vh;
  background-image: 
    url("assets/images/new-banner.webp");
    /* linear-gradient(var(--overlay), var(--overlay)), */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 92px;
}
.logo{
  width: 75px;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 10px 22px rgba(12, 22, 16, 0.14);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.brand {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 1.15rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(28, 48, 36, 0.18);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(12, 22, 16, 0.12);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  margin: 0;
  width: 20px;
  height: 2px;
  background: #1f2a24;
  border-radius: 99px;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
}

.nav-toggle span:nth-child(3) {
  top: 29px;
}

.main-nav a {
  color: #24352b;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #11783f;
}

.main-nav a.active {
  color: #11783f;
}

.book-btn {
    color: var(--cta-text);
    background: var(--cta-bg);
    padding: 0.68rem 1.45rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    border-radius: 3px;
    border: none;
    display: inline-block;

    box-shadow: 0 4px 14px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    background: var(--cta-bg-hover);
}

.hero-layout {
     width: var(--container);
    margin: auto;
    padding: 1rem 0 8vh;
    /* display: grid; */
    /* grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.55fr); */
    /* gap: 2rem; */
    align-items: center;
    max-width: 920px;
}

.hero-copy h1 {
/*  font-family: "Playfair Display", serif;*/
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: center;
}

.hero-copy p {
  color: var(--text-soft);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  /* max-width: 54ch; */
  text-align: center;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 0.9rem;
  flex-wrap: wrap;
      justify-content: center;
}

.hero-btn {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.82rem 1.5rem;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.hero-btn.primary {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  background: var(--cta-bg-hover);
}

.hero-btn.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.hero-form {
  background: rgba(248, 245, 238, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 1.2rem;
  display: grid;
  gap: 0.72rem;
  box-shadow: 0 16px 34px rgba(6, 14, 10, 0.28);
}

.inquiry-card {
  color: #213328;
}

.inquiry-kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #81613f;
  text-align: center;
}

.hero-form h3 {
  color: #213328;
  font-size: 1.22rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.inquiry-card p {
  color: #3f4f45;
  line-height: 1.6;
  text-align: center;
}

.inquiry-open-btn {
  border: 0;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0.82rem 1rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(24, 76, 46, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(24, 76, 46, 0.34);
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #d8cfbf;
  border-radius: 8px;
  padding: 0.72rem 0.78rem;
  color: #223129;
  background: #fffdfa;
}

.hero-form textarea {
  resize: vertical;
  min-height: 90px;
}

.hero-form button {
  border: 0;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.78rem 1rem;
  cursor: pointer;
}

.hero-form button:hover {
  background: var(--cta-bg-hover);
}

button[type="submit"].is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.92;
  color: transparent !important;
}

button[type="submit"].is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: buttonSpin 0.7s linear infinite;
}

@keyframes buttonSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.location-advantage {
  color: #1f2a24;
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.16), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(184, 150, 46, 0.14), transparent 30%),
    linear-gradient(180deg, #f8f3e9, #efe5d4);
}

.location-wrap {
  width: var(--container);
  margin: 0 auto;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: start;
}

.location-copy {
  background: rgba(255, 252, 246, 0.86);
  border: 1px solid #d8c4a0;
  border-radius: 18px;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 0 18px 42px rgba(56, 41, 19, 0.12);
}

.location-copy h2 {
  text-align: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a665e;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.location-advantage h2 {
/*  font-family: "Playfair Display", serif;*/
  font-size: 31px;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    color: #1f2a24;
    text-align: left;
}

.location-note {
  display: inline-block;
  background: linear-gradient(135deg, #f8eb9a7a 0%, #eadb9a 38%, #dfbe4f5e 100%);
  border: 1px solid #c8a24a;
  color: #3f311c;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.location-intro {
  color: #4f564f;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 1.25rem;
}

.advantage-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.advantage-list li {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  background: linear-gradient(180deg, #fffdf9, #fcf6ea);
  border: 1px solid #dcc4a0;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 8px 18px rgba(90, 64, 29, 0.06);
}

.advantage-list li span:last-child {
  color: #2c2418;
  font-weight: 700;
}

.advantage-icon {
     width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #e4c57e;
    display: grid;
    place-items: center;
    /* background: linear-gradient(145deg, #fff6cf 0%, #f7e6aa 42%, #ecd084 100%); */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.advantage-icon i {
  font-size: 0.92rem;
  color: #6a522f;
}

.advantage-icon img {
      width: 27px;
    height: 27px;
    object-fit: contain;
    display: block;
}

.location-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
}

.location-visual img,
.location-visual video {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  height: 360px;
}

.visual-main {
  height: 420px;
  border: 1px solid #d9ccba;
  box-shadow: 0 16px 34px rgba(17, 24, 19, 0.16);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visual-grid img {
  height: 185px;
  border: 1px solid #dccfbe;
}

.foresta-special {
  padding: 60px 0 75px;
  /* background:
    radial-gradient(circle at 12% 15%, rgba(64, 96, 78, 0.14), transparent 35%),
    radial-gradient(circle at 86% 8%, rgba(150, 118, 84, 0.12), transparent 30%),
    linear-gradient(180deg, #e8eee6, #dde6dd); */
  /* border-top: 1px solid #cdd8cc; */
  /* border-bottom: 1px solid #c7d2c6; */
}

.special-wrap {
  width: var(--container);
  margin: 0 auto;
}

.special-head {
  max-width: 720px;
  margin-bottom: 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.special-head h2 {
/*  font-family: "Playfair Display", serif;*/
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  color: #1f2f27;
  line-height: 1.15;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}

.special-head p {
  color: #4d5a53;
  line-height: 1.6;
  font-size: 0.98rem;
  font-weight: 600;
}

.foresta-special .section-tag {
  color: #7f6a4d;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.7rem;
  min-height: 62px;
  border: 1px solid #ddcfb9;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(18, 25, 20, 0.05);
}

.facility-icon {
      width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #6a522f;
    border: 2px solid #f6db97;
    /* background: linear-gradient(145deg, #fff6cf 0%, #f7e6aa 42%, #ecd084 100%); */
    font-size: 1.02rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.facility-icon img {
 width: 29px;
    height: 29px;
    object-fit: contain;
    display: block;
}

.facility-item h3 {
  color: #29362f;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.facility-subtitle {
  margin-top: 1.9rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #1f2f27;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
}

.facility-toggle-wrap {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.facility-toggle-wrap-bottom {
  margin-top: 1.35rem;
}

.facility-see-more {
  border: 0;
  color: var(--cta-text);
  background: var(--cta-bg);
  padding: 0.78rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.facility-see-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  background: var(--cta-bg-hover);
}

.game-lounge {
  padding: 62px 0 74px;
      background: #f8f4ef;
}

.game-lounge-wrap {
  width: var(--container);
  margin: 0 auto;
}

.game-lounge-head {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.game-lounge-head h2 {
/*  font-family: "Playfair Display", serif;*/
  color: #000000;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
}

.game-lounge-head p {
  color: #4f5b54;
  line-height: 1.65;
}

.game-lounge-head .section-tag {
  margin-bottom: 0.6rem;
}

.game-lounge-slider {
  position: relative;
}

.game-lounge-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.game-lounge-track::-webkit-scrollbar {
  display: none;
}

.game-lounge-card {
  position: relative;
  min-width: calc((100% - 3rem) / 4);
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(29, 56, 42, 0.12);
  /* box-shadow: 0 18px 30px rgba(16, 29, 22, 0.14); */
}

.game-lounge-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.game-lounge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 17, 13, 0.02) 42%,
    rgba(8, 14, 10, 0.62) 100%
  );
}

.game-lounge-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem 1rem 1.1rem;
}

.game-lounge-overlay h3 {
  color: #f7faf8;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.game-lounge-card:hover img {
  transform: scale(1.05);
}

.rooms-experiences {
  padding: 58px 0 78px;
  /* background:
    radial-gradient(circle at 92% 14%, rgba(145, 113, 79, 0.18), transparent 26%),
    linear-gradient(180deg, #f7f2e8, #efe6d7); */
}

.rooms-wrap {
  width: var(--container);
  margin: 0 auto;
}

.rooms-head {
  max-width: 760px;
  margin-bottom: 1.65rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.rooms-head h2 {
/*  font-family: "Playfair Display", serif;*/
  font-size: 31px;
  line-height: 1.18;
  color: #202822;
  margin-bottom: 0.72rem;
}

.rooms-head p {
  color: #4b554f;
  line-height: 1.65;
}

.rooms-slider {
  position: relative;
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card {
  background: #fffdfa;
  border: 1px solid #ddcfb8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(17, 22, 18, 0.08);
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.experience-copy {
  padding: 1rem 1rem 1.1rem;
}

.experience-copy h3 {
  color: #273128;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.experience-copy p {
  color: #59635d;
  font-size: 0.93rem;
  line-height: 1.55;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cdb79a;
  background: rgba(255, 250, 242, 0.95);
  color: #6c5033;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 8px 18px rgba(20, 24, 18, 0.16);
}

.slider-btn.prev {
  left: -18px;
}

.slider-btn.next {
  right: -18px;
}

.rooms-cta-block {
  margin-top: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fffdf8;
  border: 1px solid #ddcfb8;
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.rooms-cta-block p {
  color: #2c352f;
  font-size: 1rem;
  font-weight: 600;
}

.weekend-btn {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--cta-text);
  background: var(--cta-bg);
  border-radius: 5px;
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.weekend-btn:hover {
  background: var(--cta-bg-hover);
}

.social-proof {
  padding: 60px 0 75px;
  background:
    radial-gradient(circle at 14% 10%, rgba(40, 72, 56, 0.08), transparent 32%), linear-gradient(rgb(236 233 226), rgb(241 233 220 / 48%))
}

.social-wrap {
  width: var(--container);
  margin: 0 auto;
}

.social-head {
  margin-bottom: 1.3rem;
  text-align: center;
}

.social-head h2 {
/*  font-family: "Playfair Display", serif;*/
  color: #1f2a23;
  font-size: 31px;
  line-height: 1.2;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.proof-item {
  background: #fffdf8;
  border: 1px solid #ddcfb8;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.proof-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4e7d2;
  border: 1px solid #d6bf9f;
  color: #7b5d3d;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.proof-item h3 {
  color: #2d362f;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #decfb9;
  border-radius: 14px;
  padding: 1rem;
  /* box-shadow: 0 12px 28px rgba(20, 23, 19, 0.08); */
  min-height: 178px;
  min-width: calc((100% - 2rem) / 3);
  scroll-snap-align: start;
}

.stars {
  color: #b3874f;
  letter-spacing: 0.09em;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: #4c554e;
  line-height: 1.62;
  font-size: 0.93rem;
  margin-bottom: 0.65rem;
}

.testimonial-card h4 {
  color: #28312b;
  font-size: 0.95rem;
}

.final-cta {
  padding: 58px 0 75px;
  background:
    linear-gradient(rgba(9, 17, 13, 0.66), rgba(9, 17, 13, 0.66)),
    url("assets/images/cta-img.avif");
  background-size: cover;
  background-position: center;
}

.final-cta-wrap {
  width: min(820px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.final-cta-wrap p {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.final-cta-wrap p + p {
  margin-top: 0.5rem;
}

.final-cta-btn {
  display: inline-block;
  margin-top: 1.7rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-weight: 800;
  color: var(--cta-text);
  background: var(--cta-bg);
  padding: 1rem 2rem;
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(2, 14, 9, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.final-cta-btn:hover {
  background: var(--cta-bg-hover);
  transform: translateY(-2px);
}

.contact-strip {
  padding: 58px 0 75px;
  background:
    linear-gradient(rgba(9, 17, 13, 0.66), rgba(9, 17, 13, 0.66)),
    url("assets/images/cta-img.avif");
  background-size: cover;
  background-position: center;
}

.contact-strip-wrap {
  width: min(980px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.contact-strip-wrap h2 {
/*  font-family: "Playfair Display", serif;*/
  color: #f3f7f4;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.contact-strip-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.contact-strip-actions a {
  text-decoration: none;
  color: var(--cta-text);
  border: 1px solid transparent;
  background: var(--cta-bg);
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-strip-actions a:hover {
  background: var(--cta-bg-hover);
  border-color: transparent;
  color: var(--cta-text);
}

.premium-gallery {
  padding: 62px 0 76px;
  /* background:
    radial-gradient(circle at 88% 10%, rgba(156, 125, 88, 0.18), transparent 30%),
    radial-gradient(circle at 8% 15%, rgba(33, 64, 50, 0.2), transparent 34%),
    linear-gradient(180deg, #f5f0e6, #eee4d3); */
}

.gallery-wrap {
  width: var(--container);
  margin: 0 auto;
}

.gallery-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 1.6rem;
}

.gallery-head h2 {
/*  font-family: "Playfair Display", serif;*/
  color: #1f2a23;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.gallery-head p {
  color: #4e5751;
  line-height: 1.65;
}

.gallery-slider {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.3rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  min-width: calc((100% - 3rem) / 4);
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(216, 197, 168, 0.82);
  /* box-shadow: 0 16px 30px rgba(11, 20, 15, 0.16); */
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 17, 13, 0.04) 35%,
    rgba(9, 16, 12, 0.64) 100%
  );
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem 1rem 1.1rem;
}

.gallery-overlay h3 {
  color: #f5f7f5;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.gallery-slider .slider-btn {
  top: 50%;
  border-color: #c8ad88;
  color: #694c2c;
}

.gallery-slider .slider-btn:hover {
  background: #fff6e7;
}

.explore-around {
  padding: 64px 0 76px;
  background:
   radial-gradient(circle at 12% 10%, rgb(241 233 220 / 45%), transparent 34%), linear-gradient(180deg, #f1e9dc5c, #f1e9dd9c)
}

.explore-around-wrap {
  width: var(--container);
  margin: 0 auto;
}

.explore-around-head {
  max-width: 780px;
  margin: 0 auto 1.7rem;
  text-align: center;
}

.explore-around-head h2 {
/*  font-family: "Playfair Display", serif;*/
  color: #1d3127;
  font-size: 31px;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.explore-around-head p {
  color: #4f5f56;
  line-height: 1.65;
  font-size: 0.9rem;
}

.explore-around-head .section-tag {
  margin-bottom: 0.55rem;
}

.explore-slider {
  position: relative;
}

.explore-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.explore-grid::-webkit-scrollbar {
  display: none;
}

.explore-card {
  min-width: calc((100% - 1rem) / 2);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d9e4de;
  border-radius: 20px;
  padding: 0.72rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.9rem;
  align-items: center;
  box-shadow: 0 12px 24px rgba(13, 28, 20, 0.08);
}

.explore-card img {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  border: 1px solid #cad7cf;
}

.explore-copy h3 {
  color: #163a2d;
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.explore-time {
  color: #1a7748;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgb(241 233 220 / 38%);
  border: 1px solid rgba(27, 140, 79, 0.22);
}

.explore-copy p {
  color: #41564c;
  line-height: 1.55;
  font-size: 0.88rem;
}

.social-sticky {
  position: fixed;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-sticky-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 12px 22px rgba(10, 15, 12, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-sticky-link i {
  font-size: 1.2rem;
}

.social-sticky-link span {
  display: none;
}

.social-sticky-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}

.social-sticky-link.facebook {
  background: linear-gradient(135deg, #1877f2, #0e5ecc);
}

.social-sticky-link.whatsapp {
  background: linear-gradient(135deg, #25d366, #148b45);
}

.social-sticky-link.booknow {
  background: linear-gradient(135deg, #169252, #117744);
}

.mobile-only {
  display: none;
}

.mobile-sticky-booking {
  display: none;
}

.social-sticky-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(10, 15, 12, 0.34);
}

.site-footer {
  background: #000000;
  padding: 70px 0 2.6rem;
}

.footer-wrap {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-col h3 {
  color: #f1f6f3;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.footer-col p,
.footer-col a,
.footer-links a {
  color: rgba(222, 234, 227, 0.86);
  text-decoration: none;
  line-height: 1.8;
}

.footer-logo {
     display: inline-block;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-decoration: none;
    margin-bottom: 0.7rem;
    background: white;
    padding: 0px 11px;
    border-radius: 4px;
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 20px rgba(7, 15, 11, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link.youtube {
  background: linear-gradient(135deg, #ff3b30, #c30700);
}

.footer-social-link.twitter {
  background: linear-gradient(135deg, #1f2937, #050505);
}

.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 15, 11, 0.34);
}

.footer-links {
  list-style: none;
}

.footer-links a:hover,
.footer-col a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-item + .footer-contact-item {
  margin-top: 0.45rem;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f2d14;
  font-size: 0.85rem;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 246, 207, 0.95), rgba(255, 246, 207, 0) 46%),
    linear-gradient(145deg, #f8e7ab 0%, #dfbe65 42%, #b98d2e 100%);
  border: 1px solid rgba(240, 203, 114, 0.95);
  border-radius: 8px;
  margin-top: 0.15rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 6px 12px rgba(0, 0, 0, 0.26);
}

.footer-bottom {
  width: 100%;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 234, 227, 0.18);
  text-align: center;
}

.footer-bottom p {
  color: rgba(222, 234, 227, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

body.modal-open {
  overflow: hidden;
}

.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.popup-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 8, 0.58);
  backdrop-filter: blur(4px);
}

.popup-dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 20px;
  padding: 1.6rem 1.35rem 1.25rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(234, 207, 168, 0.35), transparent 28%),
    linear-gradient(155deg, #fffdf8, #f1e6d5);
  border: 1px solid #deccb1;
  box-shadow: 0 22px 52px rgba(9, 16, 12, 0.42);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.24s ease;
}

.popup-modal.active .popup-dialog {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #d2bea0;
  background: rgba(255, 255, 255, 0.92);
  color: #5d4730;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.popup-kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #856544;
  margin-bottom: 0.4rem;
}

.popup-dialog h3 {
  color: #1f2d24;
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(1.6rem, 3.2vw, 2rem);
}

.popup-subtitle {
  margin-top: 0.45rem;
  color: #4a554d;
  line-height: 1.6;
}

.popup-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid #d8c9b2;
  border-radius: 10px;
  padding: 0.74rem 0.8rem;
  color: #223129;
  background: rgba(255, 255, 255, 0.88);
}

.date-input-wrap {
  position: relative;
}

.date-input-wrap .date-input-placeholder {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: #5b645f;
  font-size: 0.95rem;
  pointer-events: none;
}

.date-input-wrap input[type="date"] {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  color: transparent;
}

.date-input-wrap input[type="date"]:focus {
  color: #223129;
}

.date-input-wrap input[type="date"].has-value {
  color: #223129;
}

.date-input-wrap input[type="date"].has-value + .date-input-placeholder,
.date-input-wrap input[type="date"]:focus + .date-input-placeholder {
  opacity: 0;
}

.date-input-wrap input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

.date-input-wrap input[type="date"].has-value::-webkit-datetime-edit,
.date-input-wrap input[type="date"]:focus::-webkit-datetime-edit {
  color: #223129;
}

.popup-form textarea {
  resize: vertical;
  min-height: 105px;
}

.popup-form button {
  border: 0;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0.84rem 1rem;
  cursor: pointer;
}

.rooms-experiences{
padding:80px 20px;
background:#f7f7f7;
}

.rooms-title{
text-align:center;
color:#000;
font-size:31px;
margin-bottom:35px;
font-weight:600;
}

.rooms-main-slider{
position:relative;
overflow:visible;
}

.rooms-track{
display:grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap:30px;
}

.room-card{
background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #0000002b;
    box-sizing: border-box;
}

.room-card h3{
font-size: 18px;
    margin: 14px 0;
    color: #000;
    font-weight: 500;
}

.room-amenities span{
color:#000;
font-size:14px;
display:flex;
align-items:center;
gap:6px;
}

.room-btn{
display:inline-block;
background:var(--cta-bg);
color:var(--cta-text);
padding:10px 22px;
border-radius:6px;
text-decoration:none;
margin-bottom:15px;
font-weight:700;
transition:background 0.2s ease, transform 0.2s ease;
}

.room-btn:hover{
background:var(--cta-bg-hover);
transform:translateY(-1px);
}

.room-amenities{
display:flex;
flex-wrap:wrap;
gap:15px;
font-size:14px;
}

.room-amenities i{
width: 24px;
height: 24px;
display: inline-grid;
place-items: center;
border-radius: 8px;
color: #3f2e1d;
background: linear-gradient(160deg, #fffaf1 0%, #f7eddc 100%);
border: 1px solid #d8c7ab;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
margin-right:4px;
font-size: 0.78rem;
flex-shrink: 0;
}

/* IMAGE SLIDER */

.room-image-slider{
position:relative;
overflow:hidden;
border-radius:12px;
}

.room-images{
display:flex;
transition:0.4s;
}

.room-images img{
width:100%;
height:220px;
object-fit:cover;
flex-shrink:0;
}

/* IMAGE ARROWS */

.img-prev,
.img-next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#fff;
border:none;
width:35px;
height:35px;
border-radius:50%;
cursor:pointer;
z-index:10;
display:none;
}

.img-prev{ left:10px; }
.img-next{ right:10px; }

.rooms-main-slider{
position:relative;
overflow:visible;
padding:0;
}
.room-head{
     display: flex;
    justify-content: center;
    align-items: center;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    padding: 10px 16px;
    flex-wrap: nowrap;
  }

  .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(8, 13, 10, 0.35);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 998;
  }

  .site-header.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    z-index: 1001;
  }

  .brand {
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    width: auto;
    margin: 0;
    padding: 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(28, 48, 36, 0.14);
    background: #ffffff;
    box-shadow: 0 20px 36px rgba(7, 15, 11, 0.2);
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    z-index: 999;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .main-nav a {
    width: 100%;
    padding: 0.72rem 0.72rem;
    border-radius: 10px;
    font-size: 0.96rem;
    font-weight: 700;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: #f5f8f6;
  }

  .book-btn {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-form {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .location-copy {
    padding: 1.4rem 1.2rem 1.5rem;
  }

  .visual-main {
    height: 320px;
  }

  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
  }

  .slider-track {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .slider-track::-webkit-scrollbar {
    display: none;
  }

  .experience-card {
    min-width: calc(50% - 0.5rem);
    scroll-snap-align: start;
  }

  .slider-btn {
    top: 46%;
  }

  .rooms-cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: calc((100% - 1rem) / 2);
  }

  .game-lounge-card {
    min-width: calc((100% - 1rem) / 2);
    height: 300px;
  }

  .game-lounge-overlay h3 {
    font-size: 1.06rem;
  }

  .gallery-card {
    min-width: calc((100% - 1rem) / 2);
    height: 320px;
  }

  .explore-card {
    min-width: 100%;
    grid-template-columns: 200px 1fr;
  }

  .explore-copy h3 {
    font-size: 1rem;
  }

  .explore-copy p {
    font-size: 0.84rem;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

@media (max-width: 560px) {
  .main-nav a {
    font-size: 0.9rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 260px;
  }

  .location-advantage {
    padding: 3rem 0;
  }

  .visual-grid {
    display: none;
  }

  .foresta-special {
    padding: 3rem 0 3rem;
  }

  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-item {
    min-height: 42px;
  }

  .rooms-experiences {
    padding: 3rem 0;
  }

  .experience-card {
    min-width: 100%;
  }

  .slider-btn.prev {
    left: -6px;
  }

  .slider-btn.next {
    right: -6px;
  }

  .experience-card img {
    height: 200px;
  }

  .rooms-cta-block p {
    font-size: 0.93rem;
  }

  .weekend-btn {
    width: 100%;
    text-align: center;
  }

  .social-proof {
           padding: 2.5rem 0 3rem;
  }

  .game-lounge {
    padding: 2.7rem 0 3rem;
  }
  .icon{
    width: 50px;
  }

  .game-lounge-card {
    min-width: 100%;
    height: 240px;
  }

  .game-lounge-overlay h3 {
    font-size: 0.98rem;
  }

  .testimonial-card {
    min-width: 100%;
    min-height: 170px;
  }

  .premium-gallery {
    padding: 2.5rem 0 3.2rem;
  }

  .gallery-card {
    min-width: 100%;
    height: 280px;
  }

  .explore-around {
    padding: 2.7rem 0 3.1rem;
  }

  .explore-card {
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .explore-card img {
    height: 210px;
  }

  .explore-copy h3 {
    font-size: 0.95rem;
  }

  .explore-time {
    font-size: 0.67rem;
  }

  .explore-copy p {
    font-size: 0.82rem;
  }

  .final-cta {
    padding: 3.8rem 0 4.2rem;
  }

  .final-cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .contact-strip {
    padding: 3.2rem 0 3.4rem;
  }

  .contact-strip-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .contact-strip-actions a {
    width: 100%;
    max-width: 320px;
  }

  .site-footer {
    padding: 2.8rem 0 4.2rem;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-bottom {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .social-sticky {
    display: none;
  }

  .mobile-sticky-booking {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: linear-gradient(135deg, #f6e27a 0%, #d4af37 55%, #b8962e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 20px rgba(13, 20, 15, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.72rem 0.9rem calc(0.72rem + env(safe-area-inset-bottom));
  }

  .mobile-sticky-price p {
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
  }

  .mobile-sticky-price strong {
    color: #111111;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-sticky-price span {
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mobile-sticky-btn {
    text-decoration: none;
    background: #111111;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 1.02rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
  .logo {
    width: 60px;
}
.location-advantage h2 {
    /* font-family: "Playfair Display", serif; */
    font-size: 21px;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}
.location-note {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #f8eb9a 0%, #f2da73 38%, #dfbe4f 100%);
    border: 1px solid #c8a24a;
    color: #3f311c;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
}

  .rooms-head h2 {
    font-family: "Playfair Display", serif;
    /* font-size: clamp(1.9rem, 3vw, 2.9rem); */
    line-height: 1.18;
    color: #202822;
    margin-bottom: 0.72rem;
    font-size: 22px;
}
.social-head h2 {
    /* font-family: "Playfair Display", serif; */
    color: #1f2a23;
    /* font-size: clamp(1.8rem, 2.8vw, 2.8rem); */
    line-height: 1.2;
    font-size: 22px;
}
.contact-strip-wrap h2 {
    /* font-family: "Playfair Display", serif; */
    color: #f3f7f4;
    /* font-size: clamp(1.7rem, 3vw, 2.8rem); */
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-size: 22px;
}
.game-lounge-head h2 {
    /* font-family: "Playfair Display", serif; */
    color: #000000;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
}
.gallery-head h2 {
    /* font-family: "Playfair Display", serif; */
    color: #1f2a23;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 0.65rem;
}
.explore-around-head h2 {
    /* font-family: "Playfair Display", serif; */
    color: #1d3127;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.facility-item h3 {
    color: #29362f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}
.facility-grid .facility-item:nth-child(n+9){
display:none;
}

.facility-grid.show-all .facility-item{
display:flex;
}
.rooms-title {
    text-align: center;
    color: #000;
    font-size: 21px;
    margin-bottom: 35px;
    font-weight: 700;
}
}


@media (max-width:1024px){
.rooms-track{
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width:768px){
.rooms-track{
grid-template-columns: 1fr;
}
.hero-copy h1 {
    /* font-family: "Playfair Display", serif; */
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 17px;
    margin-top: 20px;
}
.hero {
    min-height: 68vh;
    background-image: linear-gradient(var(--overlay), var(--overlay)), url(assets/images/new-banner.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}
.hero-layout {
    width: var(--container);
    margin: auto;
    padding: 6rem 0 8vh;
    /* display: grid; */
    /* grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.55fr); */
    /* gap: 2rem; */
    align-items: center;
    max-width: 920px;
}
}
