/* ============================================
   MESTYLE GARAGE HOTEL - Luxury Landing Page
   ============================================ */

:root {
  --navy: #0e1c3f;
  --navy-light: #1a2f5e;
  --cream: #f5f4f0;
  --cream-dark: #eceae4;
  --gold: #b8975a;
  --gold-light: #d4b47c;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray: #78808c;
  --surface: #ffffff;
  --border: rgba(14,28,63,0.08);
  --shadow-sm: 0 1px 4px rgba(14,28,63,0.06), 0 1px 2px rgba(14,28,63,0.04);
  --shadow-md: 0 4px 20px rgba(14,28,63,0.07), 0 1px 6px rgba(14,28,63,0.04);
  --shadow-lg: 0 16px 48px rgba(14,28,63,0.09), 0 4px 16px rgba(14,28,63,0.05);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.body-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- Loading Screen ---- */
#loader {
  position: fixed;
  inset: 0;
  background: #0e1c3f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 260px; margin-bottom: 2rem; filter: brightness(1.6) contrast(1.1) drop-shadow(0 0 24px rgba(212,180,124,0.55)); }
.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderAnim 1.8s ease-in-out infinite;
}
@keyframes loaderAnim {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ---- Header / Navbar ---- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(14, 28, 63, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(184,151,90,0.25), 0 8px 32px rgba(10,15,40,0.18);
}
.header-logo {
  height: 52px;
  width: auto;
  filter: sepia(0.35) saturate(1.8) brightness(1.15) drop-shadow(0 1px 6px rgba(0,0,0,0.4));
  transition: filter 0.4s ease;
}
#header.scrolled .header-logo {
  filter: brightness(1.2) saturate(0) sepia(0) drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
/* ---- Header Contact Icons (gear) ---- */
.header-contact-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.8rem;
}
.header-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.35s ease, transform 0.5s ease;
  flex-shrink: 0;
}
.header-icon-btn:hover {
  color: var(--gold);
  transform: rotate(30deg);
}
.h-gear {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.h-icon {
  position: relative;
  width: 40%;
  height: 40%;
  z-index: 1;
}

.header-booking {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.header-booking:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.header-contact-bar {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-contact-bar a { color: inherit; transition: color var(--transition); }
.header-contact-bar a:hover { color: var(--gold); }

/* ---- Side Navigation ---- */
#side-nav {
  position: fixed;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
/* Vertical gold track line */
#side-nav::before {
  content: '';
  position: absolute;
  right: 4px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.35;
}
.side-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.55rem 0;
  position: relative;
}
.side-nav-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.side-nav-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--navy);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
  order: -1;
  text-shadow:
    0 0 8px rgba(246,238,202,0.9),
    1px 0 0 var(--cream),
   -1px 0 0 var(--cream),
    0 1px 0 var(--cream),
    0 -1px 0 var(--cream);
}
.side-nav-item:hover .side-nav-label,
.side-nav-item.active .side-nav-label {
  opacity: 1;
  transform: translateX(0);
}
.side-nav-item.active .side-nav-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.18);
  transform: scale(1.15);
}
.side-nav-item:hover .side-nav-dot {
  background: rgba(201,169,110,0.35);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* ---- Bottom Bar ---- */
#bottom-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}
.btn-scroll-top {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(10,15,40,0.35);
  transition: background 0.3s, color 0.3s, opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.btn-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.btn-scroll-top:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-book-now {
  background: var(--navy);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(10,15,40,0.35), 0 2px 8px rgba(10,15,40,0.2);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-book-now:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(10,15,40,0.45);
}

/* ---- Section Spacing ---- */
.section { padding: 7rem 0; }
.section-sm { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 3rem; }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  background-color: var(--navy);
}
.hero-main {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.hero-slider-btn:hover { background: rgba(201,169,110,0.7); border-color: var(--gold); }
.hero-slider-prev { left: 1.5rem; }
.hero-slider-next { right: 1.5rem; }
.hero-slider-dots {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-slider-dot.active { background: var(--gold); transform: scale(1.3); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,15,30,0.35) 0%,
    rgba(10,15,30,0.1) 40%,
    rgba(25,40,82,0.75) 80%,
    rgba(25,40,82,0.97) 100%
  );
}
.hero-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}
.hero-logo { width: 380px; max-width: 85vw; margin: 0 auto 2.5rem; filter: brightness(1.3) drop-shadow(0 4px 24px rgba(0,0,0,0.7)) drop-shadow(0 0 48px rgba(0,0,0,0.45)); }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.about-photo-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  z-index: 2;
}
.about-strip-item {
  position: relative;
  overflow: hidden;
  height: 60vh;
}
.about-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-strip-item:hover img { transform: scale(1.05); }

