/* ================================================================
   HOTEL FIVE RIVERS — Complete Stylesheet
   ================================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A8893E;
  --teal: #00B4C5;
  --teal-light: #33C9D6;
  --teal-dark: #008E9B;
  --black: #0A0A0A;
  --charcoal: #121212;
  --dark: #1A1A1A;
  --dark-card: #0F0F0F;
  --gray: #777777;
  --gray-light: #AAAAAA;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
  --container-pad: 24px;
}

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; }
p { font-weight: 300; }
em { font-style: italic; color: var(--gold); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--gold {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.25);
  font-weight: 300;
}

.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.04);
}

.btn--outline-gold {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--lg { padding: 15px 36px; }
.btn--sm { padding: 9px 20px; font-size: 10px; }

.tag {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 10px;
  color: var(--gray-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.5s ease;
}

.nav--scrolled,
.nav--solid {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: height 0.4s ease;
}

.nav--scrolled .nav__logo img,
.nav--solid .nav__logo img {
  height: 38px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--gold); }
.nav__link--active::after { width: 100%; }

.nav__cta { font-size: 11px; }

.nav__toggle {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 0; }

.nav__toggle--active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.nav__toggle--active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu--open {
  display: flex;
  opacity: 1;
}

.mobile-menu__link {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu__link--cta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  margin-top: 8px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
  
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 35%, rgba(10,10,10,0.45) 65%, rgba(10,10,10,0.8) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero__badge svg { color: var(--gold); }

.hero__title {
  font-size: clamp(46px, 8vw, 108px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 18px;
}

.hero__sub {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.hero__scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ================================================================
   BOOKING BAR
   ================================================================ */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding: 0 var(--container-pad);
}

.booking-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.booking-bar__label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

#hr_search_widget {
  display: flex;
  justify-content: center;
}

/* ================================================================
   SECTION SHARED STYLES
   ================================================================ */
.section-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 50px);
  text-align: center;
  color: var(--cream);
  margin-bottom: 14px;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

/* ================================================================
   AMENITIES
   ================================================================ */
.amenities {
  padding: 100px 0 110px;
  background: var(--black);
}

.amenities__container { padding-top: 48px; }

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  cursor: default;
}

.amenity__circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.02);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.amenity__circle::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-out-expo);
}

.amenity:hover .amenity__circle {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.12);
}

.amenity:hover .amenity__circle::after {
  border-color: rgba(201, 168, 76, 0.12);
}

.amenity__circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity__label {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 400;
  line-height: 1.45;
}

/* ================================================================
   ROOM CARDS (homepage)
   ================================================================ */
.rooms {
  padding: 110px 0 120px;
  background: var(--charcoal);
}

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

.room-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  text-decoration: none;
  display: block;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.room-card__image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

.room-card__image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.85) 0%, transparent 45%);
}

.room-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.room-card__body { padding: 24px 22px 28px; }

.room-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.room-card__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}

.room-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.room-card__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
}

.room-card__price small {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray);
  font-weight: 300;
}

/* ================================================================
   BRAND / FIVE RIVERS
   ================================================================ */
.brand {
  padding: 140px 0 120px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 197, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.brand__container { position: relative; z-index: 1; }

.brand__rivers {
  width: 260px;
  height: 380px;
  margin: 0 auto 40px;
}

.brand__rivers svg { width: 100%; height: 100%; }

.river-strand {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(0, 200, 210, 0.4));
  transition: none;
}

.river-strand--animated {
  opacity: 0.85;
  animation: drawRiver 2.2s var(--ease-out-expo) forwards;
}

/* Staggered delays for each strand */
.rs1.river-strand--animated { animation-delay: 0s; }
.rs2.river-strand--animated { animation-delay: 0.12s; }
.rs3.river-strand--animated { animation-delay: 0.25s; }
.rs4.river-strand--animated { animation-delay: 0.38s; }
.rs5.river-strand--animated { animation-delay: 0.5s; }

/* Glow pulse at base */
.river-glow {
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.15; rx: 8; ry: 12; }
  50% { opacity: 0.35; rx: 14; ry: 18; }
}

.brand__logo { margin-bottom: 28px; }

.brand__logo img {
  height: 72px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.15));
}

.brand__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  max-width: 520px;
  margin: 0 auto 14px;
}

.brand__headline em { color: var(--teal); }

.brand__text {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 40px;
}

.brand__river-names {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.river-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  opacity: 0.5;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
}

.river-name:hover { opacity: 1; }

.river-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.river-name:hover::after { width: 100%; }

/* ================================================================
   REVIEWS & PARTNERS
   ================================================================ */
.reviews {
  padding: 110px 0;
  background: var(--charcoal);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 32px 24px;
  transition: all 0.5s ease;
  position: relative;
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.12);
  transform: translateY(-4px);
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-card__stars svg { width: 13px; height: 13px; fill: var(--gold); }

