.text-4xl {
  font-size: 2.25rem /* 36px */;
  line-height: 2.5rem /* 40px */;
}
.text-2xl {
  font-size: 1.5rem /* 24px */;
  line-height: 2rem /* 32px */;
}
.text-3xl {
  font-size: 1.875rem /* 30px */;
  line-height: 2.25rem /* 36px */;
}

.max-w-screen-lg {
  max-width: 1024px;
}

@media (min-width: 1024px) {
  .lg\:aspect-\[3\/4\] {
    aspect-ratio: 3/4;
  }
}

.w-11\/12 {
  width: 91.666667%;
}

@media (min-width: 1024px) {
  .lg\:aspect-\[21\/9\] {
    aspect-ratio: 21/9;
  }
}

.w-10\/12 {
  width: 83.333333%;
}

.w-6\/12 {
  width: 50%;
}

.mb-16 {
  margin-bottom: 4rem /* 64px */;
}

.mt-16 {
  margin-top: 4rem /* 64px */;
}

.mt-32 {
  margin-top: 8rem /* 128px */;
}

.w-64 {
  width: 16rem /* 256px */;
}

.border-l-0 {
  border-left-width: 0px;
}
.border-r-0 {
  border-right-width: 0px;
}
.border-t {
  border-top-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}

.pb-5 {
  padding-bottom: 1.25rem /* 20px */;
}