#about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}
.about-image-panel {
  position: relative;
  overflow: hidden;
}
.about-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-image-panel:hover img { transform: scale(1.04); }
.about-content-panel {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content-panel .section-title { color: var(--white); margin-bottom: 1.5rem; }
.about-content-panel .body-text { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }
.about-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.facility-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.facility-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.facility-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.facility-card ul li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.facility-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.facility-card ul li:last-child { border-bottom: none; }

/* ============================================
   ROOMS SECTION
   ============================================ */
#rooms {
  background: var(--cream);
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.rooms-header {
  text-align: center;
  margin-bottom: 4rem;
}
.rooms-header .section-title { color: var(--navy); }
.rooms-header .body-text { color: var(--gray); max-width: 600px; margin: 1.5rem auto 0; }

/* Room Tabs */
.room-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(25,40,82,0.15);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.room-tabs::-webkit-scrollbar { display: none; }
.room-tab {
  flex: 1;
  flex-shrink: 0;
  padding: 0.9rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: 1px solid rgba(25,40,82,0.15);
  margin-bottom: -1px;
}
.room-tab:hover { color: var(--navy); }
.room-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.room-tab-dropdown {
  position: relative;
  flex: 1;
  flex-shrink: 0;
  display: flex;
}
.room-tab-dropdown .room-tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.room-tab-dropdown .room-tab::after {
  content: '';
  font-size: 0.6rem;
}
.room-tab-dropdown-menu {
  display: none;
  position: fixed;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  border-top: 2px solid var(--gold);
}
.room-tab-dropdown-menu.open { display: block; }
.room-tab-dropdown-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
}
.room-tab-dropdown-menu a:hover { background: var(--cream); }
.room-tab-dropdown-menu a.active { color: var(--gold); }

/* Room Content */
.room-pane { display: none; }
.room-pane.active { display: block; }

/* --- Full-width carousel wrap --- */
.room-swiper-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.room-swiper-wrap .room-swiper { border-radius: 0; }
.room-name-overlay {
  display: none;
}
.room-name-overlay .room-floor-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  margin-bottom: 0.6rem;
}
.room-name-overlay .room-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* --- 3-column info strip --- */
.room-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.rinfo-desc,
.rinfo-details,
.rinfo-amenities {
  padding: 2.5rem 2.8rem;
}
.rinfo-details { border-left: 1px solid rgba(25,40,82,0.1); }
.rinfo-amenities { border-left: 1px solid rgba(25,40,82,0.1); }

.rinfo-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(25,40,82,0.75);
  margin-bottom: 1.4rem;
}
.rinfo-policy {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  font-size: 0.84rem;
  color: rgba(25,40,82,0.6);
}
.rinfo-policy strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.btn-book-room {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.9rem 2.2rem;
  transition: background 0.3s, box-shadow 0.3s;
  border: 2px solid var(--navy);
}
.btn-book-room:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.rinfo-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}
.rdetail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rdetail-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.rdetail-list li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.75;
  flex-shrink: 0;
}
.rdl-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(25,40,82,0.5);
}
.rdl-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-top: 0.1rem;
}
.ramenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem 0.8rem;
}
.ramenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.ramenity-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.7;
}
.ramenity-item span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(25,40,82,0.65);
  line-height: 1.3;
}