.review-card__body {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 18px;
  min-height: 80px;
  border: none;
  padding: 0;
}

.review-card__author {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  font-style: normal;
}

.review-card__source {
  font-size: 10px;
  color: var(--gray);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.partners {
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.partners__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}

.partners__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners__logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.partners__logo:hover { opacity: 0.7; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 72px 0 0;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.4fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

.footer__akbar {
  display: block;
  font-size: 11px;
  color: var(--gray);
  opacity: 0.6;
  font-style: italic;
}

.footer__social { display: flex; gap: 10px; margin-top: 16px; }

.footer__social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer__social svg { width: 13px; height: 13px; fill: var(--gray-light); }

.footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a { color: var(--gray); font-size: 13px; font-weight: 300; transition: color 0.3s; }
.footer__links a:hover { color: var(--cream); }

.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__contact-row svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-row span { font-size: 13px; color: var(--gray-light); font-weight: 300; line-height: 1.5; }
.footer__contact-row a { color: var(--gold-light); transition: color 0.3s; }
.footer__contact-row a:hover { color: var(--gold); }

.footer__map {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  height: 160px;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) brightness(0.65) contrast(1.15);
  transition: filter 0.5s;
}

.footer__map:hover iframe { filter: grayscale(0) brightness(0.85); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p { font-size: 11px; color: var(--gray); font-weight: 300; }
.footer__bottom a { color: var(--gold); }

/* ================================================================
   WHATSAPP FAB
   ================================================================ */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.wa-fab svg { width: 26px; height: 26px; fill: var(--white); }

/* ================================================================
   ROOM PAGE: HERO
   ================================================================ */
.room-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.room-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.room-hero:hover .room-hero__bg { transform: scale(1.08); }

.room-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 100%);
}

.room-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 48px;
  width: 100%;
}

.room-hero__breadcrumb {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.room-hero__breadcrumb a { color: var(--gold-light); transition: color 0.3s; }
.room-hero__breadcrumb a:hover { color: var(--gold); }
.room-hero__breadcrumb span { margin: 0 8px; opacity: 0.4; }

.room-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.room-hero__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
}

.room-hero__price small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-light);
  font-weight: 300;
}

/* ================================================================
   ROOM PAGE: GALLERY
   ================================================================ */
.gallery { padding: 80px 0; background: var(--black); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  transition: background 0.3s ease;
}

.gallery__item:hover::after { background: rgba(10, 10, 10, 0.15); }

.gallery__expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__expand { opacity: 1; }
.gallery__expand svg { width: 16px; height: 16px; stroke: var(--cream); fill: none; stroke-width: 2; }

/* ================================================================
   ROOM PAGE: LIGHTBOX
   ================================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox--open { display: flex; }

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 2001;
  border: none;
  cursor: pointer;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__close svg { width: 20px; height: 20px; stroke: var(--cream); fill: none; stroke-width: 2; }

.lightbox__image { max-width: 90vw; max-height: 85vh; object-fit: contain; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.lightbox__nav:hover { background: rgba(255, 255, 255, 0.15); }
.lightbox__nav svg { width: 20px; height: 20px; stroke: var(--cream); fill: none; stroke-width: 2; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 2px;
}

/* ================================================================
   ROOM PAGE: DETAILS & SPECS
   ================================================================ */
.room-details { padding: 80px 0; background: var(--charcoal); }

.room-details__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.room-details__desc h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 20px;
}

.room-details__desc h2 em { color: var(--gold); }

.room-details__desc p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.room-details__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.room-details__book-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.room-details__rate {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
}

.room-details__rate small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

/* Specs */
.specs {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 28px;
}

.specs__title {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.specs__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.specs__row:last-child { border-bottom: none; }
.specs__label { font-size: 13px; color: var(--gray); font-weight: 400; }
.specs__value { font-size: 13px; color: var(--cream); font-weight: 400; text-align: right; }

/* Room Amenities Grid */
.room-amenities { padding: 80px 0; background: var(--black); }

.room-amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.room-amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s;
}

.room-amenity-item:hover { border-color: rgba(201, 168, 76, 0.15); }

.room-amenity-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-amenity-item span { font-size: 12px; color: var(--gray-light); letter-spacing: 0.5px; }

/* Video */
.room-video { padding: 80px 0; background: var(--charcoal); }

.room-video__wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.room-video__wrapper iframe { width: 100%; height: 100%; border: 0; }

.room-video__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gray);
}

.room-video__placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.5;
}

.room-video__placeholder span { font-size: 13px; letter-spacing: 1px; }

/* Other Rooms */
.other-rooms { padding: 80px 0; background: var(--black); }

.other-rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.other-room-card {
  display: flex;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  text-decoration: none;
}