.w-8\/12 {
  width: 66.666667%;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.list-disc {
  list-style-type: disc;
}

.ms-5 {
  margin-inline-start: 1.25rem /* 20px */;
}

.ms-7 {
  margin-inline-start: 1.75rem /* 28px */;
}


/* 1. Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    background-color: rgba(249, 248, 246, 0.85);
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.offcanvas {
    position: fixed;
    z-index: 60;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 1.5px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

.btn-reserve {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-reserve:hover {
    background-color: #a88444;
    color: var(--bg-color);
    outline-color: #a88444;
    border: 1px solid var(--bg-color);
}

    /* CSS Variables for Palette & Fonts */
    :root {
      --bg-color: #F9F8F6; /* Broken white / Warm off-white */
      --text-main: #1A1A1A; /* Grayish black */
      --text-muted: #666666;
      --border-color: #E2DFD8;
      --font-serif: 'Cormorant Garamond', serif;
      --font-sans: 'Plus Jakarta Sans', sans-serif;
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-main);
      font-family: var(--font-sans);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }

    /* 1. Navbar */
    /* .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 24px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background-color: rgba(249, 248, 246, 0.85);
      backdrop-filter: blur(8px);
      transition: transform 0.4s ease, background-color 0.4s ease;
    }

    .navbar.hidden {
      transform: translateY(-100%);
    } */

    .burger-menu {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 4px;
    }

    .burger-menu span {
      display: block;
      width: 28px;
      height: 1.5px;
      background-color: var(--text-main);
      transition: var(--transition-smooth);
    }

    .btn-reserve {
      background-color: transparent;
      color: var(--text-main);
      border: 1px solid var(--text-main);
      padding: 10px 24px;
      font-family: var(--font-sans);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-reserve:hover {
      background-color: #a88444;
      color: var(--bg-color);
      outline-color: #a88444;
      border: 1px solid var(--bg-color);
    }

    /* 2. Hero Header Section */
    .hero {
      padding: 140px 24px 60px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .logo-placeholder {
      width: 275px; 
      height: auto;
      margin: 0 auto 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .hero-title-italic {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.35rem;
      color: var(--text-muted);
      margin-bottom: 8px;
      letter-spacing: 0.05em;
    }

    .hero-title-italic-bold {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 2rem;
      color: var(--text-muted);
      margin-bottom: 8px;
      letter-spacing: 0.05em;
      font-weight: 600;
  }

  .sub-title-italic-bold {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.75rem;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    font-weight: 600;
  }

    .hero-title-bold {
      font-family: var(--font-serif);
      font-weight: 600;
      font-size: 2.75rem;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.05rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    /* 3. Minimalist Video Container */
    .video-section {
    padding: 0 8vw; /* Defines the layout boundary */
    margin-bottom: 90px;
    }

    .video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #EFECE6;
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* 4. Interactive Section Menu */
    .section-menu-container {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 80px;
    }

    .section-menu {
      display: flex;
      justify-content: center;
      gap: 48px;
      list-style: none;
    }

    .menu-item {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 16px 0;
      cursor: pointer;
      position: relative;
      background: none;
      border: none;
      transition: var(--transition-smooth);
    }

    .menu-item:hover {
      color: var(--text-main);
    }

    .menu-item.active {
      color: var(--text-main);
      font-weight: 500;
    }

    .menu-item.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--text-main);
    }

    /* 5. Tab Content Sections (Slick-Safe CSS Hiding) */
    .tab-content {
    width: 100%;
    max-width: none; /* Removed fixed 1100px constraint */
    padding: 0 8vw;  /* Matches video-section padding exactly */
    box-sizing: border-box;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    }

    .tab-content.active {
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    padding-bottom: 120px;
    }

    /* About Section Layout */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 125px;
    }

    .about-text p {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.8;
      font-weight: 300;
    }

    .about-text p:first-of-type {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      color: var(--text-main);
      line-height: 1.5;
      font-weight: 600;
    }

    .facilities-list {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .facility-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .facility-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .facility-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--text-main);
      fill: none;
      stroke-width: 1.5;
    }

    .facility-info h4 {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .facility-info p {
      font-size: 0.875rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    .placeholder-tab {
      text-align: center;
      padding: 80px 0;
      color: var(--text-muted);
      font-family: var(--font-serif);
      font-style: italic;
    }

    /* Rooms Section & Card Styling */
    .room-card {
      box-sizing: border-box;
      text-align: center;
      margin-bottom: 15px;
    }

    .room-image-wrapper {
      overflow: hidden;
      margin-bottom: 20px;
      aspect-ratio: 1 / 1;
      background-color: #EFECE6;
    }

    .room-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .room-card:hover .room-img {
      transform: scale(1.04);
    }

    .room-body {
      padding: 0 8px 16px;
    }

    .room-title {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .room-excerpt {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.6;
      font-weight: 300;
      cursor: pointer;
    }

    .line-clamp-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .room-footer {
      margin-top: 12px;
      display: flex;
      justify-content: center;
    }

    .btn-explore {
      display: inline-block;
      padding: 8px 24px;
      border: 1px solid var(--text-main);
      color: var(--text-main);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: var(--transition-smooth);
    }

    .btn-explore:hover {
      background-color: #a88444;
      color: var(--bg-color);
      outline-color: #a88444;
      border: 1px solid var(--bg-color);

    }

    /* Bento Grid Layout */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    width: 100%;
  }

  .bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #EFECE6;
  }

  .bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .bento-item:hover img {
    transform: scale(1.05);
  }

  /* Gradient Overlay & Captions */
  .bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #FFFFFF;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }

  .bento-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2px;
  }

  .bento-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
  }

  /* Size Spans */
  .col-span-2 {
    grid-column: span 2;
  }

  .row-span-2 {
    grid-row: span 2;
  }

  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .bento-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 200px;
    }
  }

  @media (max-width: 640px) {
    .bento-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 240px;
    }

    .col-span-2,
    .row-span-2 {
      grid-column: span 1;
      grid-row: span 1;
    }
  }

  /* Lightbox Modal Base Styles */
  .lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
  }

  .lightbox-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .lightbox-caption {
    text-align: center;
    margin-top: 16px;
    color: #FFFFFF;
  }

  .lightbox-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C2C0BA;
    display: block;
    margin-bottom: 4px;
  }

  .lightbox-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
  }

  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.2s ease;
  }

  .lightbox-close:hover {
    opacity: 0.7;
  }

  /* Make Bento Items Clickable */
  .bento-item {
    cursor: pointer;
  }

.facility-item {
    display: flex;
    align-items: center;   /* vertically centers facility-icon next to the taller facility-info */
    gap: 15px;              /* spacing between icon and text, adjust as needed */
}

.facility-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;         /* prevents the icon from shrinking when text is long */
}

.about-suites-section {
    background: #f7f5f1;
    width: calc(100% + 16vw);
    margin-left: -8vw;
    margin-top: 30px;
    padding: 30px 8vw;
    box-sizing: border-box;
}

.about-suites-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-suites-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
    padding: 20px 24px;
    }

    .hero {
    padding-top: 120px;
    }

    .hero-title-bold {
    font-size: 2rem;
    }

    .video-section {
    padding: 0 24px;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .section-menu {
    gap: 24px;
    }

    .logo-placeholder {
    width: 150px;
    margin-bottom: 24px;
    }

    .about-suites-section {
      width: calc(100% + 48px);
      margin-left: -24px;
      padding: 30px 24px;
  }

  .sub-title-italic-bold {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.35rem;
      margin-bottom: 8px;
      letter-spacing: 0.05em;
      font-weight: 600;
  }
}