/* old room-info / room-floor-badge kept for reference */
.room-info .room-floor-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
}
.room-specs {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(25,40,82,0.1);
  border-bottom: 1px solid rgba(25,40,82,0.1);
}
.room-spec { text-align: center; }
.room-spec-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
}
.room-spec-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.room-amenities-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.room-amenity-group h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.room-amenity-group ul li {
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 300;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.room-amenity-group ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Room Swiper */
.room-slider { position: relative; }
.room-swiper { border-radius: 0; overflow: hidden; }
.room-swiper .swiper-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--white) !important;
  background: rgba(25,40,82,0.6);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: background var(--transition);
}
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--gold) !important; }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 0.9rem !important; font-weight: bold !important; }
.swiper-pagination-bullet { background: var(--white) !important; opacity: 0.5 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; opacity: 1 !important; }

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
  background: var(--navy);
  padding: 8rem 0;
}
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-header .section-title { color: var(--white); }
.gallery-slider-wrap {
  position: relative;
  padding: 0 60px;
}
.gallery-track-outer {
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 4px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.gallery-nav-btn:hover { background: rgba(201,169,110,0.75); border-color: var(--gold); }
.gallery-nav-prev { left: 6px; }
.gallery-nav-next { right: 6px; }
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 0;
}
.gallery-pagination .gallery-nav-btn {
  position: static;
  transform: none;
}
.gallery-page-info {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  min-width: 80px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,40,82,0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ============================================
   BAR & RESTAURANT SECTION
   ============================================ */
#bar {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.bar-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../wp-content/uploads/2019/06/53-Cafe-Bar11.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,40,82,0.88) 0%, rgba(25,40,82,0.55) 100%);
}
.bar-content {
  position: relative;
  z-index: 2;
  padding: 8rem 3rem;
}
.bar-content-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.bar-info .section-title { color: var(--white); margin-bottom: 1.5rem; }
.bar-info .body-text { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.bar-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.bar-hour-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.bar-hour-icon { color: var(--gold); font-size: 1.2rem; }
.bar-hour-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.bar-hour-time { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.bar-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.bar-gallery-thumbs img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bar-gallery-thumbs img:hover { transform: scale(1.03); }

/* ============================================
   NEIGHBOURHOOD SECTION
   ============================================ */
#neighbourhood {
  background: var(--cream);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.neighbourhood-header { text-align: center; margin-bottom: 5rem; }
.neighbourhood-header .section-title { color: var(--navy); }
.neighbourhood-video-wrap {
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
  margin-bottom: 5rem;
  background: var(--navy);
}
.neighbourhood-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.neighbourhood-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.neighbourhood-cat {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(25,40,82,0.1);
  transition: all var(--transition);
}
.neighbourhood-cat:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.neighbourhood-cat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.neighbourhood-cat-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}
.neighbourhood-cat ul li {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.neighbourhood-cat ul li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
#location { padding: 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 550px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}
.location-info {
  background: var(--navy);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .section-title { color: var(--white); font-size: 2.5rem; margin-bottom: 1.5rem; }
.location-info .body-text { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.location-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.location-detail-icon { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.location-detail-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 300; }
.location-detail-text strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.location-download {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.location-download:hover { color: var(--gold); }

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--cream);
  padding: 8rem 0 10rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info-panel .section-title { color: var(--navy); margin-bottom: 1.5rem; }
.contact-info-panel .body-text { color: var(--gray); margin-bottom: 2.5rem; }
.contact-logo { width: 200px; margin-bottom: 2.5rem; filter: brightness(0.7) sepia(0.4) saturate(1.5) drop-shadow(0 2px 8px rgba(14,28,63,0.15)); }
.contact-social { display: flex; gap: 1rem; margin-top: 2rem; }
.social-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(25,40,82,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social-icon:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 3rem 3rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(25,40,82,0.12);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--navy);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(25,40,82,0.35); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-message {
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  margin-top: 1rem;
  display: none;
}
.form-message.success { background: rgba(34,197,94,0.1); border-left: 3px solid #22c55e; color: #15803d; display: block; }
.form-message.error { background: rgba(239,68,68,0.1); border-left: 3px solid #ef4444; color: #b91c1c; display: block; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  padding: 3rem;
  text-align: center;
}
.footer-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
}
.footer-text a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-text a:hover { color: var(--gold); }

/* ============================================
   LIGHTBOX
   ============================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
  padding: 1rem;
  line-height: 1;
}
.lightbox-nav:hover { color: var(--white); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================
   BOOKING MODAL
   ============================================ */
#booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#booking-modal.open { display: flex; }
.bm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,20,40,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.bm-card {
  position: relative;
  background: #fff;
  width: min(640px, 94vw);
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(10,15,35,0.45);
  overflow: hidden;
  animation: bmSlideUp 0.38s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes bmSlideUp {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bm-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.bm-close:hover { color: #fff; }
.bm-header {
  background: var(--navy);
  padding: 2rem 2rem 1.6rem;
  border-bottom: 2px solid var(--gold);
}
.bm-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.bm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.04em;
}
.bm-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
  padding: 1.8rem 2rem;
  background: #fafaf8;
}
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bm-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}
.bm-input,
.bm-select {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid rgba(25,40,82,0.2);
  border-radius: 2px;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
}
.bm-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23192852' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
.bm-input:focus,
.bm-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.bm-footer {
  padding: 1.2rem 2rem 1.8rem;
  background: #fafaf8;
  border-top: 1px solid rgba(25,40,82,0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.bm-search {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.bm-search:hover {
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}
.bm-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--navy);
  opacity: 0.55;
  margin: 0;
}
@media (max-width: 520px) {
  .bm-body { grid-template-columns: 1fr; }
  .bm-footer { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .bm-search { width: 100%; text-align: center; }
}

/* ============================================
   AOS ANIMATIONS
   ============================================ */
[data-aos] { opacity: 0; transition-property: transform, opacity; }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.94); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================
   MOBILE HAMBURGER
   ============================================ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobile-nav.open { display: flex; }
.mobile-nav-item {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-nav-item:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================
   HEADER NAV (desktop)
   ============================================ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--gold); }

/* ============================================
   ROOM — enhanced detail & amenity styles
   ============================================ */
.room-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.room-desc { color: var(--gray); margin: 0.8rem 0 0; }

.room-section-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Room Details icon grid */
.room-details-section {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(25,40,82,0.1);
}
.room-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.room-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(25,40,82,0.08);
  background: rgba(25,40,82,0.02);
  transition: border-color var(--transition);
}
.room-detail-item:hover { border-color: rgba(201,169,110,0.4); }
.room-detail-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
}
.room-detail-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.room-detail-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--navy);
}