.other-room-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.other-room-card__img { width: 180px; flex-shrink: 0; overflow: hidden; }
.other-room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.other-room-card:hover .other-room-card__img img { transform: scale(1.06); }

.other-room-card__body { padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.other-room-card__name { font-family: var(--font-display); font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.other-room-card__price { font-family: var(--font-display); font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.other-room-card__price small { font-family: var(--font-body); font-size: 11px; color: var(--gray); }
.other-room-card__link { font-size: 11px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes heroBreath {
  0% { transform: scale(1.06); }
  100% { transform: scale(1.16); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes drawRiver {
  to { stroke-dashoffset: 0; }
}

.animate-fade-up { opacity: 0; animation: fadeUp 0.9s ease forwards; }
.animate-fade-up[data-delay="1"] { animation-delay: 0.2s; }
.animate-fade-up[data-delay="2"] { animation-delay: 0.4s; }
.animate-fade-up[data-delay="3"] { animation-delay: 0.6s; }
.animate-fade-up[data-delay="4"] { animation-delay: 0.8s; }
.animate-fade-up[data-delay="5"] { animation-delay: 1.2s; }

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

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

.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.40s; }
.rd6 { transition-delay: 0.48s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .rooms__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 72px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .room-details__grid { grid-template-columns: 1fr; gap: 40px; }
  .room-amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .other-rooms__grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .amenities { padding: 72px 0 80px; }
  .rooms { padding: 72px 0 80px; }
  .reviews { padding: 72px 0; }
  .brand { padding: 100px 0 88px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .partners__row { gap: 20px; }
  .brand__river-names { gap: 16px; }
  .booking-bar__inner { padding: 16px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:first-child { grid-column: span 2; grid-row: span 1; }
  .room-hero { height: 50vh; min-height: 340px; }
  .room-amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .other-room-card { flex-direction: column; }
  .other-room-card__img { width: 100%; height: 180px; }
  .lightbox { padding: 16px; }
}

@media (max-width: 480px) {
  .amenity__circle { width: 64px; height: 64px; }
  .amenity__circle svg { width: 22px; height: 22px; }
  .brand__rivers { width: 180px; height: 280px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .room-amenities__grid { grid-template-columns: 1fr 1fr; }
}


/* ================================================================
   CALL FLOATING BUTTON (Left side)
   ================================================================ */
.call-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0;
}

.call-fab__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.call-fab__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
}

.call-fab__btn svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
}

/* Rotating ring animation */
.call-fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  animation: callRing 2.5s linear infinite;
  pointer-events: none;
}

.call-fab__ring-outer {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(201, 168, 76, 0.3);
  border-left-color: rgba(201, 168, 76, 0.2);
  animation: callRing 4s linear infinite reverse;
  pointer-events: none;
}

/* Pulse effect */
.call-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  animation: callPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes callRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes callPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* Tooltip */
.call-fab__tooltip {
  position: absolute;
  left: 64px;
  bottom: 8px;
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s var(--ease-out-expo);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.call-fab__tooltip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid var(--charcoal);
}

.call-fab__tooltip em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.call-fab:hover .call-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Auto-show tooltip on load then hide */
.call-fab__tooltip--intro {
  animation: tooltipIntro 6s ease forwards;
}

@keyframes tooltipIntro {
  0% { opacity: 0; transform: translateX(-10px); }
  15% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-10px); }
}

/* ================================================================
   ROOM CARD VIDEO OVERLAY (Homepage)
   ================================================================ */
.room-card__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.room-card__play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.room-card__play-btn:hover {
  background: rgba(201, 168, 76, 0.9);
  color: var(--black);
  border-color: var(--gold);
}

.room-card__play-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  transition: fill 0.3s;
}

.room-card__play-btn:hover svg {
  fill: var(--black);
}

@media (max-width: 768px) {
  .call-fab__tooltip { display: none; }
  .call-fab__tooltip--intro { display: none; }
  .room-card__video-overlay { opacity: 1; }
  .room-card__play-btn { padding: 8px 16px; font-size: 10px; }
}


/* ================================================================
   STRIKETHROUGH / RACK RATE PRICING
   ================================================================ */
.room-card__rack-rate {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 80, 80, 0.6);
  margin-right: 8px;
  opacity: 0.7;
}

.room-card__price--discount {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
}

.room-hero__rack-rate {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 80, 80, 0.6);
  margin-right: 10px;
  opacity: 0.7;
}

.room-details__rack-rate {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray);
  font-weight: 300;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 80, 80, 0.6);
  margin-right: 10px;
  opacity: 0.7;
}

/* Wide logo adjustments */
.nav__logo img {
  height: 40px;
  width: auto;
  transition: height 0.4s ease;
}

.nav--scrolled .nav__logo img,
.nav--solid .nav__logo img {
  height: 32px;
}
