@font-face {
  font-family: Inter;
  src: url(../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
}

@font-face {
  font-family: Playfair;
  src: url(../fonts//Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf);
}

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

body,
html {
  font-family: Inter;
  line-height: 1;
}

a {
  text-decoration: none;
}

.page-container {
  padding: 2rem;
  background-color: #fcfcfc;
}

/* Header styles */

header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.85);

  padding: 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

header nav ul {
  display: flex;
  list-style-type: none;
  gap: 2rem;
}

header nav ul a {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

header nav ul li.active a {
  color: #b5952f;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #111827;
  transition: 0.3s;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  header {
    padding: 1.5rem 2rem;
  }

  .hamburger {
    display: flex;
  }

  @media (max-width: 900px) {
    header nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      height: 100vh;
      background: #fff;
      z-index: 1000000;
      transition: 0.3s ease;
      padding: 6rem 2rem;
    }

    header nav.active {
      right: 0;
    }

    .nav-overlay {
      z-index: 999999;
    }
  }

  header nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* OPTIONAL: overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999998;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Home page styles */

.home-hero {
  padding: 8rem 0 0 4rem;
  background: url(../images/home-hero.png);
  min-height: 40rem;
  background-size: cover;
  background-position: center;
  border-radius: 1.25rem;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.home-hero > * {
  position: relative;
  z-index: 2;
}

.home-hero .text-section {
  max-width: 45rem;
}

h1 {
  color: #fff;
  font-family: Playfair;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: -0.15rem;
}

.home-hero .hero-text {
  margin-top: 1.5rem;
  color: #ffffff90;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75rem;
  max-width: 36rem;
}

.explore-button {
  margin-top: 2.5rem;
  display: flex;
  padding: 1rem 2rem;
  align-items: center;
  gap: 0.75rem;
  border-radius: 600rem;
  background-color: #fff;
  width: fit-content;
  color: #111827;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.explore-button img {
  width: 2rem;
  height: 2rem;
}

.home-hero .reserve-stay-container {
  align-self: flex-end;
  padding: 3rem;
  background-color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-top-left-radius: 1.75rem;
}

.home-hero .reserve-stay-container h3,
.guest-experiences-section h3 {
  color: #111827;
  font-family: Playfair;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.home-hero .reserve-stay-container .dates-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 4rem;
}

.home-hero .reserve-stay-container .check-in-out {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.home-hero .reserve-stay-container .date {
  margin-top: 0.25rem;
  color: #111827;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.home-hero .reserve-stay-container .guests-container {
  margin-top: 2rem;
}

.check-availability-button {
  margin-top: 2rem;
  display: flex;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background-color: #111827;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}

.tranquil-spaces-section {
  margin-top: 7rem;
  padding: 0 5rem;
}

.accommodation-container {
  padding: 0.25rem 0.75rem;
  border-radius: 600rem;
  background-color: #111827;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  width: fit-content;
}

h2 {
  color: #111827;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 400;
  width: 100%;
  max-width: 28rem;
  margin-top: 1.5rem;
}

.accommodation-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  place-items: bottom;
}

.accommodation-grid .home-accomm-villa,
.accommodation-grid .home-pool-villa {
  width: 100%;
  border-radius: 1.25rem;
}

.accommodation-grid .bottom-section {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accommodation-grid h3 {
  color: #111827;
  font-size: 1.5rem;
  font-family: Playfair;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.features-section {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.feature {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.feature-icon {
  height: 0.875rem;
}

.feature p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.accommodation-grid .arrow-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.accommodation-grid .right-side {
  margin-top: 6rem;
}

.accommodation-grid .left-side,
.accommodation-grid .right-side {
  position: relative;
}

.accommodation-grid .cost-from-container {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 600rem;
  backdrop-filter: blur(2px);
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.gastronomy-section {
  margin-top: 8rem;
  padding: 8rem 5rem;
  background-color: #fdf8f6;
  border-radius: 1.25rem;
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}

.gastronomy-section .image-section {
  width: 100%;
  position: relative;
}

.gastronomy-section .home-restaurant-hero {
  width: 100%;
  border-radius: 1.25rem;
}

.gastro-container {
  padding: 0.25rem 0.75rem;
  border-radius: 600rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  width: fit-content;
}

.gastro-main-text {
  margin-top: 1.5rem;
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8rem;
  max-width: 28rem;
}

.restaurants-container {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.restaurants-container .restaurant {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  justify-content: flex-start;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.restaurants-container .restaurant img {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
}

.restaurants-container .restaurant .name {
  color: #111827;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.restaurants-container .restaurant .description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.gastronomy-section .dining-options-link {
  display: block;
  margin-top: 2.5rem;
  color: #111827;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.gastronomy-section .image-section .stars-container {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: fit-content;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
}

.gastronomy-section .image-section .stars-container p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4rem;
  max-width: 13rem;
  margin-top: 0.5rem;
}

img {
  max-width: 100%;
  display: block;
}

.page-container {
  padding: 1.5rem;
}

@media (max-width: 1240px) {
  .home-hero .reserve-stay-container .dates-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 1100px) {
  .home-hero {
    padding: 6rem 2rem 0 2rem;
    flex-direction: column;
    gap: 3rem;
    min-height: auto;
  }

  .home-hero .reserve-stay-container {
    align-self: flex-start;
    width: 100%;
    border-radius: 1.25rem;
  }

  .home-hero .reserve-stay-container .dates-row {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  /* HERO */

  h1 {
    font-size: 4rem;
  }

  .home-hero .text-section {
    max-width: 100%;
  }

  .home-hero .reserve-stay-container {
    align-self: flex-start;
    width: 100%;
    border-radius: 1.25rem;
  }

  /* TRANQUIL */
  .tranquil-spaces-section {
    padding: 0 2rem;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
  }

  .accommodation-grid .right-side {
    margin-top: 0;
  }

  /* GASTRONOMY */
  .gastronomy-section {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
  }

  .gastronomy-section .image-section .stars-container {
    right: 1rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 768px) {
  /* HERO */
  .home-hero {
    padding: 4rem 1.5rem 0 1.5rem;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1.1;
  }

  .home-hero .hero-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .explore-button {
    width: 100%;
    justify-content: center;
  }

  /* RESERVE BOX */
  .home-hero .reserve-stay-container {
    padding: 2rem;
  }

  .home-hero .reserve-stay-container .dates-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .check-availability-button {
    width: 100%;
  }

  /* TRANQUIL */
  .tranquil-spaces-section {
    margin-top: 4rem;
    padding: 0 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* GASTRONOMY */
  .gastronomy-section {
    margin-top: 4rem;
    padding: 4rem 1.5rem;
  }

  .gastro-main-text {
    font-size: 1rem;
  }

  .restaurants-container .restaurant {
    flex-direction: row;
    gap: 1rem;
  }

  /* STARS CARD */
  .gastronomy-section .image-section .stars-container {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .home-hero {
    border-radius: 0.75rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  .explore-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .home-hero .reserve-stay-container {
    padding: 1.5rem;
  }

  .accommodation-grid .bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .accommodation-grid .arrow-icon {
    align-self: flex-end;
  }

  .restaurants-container .restaurant {
    padding: 0.75rem;
  }
}

/* Rooms page styles */

.rooms-heading-section {
  padding: 5rem;
}

.rooms-heading-section .heading-text {
  margin-top: 1rem;
  color: #6b7280;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75rem;
  max-width: 40rem;
}

.rooms-grid {
  padding: 0 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.room {
  position: relative;
}

.room .room-hero-image {
  width: 100%;
}

.room .room-details-container {
  padding: 2rem;
  border-radius: 0 0 2rem 2rem;
  border: 1px solid #f3f4f6;
  background: #fff;
}

.room .room-details-container h3 {
  color: #111827;
  font-family: Playfair;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.room .room-details-container .room-description {
  margin-top: 1rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.room .room-details-container .bottom-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room .room-details-container .bottom-section .from {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.room .room-details-container .bottom-section .price {
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.room .room-details-container .bottom-section .price span {
  color: #111827;
  font-family: Playfair;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.room .room-details-container .bottom-section .select-button {
  display: flex;
  padding: 0.65625rem 1.5rem 0.71875rem 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 624.9375rem;
  background: #111827;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.premium-container {
  display: flex;
  padding: 0.25rem 0.75rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 624.9375rem;
  background: #111827;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  position: absolute;
  left: 1rem;
  top: 1rem;
}

@media (max-width: 1080px) {
  .rooms-heading-section {
    padding: 5rem 2.5rem 2.5rem;
  }

  .rooms-grid {
    padding: 0 2.5rem;
  }
}

@media (max-width: 960px) {
  .room-details-container .features-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 450px) {
  .rooms-grid {
    padding: 0 1.5rem;
  }

  .room .bottom-section {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Room details page styles */

.room-details-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 37rem;
  position: relative;
  padding: 2rem;
  margin: 0 5rem;
}

.room-details-hero.oceanfront {
  background: url(../images/details-villa.png);
  background-size: cover;
}

.room-details-hero.pool {
  background: url(../images/rooms-pool.png);
  background-size: cover;
}

.room-details-hero.garden {
  background: url(../images/rooms-garden.png);
  background-size: cover;
}

.room-details-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.room-details-hero > * {
  position: relative;
  z-index: 2;
}

.room-details-hero .signature-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(42, 36, 34, 0.6);
  backdrop-filter: blur(6px);
  width: fit-content;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}

.room-details-hero h2 {
  color: #fff;
}

.room-details-hero .feature p {
  color: #e5e7eb;
}

.about-room-section {
  margin: 5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 2fr 1fr;
}

.about-room-section h3 {
  color: #111827;
  font-family: Playfair;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.about-room-section .info {
  margin-top: 1.5rem;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625rem;
}

.key-amenities-section {
  margin-top: 4rem;
}

.amenities-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  background-color: #f9fafb;
  gap: 1rem;
}

.amenity img {
  height: 1.5rem;
  object-fit: contain;
}

.amenity p {
  color: #111827;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.complimentary-section {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #f2e8e5;
  background: #fdf8f6;
}

.complimentary-list {
  margin-top: 1.5rem;
}

.complimentary-list .item {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.complimentary-list .item img {
  height: 1rem;
}

.complimentary-list .item p {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.guest-experiences-section {
  margin-top: 4rem;
}

.guest-experiences-section .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guest-experiences-section .stars-section {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.guest-experiences-section .stars-section img {
  height: 0.875rem;
}

.guest-experiences-section .stars-section .rating {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.guest-experiences-section .stars-section .num-reviews {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.guest-experiences-section .reviews-container {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.guest-experiences-section .review {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  background: #fff;
}

.guest-experiences-section .review .top-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guest-experiences-section .review .top-section img {
  width: 2.5rem;
  height: 2.5rem;
}

.guest-experiences-section .review .top-section .info-container .name {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.guest-experiences-section .review .top-section .info-container .stayed {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.guest-experiences-section .review .review-text {
  margin-top: 1rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.25rem;
}

.booking-container {
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.booking-top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.booking-top-section .price-text {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.booking-top-section .current-price {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.booking-top-section .current-price h3 {
  color: #111827;
  font-family: Playfair;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
}

.booking-top-section .current-price p {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-decoration-line: line-through;
}

.booking-top-section .save-container {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: #fdf8f6;
}

.booking-top-section .save-container p {
  color: #2a2422;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

.booking-container .dates-row {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  gap: 1rem;
}

.booking-container .dates-row .date-container {
  flex: 1;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.booking-container .dates-row .date-container .check-in-out {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.booking-container .dates-row .date-container input {
  background-color: transparent;
  outline: none;
  border: none;
  font-family: inherit;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.booking-container .proceed-button {
  margin-top: 2rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 624.9375rem;
  background: #111827;
  box-shadow:
    0 10px 15px -3px rgba(17, 24, 39, 0.2),
    0 4px 6px -4px rgba(17, 24, 39, 0.2);
  color: #fff;
  font-weight: 500;
  line-height: 1.5rem;
}

@media (max-width: 1024px) {
  .room-details-hero {
    margin: 0 2rem;
    height: 28rem;
    padding: 1.5rem;
  }

  .about-room-section {
    margin: 3rem 2rem;
    grid-template-columns: 1fr; /* stack layout */
  }

  .right-side {
    order: -1; /* booking card moves to top */
  }

  .booking-container {
    position: sticky;
    top: 1rem;
  }

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

  .guest-experiences-section .reviews-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .room-details-hero {
    margin: 0 1.5rem;
    height: 22rem;
  }

  .room-details-hero h2 {
    font-size: 2rem;
  }

  .features-section {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .about-room-section {
    margin: 2rem 1.5rem;
    gap: 2rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
  }

  .amenity img {
    height: 1.25rem;
  }

  .complimentary-section {
    padding: 1.5rem;
  }

  .guest-experiences-section .top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .booking-container {
    padding: 1.5rem;
  }

  .booking-container .dates-row {
    flex-direction: column;
  }

  .booking-container .proceed-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .room-details-hero {
    margin: 0 1rem;
    border-radius: 1rem;
  }

  .about-room-section {
    margin: 1.5rem 1rem;
  }

  .room-details-hero h2 {
    font-size: 1.75rem;
  }

  .feature p {
    font-size: 0.75rem;
  }

  .amenity p {
    font-size: 0.8rem;
  }

  .guest-experiences-section .review {
    padding: 1rem;
  }

  .booking-top-section .current-price h3 {
    font-size: 1.5rem;
  }
}

/* Experiences page styles */

.experiences-hero {
  margin-top: -1.5rem;
  margin-left: -1.5rem;
  width: 100vw;
  background: url(../images/experiences-hero-image.png);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 8rem;
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 10rem;
  place-items: center;
}

.experiences-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.experiences-hero > * {
  position: relative;
  z-index: 2;
}

.experiences-hero .curated-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(2px);
  width: fit-content;
}

.experiences-hero .curated-container .curated-text {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.experiences-hero h1 {
  margin-top: 1.5rem;
  font-size: 4.5rem;
  line-height: 4.5rem;
}

.experiences-hero h1 span {
  color: #d4af37;
  font-style: italic;
}

.experiences-hero .info-text {
  margin-top: 1.5rem;
  color: #d1d5db;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.experiences-hero .circle-down-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-top: 1.5rem;
  margin-left: 0;
}

.experiences-hero .image-section {
  position: relative;
}

.experiences-hero .image-section img {
  border-radius: 2.5rem;
  border: 10px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.featured-experience-container {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(42, 36, 34, 0.8);
  backdrop-filter: blur(6px);
}

.featured-experience-container .featured {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}

.featured-experience-container .retreat {
  margin-top: 0.25rem;
  color: #fff;
  font-size: 1.25rem;
  font-family: Playfair;
  font-weight: 400;
  line-height: 1.75rem;
}

.popular-destinations-section {
  padding: 5rem;
}

.popular-destinations-section h3 {
  color: #111827;
  font-family: Playfair;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.popular-destinations-section .popular-destinations-info {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 40rem;
  margin-top: 1rem;
}

.popular-destinations-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.popular-destination {
  padding: 1rem;
  border-radius: 2rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.04);
  position: relative;
}

.popular-destination img {
  width: 100%;
  border-radius: 1.75rem;
}

.popular-destination h4 {
  margin-top: 1.5rem;
  color: #111827;
  font-family: Playfair;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.popular-destination .info-text {
  margin-top: 1.25rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.popular-destination .bottom-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popular-destination .length {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

.popular-destination .cost {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.popular-destination .cost span {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75rem;
  font-family: Playfair;
}

.yacht-rating-container {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}

.yacht-rating-container img {
  width: 0.65rem;
}

.yacht-rating {
  color: #111827;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

.popular-destination.heritage {
  background-color: #1f2937;
}

.popular-destination.heritage h4 {
  color: #fff;
}

.popular-destination.heritage .info-text {
  color: #9ca3af;
}

.popular-destination.heritage .bottom-section {
  border-top: 1px solid #1f2937;
}

.popular-destination.heritage .length-container {
  color: #9ca3af;
}

.popular-destination.heritage .cost {
  color: #9ca3af;
}

.popular-destination.heritage .cost span {
  color: #fff;
}

.seasonal-highlights-section {
  padding: 6rem 5rem;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: #fdf8f6;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.seasonal-highlights-section .heading-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.seasonal-highlights-section .heading-section p {
  color: #b5952f;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
}

.seasonal-highlights-section .heading-section h3 {
  color: #111827;
  text-align: center;
  font-family: Playfair;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.seasonal-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  place-items: center;
}

.seasonal-highlights-grid .highlight-container {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.seasonal-highlights-grid .highlight-container .highlight-image {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

.seasonal-highlights-grid .left-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seasonal-highlights-grid .highlight-container .info-section h4 {
  color: #111827;
  font-family: Playfair;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  text-transform: capitalize;
}

.seasonal-highlights-grid .highlight-container .info-section p {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.seasonal-highlights-grid .highlight-container .months-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: #fdf8f6;
  color: #b5952f;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  width: fit-content;
  margin-top: 0.5rem;
}

.seasonal-highlights-grid .right-side {
  background: url(../images/escape.jpg);
  width: 100%;
  height: 30rem;
  background-size: cover;
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.seasonal-highlights-grid .right-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.seasonal-highlights-grid .right-side > * {
  position: relative;
  z-index: 2;
}

.seasonal-highlights-grid .right-side .signature {
  color: #d4af37;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}

.seasonal-highlights-grid .right-side h3 {
  margin-top: 0.5rem;
  color: #fff;
  font-family: Playfair;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.seasonal-highlights-grid .right-side .explore-package-button {
  margin-top: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 600rem;
  background-color: #fff;
  color: #2a2422;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  border: none;
}

.bespoke-itineranies-section {
  width: 100vw;
  margin-left: -1.5rem;
  background-color: #2a2422;
  display: flex;
  padding: 6rem 2rem;
  justify-content: center;
}

.bespoke-itineranies-container {
  max-width: 64rem;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 10rem;
  border-radius: 3rem;
  border: 1px solid #1f2937;
  background: #2a2422;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.bespoke-itineranies-container .text-section {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
}

.bespoke-itineranies-container .text-section h3 {
  color: #fff;
  font-family: Playfair;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.bespoke-itineranies-container .text-section .bespoke-info-text {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.bespoke-itineranies-container .concierge-button {
  padding: 1rem 2rem;
  border-radius: 624.9375rem;
  background: #d4af37;
  box-shadow: 0 0 20px 0 rgba(212, 175, 55, 0.2);
  color: #2a2422;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  width: fit-content;
  margin-top: 2rem;
}

.bespoke-itineranies-container .image-section {
  position: relative;
}

.bespoke-itineranies-container .image-section img {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border-radius: 624.9375rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem;
}

.concierge-name-contaner {
  padding: 0.5rem 1rem;
  position: absolute;
  left: 0.75rem;
  bottom: 1.25rem;
  border-radius: 624.9375rem;
  border: 1px solid #374151;
  background: #2a2422;
}

.concierge-name-contaner p {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (max-width: 1024px) {
  /* HERO */
  .experiences-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 2rem;
    text-align: center;
  }

  .experiences-hero h1 {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .experiences-hero .image-section {
    max-width: 500px;
  }

  .featured-experience-container {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }

  /* POPULAR DESTINATIONS */
  .popular-destinations-section {
    padding: 3rem 2rem;
  }

  .popular-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SEASONAL */
  .seasonal-highlights-section {
    padding: 4rem 2rem;
  }

  .seasonal-highlights-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-highlights-grid .right-side {
    height: 22rem;
  }

  /* BESPOKE */
  .bespoke-itineranies-container {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* HERO */
  .experiences-hero {
    padding: 5rem 1.5rem;
  }

  .experiences-hero h1 {
    font-size: 2.25rem;
    line-height: 2.4rem;
  }

  .experiences-hero .info-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .experiences-hero .image-section img {
    border-radius: 1.5rem;
  }

  /* POPULAR DESTINATIONS */
  .popular-destinations-grid {
    grid-template-columns: 1fr;
  }

  .popular-destination {
    padding: 1rem;
  }

  .popular-destination .bottom-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* SEASONAL */
  .seasonal-highlights-grid .highlight-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .seasonal-highlights-grid .highlight-container .highlight-image {
    width: 100%;
    height: 10rem;
  }

  /* BESPOKE */
  .bespoke-itineranies-section {
    padding: 4rem 1.5rem;
  }

  .bespoke-itineranies-container {
    padding: 2rem;
  }

  .bespoke-itineranies-container .text-section h3 {
    font-size: 1.75rem;
  }

  .bespoke-itineranies-container .image-section img {
    width: 8rem;
    height: 8rem;
  }
}
@media (max-width: 480px) {
  .experiences-hero {
    padding: 4rem 1rem;
  }

  .experiences-hero h1 {
    font-size: 1.9rem;
  }

  .featured-experience-container {
    padding: 1rem;
  }

  .featured-experience-container .retreat {
    font-size: 1rem;
  }

  .popular-destinations-section {
    padding: 2.5rem 1rem;
  }

  .seasonal-highlights-section {
    padding: 3rem 1rem;
  }

  .bespoke-itineranies-container {
    padding: 1.5rem;
  }
}

/* Dining page styles */

.dining-hero-section {
  position: relative;
  background: url(../images/dining-hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  transform: translate(-1.5rem, -1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10rem;
}

.dining-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
}

.dining-hero-section > * {
  position: relative;
  z-index: 2;
}

.dining-hero-section .text-section {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dining-hero-section .text-section .gastronomy-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(2px);
}

.dining-hero-section .text-section .gastronomy-container p {
  color: #d4af37;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.dining-hero-section .text-section h1 {
  margin-top: 2.5rem;
  color: #fff;
  text-align: center;
  font-family: Playfair;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}

.dining-hero-section .text-section h1 span {
  color: #d4af37;
}

.dining-hero-section .text-section .hero-text {
  margin-top: 2rem;
  color: #d1d5db;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.dining-hero-section .text-section button {
  margin-top: 4rem;
  padding: 1rem 2rem;
  border-radius: 624.9375rem;
  background: #d4af37;
  box-shadow: 0 0 20px 0 rgba(212, 175, 55, 0.4);
  color: #2a2422;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.awards-section {
  min-width: 100vw;
  transform: translate(-1.5rem, -1.5rem);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: #fdf8f6;
  padding: 1rem 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.awards-section .award {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}

.awards-section .award img {
  height: 0.75rem;
}

.awards-section .award p {
  color: #111827;
  font-family: Playfair;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
}

.signature-venues-section {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.venue-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  place-items: center;
}

.venue-container .text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.venue-container .text-section .top-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: #fdf8f6;
}

.feature-container .feature {
  color: #b5952f;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.venue-container .text-section .top-section .star-container {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.venue-container .text-section .top-section .star-container img {
  height: 0.875rem;
}

.venue-container .text-section .top-section .star-container p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.venue-container .text-section h3 {
  margin-top: 1.5rem;
  color: #111827;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: Playfair;
}

.venue-container .text-section .restaurant-info {
  margin-top: 1.5rem;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.venue-container .restaurant-details {
  margin-top: 3rem;
  display: flex;
  gap: 4rem;
}

.venue-container .restaurant-details .heading {
  color: #111827;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.venue-container .restaurant-details .info-text {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.venue-container .buttons-container {
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
}

.venue-container .buttons-container .reserve-table-button {
  padding: 0.5rem 2rem;
  border-radius: 600rem;
  background-color: #111827;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.venue-container .buttons-container .view-menu-button {
  padding: 0.5rem 2rem;
  border-radius: 600rem;
  background-color: transparent;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  border: 1px solid #d1d5db;
}

.venue-container .image-section {
  position: relative;
}

.venue-container .image-section .small-image {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  border-radius: 1rem;
  border: 8px solid #fcfcfc;
  background: rgba(255, 255, 255, 0);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 12rem;
}

.venue-container.venue-ember {
  margin-top: 6rem;
}

.venue-container.venue-ember .small-image {
  top: -2rem;
  left: -2rem;
}

.ultimate-expression-section {
  width: 100vw;
  transform: translateX(-1.5rem);
  padding: 6rem 7rem;
  background-color: #111827;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.ultimate-expression-section .image-section {
  position: relative;
}

.ultimate-expression-section .chef-image {
  border-radius: 1rem;
}

.ultimate-expression-section .text-section {
  margin-top: 4rem;
}

.ultimate-expression-section .text-section h3 {
  color: #fff;
  font-family: Playfair;
  font-size: 3rem;
  font-weight: 400;
}

.ultimate-expression-section .text-section h3 span {
  color: #d4af37;
  font-style: italic;
}

.ultimate-expression-section .info-text {
  margin-top: 2rem;
  color: #9ca3af;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.curated-section {
  padding: 6rem 5rem;
  background: rgba(253, 248, 246, 0.5);
}

.curated-section .heading-text {
  margin-top: 1rem;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.curated-tastings-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.curated-tastings-grid .curated-tasting {
  border-radius: 1rem;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.curated-tasting .text-section {
  padding: 1.5rem;
}

.curated-tasting h3 {
  color: #111827;
  font-family: Playfair;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.curated-tasting .info-text {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.curated-tasting .bottom-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
}

.curated-tasting .price {
  color: #111827;
  font-family: Playfair;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75rem;
}

.curated-tasting .book {
  color: #b5952f;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.curated-tasting .weekly-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.curated-tasting .weekly-container p,
.curated-tasting .availability-container p {
  color: #111827;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

.curated-tasting .availability-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(42, 36, 34, 0.8);
  backdrop-filter: blur(2px);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.curated-tasting .availability-container p {
  color: #d4af37;
}

@media (max-width: 1024px) {
  /* HERO */
  .dining-hero-section {
    padding: 6rem 2rem;
    transform: translate(-1.5rem, -1.5rem);
  }

  .dining-hero-section .text-section h1 {
    font-size: 3.5rem;
    letter-spacing: 0.2rem;
  }

  .dining-hero-section .hero-text {
    font-size: 1rem;
  }

  /* AWARDS */
  .awards-section {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }

  /* VENUES */
  .signature-venues-section {
    padding: 4rem 2rem;
  }

  .venue-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Fix reversed layout for ember */
  .venue-container.venue-ember .image-section {
    order: -1;
  }

  .venue-container .restaurant-details {
    gap: 2rem;
  }

  .venue-container .buttons-container {
    flex-wrap: wrap;
  }

  /* ULTIMATE EXPRESSION */
  .ultimate-expression-section {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .ultimate-expression-section .text-section {
    margin-top: 0;
  }

  /* CURATED */
  .curated-section {
    padding: 4rem 2rem;
  }

  .curated-tastings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* HERO */
  .dining-hero-section {
    padding: 5rem 1.5rem;
  }

  .dining-hero-section .text-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.1rem;
  }

  .dining-hero-section .hero-text {
    font-size: 0.95rem;
    line-height: 1.5rem;
  }

  .dining-hero-section button {
    width: 100%;
  }

  /* AWARDS */
  .awards-section {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 1rem 1.5rem;
  }

  /* VENUES */
  .venue-container .restaurant-details {
    flex-direction: column;
    gap: 1.5rem;
  }

  .venue-container .text-section h3 {
    font-size: 1.75rem;
  }

  .venue-container .restaurant-info {
    font-size: 1rem;
  }

  .venue-container .buttons-container {
    flex-direction: column;
    width: 100%;
  }

  .venue-container .buttons-container button {
    width: 100%;
  }

  .venue-container .image-section .small-image {
    display: none; /* prevents overflow issues */
  }

  /* ULTIMATE */
  .ultimate-expression-section .text-section h3 {
    font-size: 2rem;
  }

  .ultimate-expression-section .info-text {
    font-size: 1rem;
  }

  /* CURATED */
  .curated-tastings-grid {
    grid-template-columns: 1fr;
  }

  .curated-tasting h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .dining-hero-section {
    padding: 4rem 1rem;
  }

  .dining-hero-section .text-section h1 {
    font-size: 2rem;
  }

  .awards-section {
    padding: 1rem;
    gap: 1rem;
  }

  .signature-venues-section {
    padding: 3rem 1rem;
  }

  .ultimate-expression-section {
    padding: 3rem 1rem;
  }

  .curated-section {
    padding: 3rem 1rem;
  }
}

/* Gallery page styles */

.gallery-hero-section {
  margin: -1.5rem;
  position: relative;
  background: url(../images/gallery-hero.png);
  padding: 10rem 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.gallery-hero-section > * {
  position: relative;
  z-index: 2;
}

.gallery-hero-section .text-section,
.offers-hero-section .text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 40rem;
}

.gallery-hero-section .journey-container,
.offers-hero-section .exclusive-container,
.contact-hero-section .in-touch-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(2px);
  width: fit-content;
}

.gallery-hero-section .journey-container p,
.offers-hero-section .exclusive-container p,
.contact-hero-section .in-touch-container p {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.gallery-hero-section h1,
.offers-hero-section h1 {
  color: #fff;
  text-align: center;
  font-family: Playfair;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 4.5rem;
  letter-spacing: 0.45rem;
  text-transform: uppercase;
}

.gallery-hero-section h1 span,
.offers-hero-section h1 span {
  color: #d4af37;
}

.gallery-hero-section .heading-text,
.offers-hero-section .heading-text {
  color: #d1d5db;
  text-align: center;
  font-weight: 1.125rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.experiences-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.experiences-grid img {
  border-radius: 1rem;
}

/* =========================
    GALLERY RESPONSIVE FIXES
  ========================= */

/* HERO */
@media (max-width: 1024px) {
  .gallery-hero-section {
    padding: 6rem 2rem;
  }

  .gallery-hero-section h1 {
    font-size: 3rem;
    line-height: 3.2rem;
    letter-spacing: 0.2rem;
  }

  .gallery-hero-section .heading-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .gallery-hero-section {
    padding: 5rem 1.5rem;
  }

  .gallery-hero-section h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
  }

  .gallery-hero-section .text-section {
    gap: 1rem;
  }

  /* GRID: 3 → 2 columns */
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .gallery-hero-section {
    padding: 4rem 1rem;
  }

  .gallery-hero-section h1 {
    font-size: 1.75rem;
    line-height: 2rem;
    letter-spacing: 0.05rem;
  }

  .gallery-hero-section .heading-text {
    font-size: 0.9rem;
  }

  /* GRID: 2 → 1 column */
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .experiences-grid img {
    border-radius: 0.75rem;
  }
}

/* Offers page styles */

.offers-hero-section,
.contact-hero-section {
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  width: 100vw;
  padding: 7rem 5rem;
  display: flex;
  justify-content: center;
  background: url(../images/offers-hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-hero-section::before,
.contact-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.offers-hero-section > *,
.contact-hero-section > * {
  position: relative;
  z-index: 2;
}

.offers-hero-section h1 {
  text-transform: capitalize;
}

.offers-hero-section .hero-text,
.contact-hero-section .hero-text {
  color: #d1d5db;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.offers-hero-section .view-all-offers-button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  border-radius: 600rem;
  background-color: #d4af37;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  border: none;
}

.offers-grid-section {
  padding: 6rem 5rem;
  background-color: #fcfcfc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.offers-grid-section .offer {
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.offers-grid-section .offer .text-section {
  padding: 2rem;
}

.offers-grid-section .offer h3 {
  color: #2a2422;
  font-family: Playfair;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.offers-grid-section .offer .info-text {
  margin-top: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5rem;
}

.offers-grid-section .offer .features-section {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.offers-grid-section .features-section .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offers-grid-section .feature img {
  height: 0.875rem;
}

.offers-grid-section .feature p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.offers-grid-section .bottom-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offers-grid-section .bottom-section .price-container .starting {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.offers-grid-section .bottom-section .price-container .cost {
  color: #2a2422;
  font-family: Playfair;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.offers-grid-section .bottom-section .price-container .cost span {
  color: #9ca3af;
  font-family: Inter;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
}

.offers-grid-section .book-now-button {
  padding: 0.625rem 1.5rem;
  border-radius: 600rem;
  background-color: #2a2422;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.offer-feature-container {
  padding: 0.375rem 0.75rem;
  border-radius: 624.9375rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  color: #2a2422;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.01875rem;
  text-transform: uppercase;
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.offers-grid-section .extended-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../images/extended.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: auto;
}

.offers-grid-section .extended-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}

.offers-grid-section .extended-offer > * {
  position: relative;
  z-index: 2;
}

/* Contact page styles */

.contact-hero-section {
  background: url(../images/contact-hero.png);
}

.contact-hero-section .text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 38rem;
  gap: 1.5rem;
}

.contact-hero-section h1 {
  font-size: 3.75rem;
}

.contact-hero-section h1 span {
  color: #d4af37;
}

.contact-section {
  padding: 7rem 5rem;
  background-color: #2a2422;
  width: 100vw;
  margin-left: -1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  place-items: center;
}

.contact-section .left-side h3 {
  color: #fff;
  font-family: Playfair;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.contact-section .left-side .info-text {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.contact-section .left-side form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-section form .row {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.contact-section form input,
.contact-section form textarea {
  flex: 1;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #374151;
}

.contact-section form textarea {
  font-family: inherit;
  resize: none;
}

.contact-section form .submit-contact-button {
  padding: 1rem 2rem;
  background-color: #d4af37;
  color: #2a2422;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  width: fit-content;
}

.contact-section .right-side {
  background: url(../images/map.png);
  background-size: cover;
  width: 100%;
  padding: 10rem 4rem 4rem;
}

.contact-section .right-side .contact-details-container {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

@media (max-width: 390px) {
  .contact-section .right-side .contact-details-container {
    padding: 2rem 0.5rem !important;
    background: none;
    border: none;
  }
}

.contact-section .right-side .contact-details-container h3 {
  color: #fff;
  font-family: Playfair;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.contact-section .right-side .contact-details-container .details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-section .right-side .contact-details-container .detail {
  display: flex;
  gap: 1rem;
}

.contact-section .right-side .contact-details-container .detail img {
  width: 2.5rem;
  height: 2.5rem;
}

.contact-section .right-side .contact-details-container .detail .heading {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}

.contact-section .right-side .contact-details-container .detail .body {
  margin-top: 0.2rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.contact-section .right-side .contact-details-container .bottom-section {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .right-side .contact-details-container .get-directions-button {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.01875rem;
  text-transform: uppercase;
}

.arrival-section {
  width: 100vw;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  background-color: #2a2422;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrival-section h2 {
  color: #fff;
  text-align: center;
  font-family: Playfair;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
}

.arrival-section .heading-text {
  margin-top: 1rem;
  color: #9ca3af;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
}

.arrival-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.arrival-item {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.arrival-item .arrival-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.arrival-item h4 {
  margin-top: 2rem;
  color: #fff;
  font-family: Playfair;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.arrival-item .info-text {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.arrival-item .yellow-line {
  margin-top: 1rem;
  width: 3rem;
  height: 0.0625rem;
  background: rgba(212, 175, 55, 0.3);
}

.arrival-item .cta {
  margin-top: 1rem;
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.01875rem;
  text-transform: uppercase;
}

.essential-info-section {
  background-color: #2a2422;
  width: 100vw;
  margin-left: -1.5rem;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.essential-info-section .left-side h3 {
  color: #fff;
  font-family: Playfair;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.essential-info-section .info-text {
  margin-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.essential-info-section .right-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.essential-info-section .right-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.essential-info-section .info-item {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.essential-info-section .info-item .heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.essential-info-section .info-item .heading .info-icon {
  width: 1rem;
  height: 1rem;
}

.essential-info-section .info-item .heading h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.essential-info-section .info-item .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.essential-info-section .info-item .row-title {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
}

.essential-info-section .info-item .row-time {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
}

.essential-info-section .info-item .small-info-text {
  margin-top: 1.75rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1rem;
}

.essential-info-section .info-item .resort-policies {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.essential-info-section .info-item .resort-policies .info-text-policies {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
}

.faq-section {
  background-color: #2a2422;
  width: 100vw;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  padding: 10rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-section h2 {
  color: #fff;
  text-align: center;
  max-width: 100%;
}

.faq-accordion {
  max-width: 800px;
  margin: 4rem auto;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
}

.accordion-header .icon {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding-bottom: 1rem;
  margin: 0;
  color: #fff;
}

/* Active state */
.accordion-item.active .accordion-content {
  max-height: 200px; /* enough to show content */
}

.accordion-item.active .icon {
  content: "-";
}

@media (max-width: 1024px) {
  .contact-hero-section {
    padding: 5rem 2rem;
  }

  .contact-hero-section h1 {
    font-size: 2.75rem;
  }

  .contact-hero-section .hero-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 4rem 1.5rem;
  }

  .contact-hero-section h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    padding: 3rem 1rem;
  }

  .contact-hero-section h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
    gap: 3rem;
  }

  .contact-section .right-side {
    padding: 6rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section form .row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

@media (max-width: 768px) {
  .arrival-section {
    padding: 4rem 1.5rem;
  }

  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .arrival-item {
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .essential-info-section {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .essential-info-section .right-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 5rem 1.5rem;
  }

  .faq-accordion {
    margin: 2rem auto;
  }
}