/* Amenity icons */
.room-amenities-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(25,40,82,0.1);
}
.amenities-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.amenity-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 0.5rem;
  border: 1px solid rgba(25,40,82,0.08);
  text-align: center;
  transition: all var(--transition);
}
.amenity-icon-item:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.amenity-icon-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.8;
}
.amenity-icon-item span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

/* Bathroom amenities list */
.room-bathroom-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(25,40,82,0.1);
}
.room-amenity-list li {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 300;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.room-amenity-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Room Swiper height */
.room-swiper .swiper-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Room extra info bar */
.room-extra-info {
  display: flex;
  margin-top: 4px;
  background: var(--navy);
}
.room-extra-card {
  flex: 1;
  text-align: center;
  padding: 0.9rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.room-extra-card:last-child { border-right: none; }
.room-extra-title {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.room-extra-value {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-serif);
}

/* ============================================
   NEWS / PROMOTIONS SECTION
   ============================================ */
#news {
  background: var(--navy);
  padding: 0;
}
.news-video-wrap {
  width: 100%;
}
.news-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.news-video-frame iframe,
.news-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}
.video-mute-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.video-mute-btn:hover {
  background: rgba(201,169,110,0.75);
  transform: scale(1.1);
}
.video-mute-btn svg {
  width: 20px;
  height: 20px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.news-card {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}
.news-card-body { padding: 1.8rem; }
.news-date {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.news-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.news-desc {
  font-size: 0.92rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.news-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.news-link:hover { color: var(--gold); }

/* ============================================
   LOCATION — icon images
   ============================================ */
.loc-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-top: 0.2rem;
}

/* ============================================
   FOOTER logo wrap
   ============================================ */
.footer-logo-wrap { margin-bottom: 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-panel { height: 400px; }
  .about-content-panel { padding: 4rem 3rem; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .room-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .room-info-grid { grid-template-columns: 1fr; }
  .rinfo-details, .rinfo-amenities { border-left: none; border-top: 1px solid rgba(25,40,82,0.1); }
  .bar-content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .neighbourhood-cats { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-item { flex: 0 0 calc(33.333% - 3px); }
  #side-nav { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
  .header-contact-icons { display: none; }
}

@media (max-width: 768px) {
  .about-photo-strip { grid-template-columns: 1fr; }
  .about-strip-item { height: 60vw; }
  .container, .container-wide { padding: 0 1.5rem; }
  #header { padding: 1rem 1.5rem; }
  #header.scrolled { padding: 0.8rem 1.5rem; }
  .mobile-menu-btn { display: flex; }
  .section { padding: 5rem 0; }
  .about-content-panel { padding: 3rem 1.5rem; }
  .facilities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .neighbourhood-cats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .location-info { padding: 3rem 1.5rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .bar-gallery-thumbs { grid-template-columns: 1fr 1fr; }
  .bar-gallery-thumbs img { height: 140px; }
  #bottom-bar { left: 0; right: 0; transform: none; width: 100%; border-radius: 0; }
  .bottom-bar-contact span { display: none; }
  .hero-logo { width: 240px; }
  .room-tabs { gap: 0; }
  .room-tab { padding: 0.7rem 0.9rem; font-size: 0.68rem; }
  .news-grid { grid-template-columns: 1fr; }
  .room-details-grid { grid-template-columns: 1fr 1fr; }
  .amenities-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .room-swiper .swiper-slide img { height: 320px; }
  .room-name-overlay { padding: 1.5rem; }
  .room-name-overlay .room-name { font-size: 1.6rem; }
  .rinfo-desc, .rinfo-details, .rinfo-amenities { padding: 1.8rem 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-item { flex: 0 0 calc(100% - 0px); height: 240px; }
  .gallery-slider-wrap { padding: 0 44px; }
  .neighbourhood-cats { grid-template-columns: 1fr; }
  .bar-gallery-thumbs { grid-template-columns: 1fr; }
  .room-swiper .swiper-slide img { height: 260px; }
  .ramenity-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Tripla close button ---- */
#tripla-close-btn {
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 2147483647;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  padding: 0;
  font-family: sans-serif;
}
#tripla-close-btn:hover { background: #333; color: #fff; border-color: #333; }
