* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: #fdfaf5; color: #1a1a1a; }
a { text-decoration: none; color: inherit; }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: transparent;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 60px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 60px; width: auto; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1.5px;
  transition: color 0.4s;
}
.navbar.scrolled .logo-text { color: #b8973a; }
.nav-links { list-style: none; display: flex; gap: 22px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: #1a1a1a; }
.nav-links a:hover, .nav-links a.active { color: #b8973a !important; }
.navbar-right { display: flex; align-items: center; gap: 12px; }
.iso-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(184,151,58,0.7);
  border-radius: 6px;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  transition: all 0.4s;
}
.navbar.scrolled .iso-nav {
  background: rgba(184,151,58,0.08);
  border-color: #b8973a;
}
.iso-nav img { height: 28px; width: auto; }
.iso-nav span {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.4s;
}
.navbar.scrolled .iso-nav span { color: #b8973a; }
.btn-book {
  background: #b8973a;
  color: #fff !important;
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-book:hover { background: #9a7d2e; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.navbar.scrolled .hamburger span { background: #1a1a1a; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #111111;
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: #b8973a; }
.mobile-nav .mobile-book {
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  background: #b8973a;
  color: #fff !important;
  padding: 14px 44px;
  border-radius: 2px;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: blur(3px) brightness(0.55);
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #f0dfa0;
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-size: 16px;
  color: #f0dfa0;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.btn-hero {
  border: 1.5px solid #ffffff;
  color: #ffffff;
  padding: 14px 44px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  border-radius: 2px;
}
.btn-hero:hover { background: #ffffff; color: #1a1a1a; }

.float-enquiry {
  position: fixed;
  bottom: 24px; left: 24px;
  background: #b8973a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(184,151,58,0.4);
  transition: background 0.3s;
}
.float-enquiry:hover { background: #9a7d2e; }
.float-call {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: background 0.3s;
}
.float-call:hover { background: #1da851; }
.float-call i { font-size: 16px; }

.intro {
  padding: 100px 80px;
  text-align: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.intro-line { width: 60px; height: 1.5px; background: #b8973a; }
.intro-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8973a;
  font-weight: 600;
}
.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.intro-text {
  max-width: 720px;
  font-size: 17px;
  line-height: 2;
  color: #555;
  font-weight: 300;
}

.video-section {
  background: #111111;
  padding: 100px 80px;
  text-align: center;
}
.video-label { margin-bottom: 50px; }
.video-label .showcase-label { color: #f0dfa0; }
.video-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.video-label p {
  font-size: 16px;
  color: #888;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-overview {
  display: flex;
  align-items: stretch;
  min-height: 620px;
  background: #fdfaf5;
}
.overview-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.overview-image:hover img { transform: scale(1.04); }
.overview-badge {
  position: absolute;
  bottom: 36px; left: 36px;
  background: #b8973a;
  color: #fff;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.overview-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.overview-badge span:last-child {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 3px;
}
.overview-content {
  flex: 1;
  padding: 70px 60px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.overview-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-top: -4px;
}
.overview-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  font-weight: 300;
  max-width: 460px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 6px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-item i {
  font-size: 19px;
  color: #b8973a;
  margin-top: 3px;
  width: 22px;
  flex-shrink: 0;
}
.service-item h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.service-item p {
  font-size: 12.5px;
  color: #999;
  line-height: 1.6;
  font-weight: 300;
}

.stats-strip {
  background: #1a1a1a;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat { text-align: center; padding: 0 70px; }
.stat h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: #b8973a;
  line-height: 1;
  margin-bottom: 8px;
}
.stat p {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
}
.stat-divider { width: 1px; height: 60px; background: #333; }

.location { display: flex; min-height: 500px; }
.location-text {
  flex: 1;
  padding: 80px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
}
.showcase-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8973a;
  font-weight: 600;
  margin-bottom: 16px;
}
.location-details { display: flex; flex-direction: column; gap: 14px; }
.location-details p {
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
}
.location-details i { color: #b8973a; width: 18px; margin-top: 3px; }
.location-details a { color: #b8973a; }
.location-details a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 16px; margin-top: 8px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.social-btn:hover { background: #b8973a; }
.location-map { flex: 1; overflow: hidden; }
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

.enquiry-section { background: #1a1a1a; padding: 100px 80px; }
.enquiry-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.enquiry-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.enquiry-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  padding: 16px 20px;
  background: #2a2a2a;
  border: 1px solid #333;
  color: #eee;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border 0.3s;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { border-color: #b8973a; }
.enquiry-form select option { background: #2a2a2a; }
.enquiry-form button {
  align-self: center;
  padding: 16px 60px;
  font-size: 13px;
  letter-spacing: 2px;
}
.btn-gold {
  display: inline-block;
  background: #b8973a;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}
.btn-gold:hover { background: #9a7d2e; }

.footer { background: #111111; color: #aaa; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding: 80px;
  border-bottom: 1px solid #222;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #777;
  font-weight: 300;
}
.footer-links h4, .footer-contact h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: #777; transition: color 0.3s; }
.footer-links a:hover { color: #b8973a; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact p {
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i { color: #b8973a; }
.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-social a { color: #777; font-size: 20px; transition: color 0.3s; }
.footer-social a:hover { color: #b8973a; }
.footer-bottom {
  padding: 24px 80px;
  text-align: center;
  font-size: 13px;
  color: #444;
  letter-spacing: 1px;
}

.page-banner {
  width: 100%;
  height: 55vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('images/hotel.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.banner-overlay p {
  font-size: 14px;
  color: #f0dfa0;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links a.active { color: #b8973a !important; }

.rooms-slides-section {
  padding: 100px 80px;
  background: #fdfaf5;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.room-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 2px;
}
.slideshow {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
}
.slide { display: none; width: 100%; height: 100%; }
.slide.active { display: block; }
.slide img { width: 100%; height: 520px; object-fit: cover; }
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background 0.3s;
}
.slide-btn:hover { background: rgba(184,151,58,0.9); }
.slide-btn.prev { left: 0; }
.slide-btn.next { right: 0; }
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: #b8973a; width: 24px; border-radius: 4px; }

.gallery-section { padding: 80px; background: #fdfaf5; }
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid #ccc;
  color: #555;
  padding: 10px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: #b8973a;
  border-color: #b8973a;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-overlay i { color: #fff; font-size: 28px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-inner { max-width: 85vw; max-height: 85vh; text-align: center; }
.lightbox-inner img { max-width: 100%; max-height: 80vh; object-fit: contain; }
#lightbox-caption {
  color: #f0dfa0;
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}
.light-close {
  position: absolute;
  top: 24px; right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
}
.light-close:hover { color: #b8973a; }
.light-prev, .light-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10000;
}
.light-prev { left: 24px; }
.light-next { right: 24px; }
.light-prev:hover, .light-next:hover { background: #b8973a; border-color: #b8973a; }

.contact-section {
  display: flex;
  align-items: stretch;
  min-height: 620px;
  background: #fdfaf5;
}
.contact-info {
  flex: 1;
  padding: 80px 60px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.contact-info-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  font-weight: 300;
  max-width: 400px;
}
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #f0e8d0;
  border-radius: 3px;
  background: #fdfaf5;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  border-color: #b8973a;
  box-shadow: 0 4px 20px rgba(184,151,58,0.1);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: #b8973a;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i { color: #fff; font-size: 16px; }
.contact-card-body h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8973a;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-card-body p,
.contact-card-body a {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  display: block;
  transition: color 0.3s;
}
.contact-card-body a:hover { color: #b8973a; }
.contact-social { display: flex; gap: 14px; margin-top: 4px; }
.contact-form-side {
  flex: 1;
  background: #1a1a1a;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.contact-form-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
}
.contact-form-side .showcase-label { color: #f0dfa0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px 18px;
  background: #2a2a2a;
  border: 1px solid #333;
  color: #eee;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border 0.3s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #b8973a; }
.contact-form select option { background: #2a2a2a; }
.contact-form button {
  align-self: flex-start;
  padding: 15px 44px;
  font-size: 12px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-section { width: 100%; background: #f5f0e8; }
.map-section iframe { width: 100%; height: 460px; display: block; border: 0; }
.contact-strip {
  background: #b8973a;
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-strip-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-strip-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 1px;
}
.contact-strip-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-strip-white {
  background: #ffffff;
  color: #b8973a;
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-strip-white:hover { background: #1a1a1a; color: #fff; }
.btn-strip-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-strip-outline:hover { background: rgba(255,255,255,0.15); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .logo-img { height: 44px; }
  .logo-text { font-size: 17px; }
  .nav-links { display: none; }
  .navbar-right { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 36px; letter-spacing: 2px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 3px; }
  .hero-tagline { font-size: 12px; letter-spacing: 2px; }
  .btn-hero { padding: 12px 28px; font-size: 11px; }

  .float-enquiry span, .float-call span { display: none; }
  .float-enquiry, .float-call { padding: 14px 16px; border-radius: 50%; }

  .intro { padding: 60px 24px; }
  .intro h2 { font-size: 32px; }
  .intro-text { font-size: 15px; }

  .video-section { padding: 60px 24px; }
  .video-label h2 { font-size: 30px; }
  .video-label p { font-size: 14px; }

  .hotel-overview { flex-direction: column; min-height: unset; }
  .overview-image { min-height: 280px; }
  .overview-content { padding: 40px 24px; }
  .overview-content h2 { font-size: 30px; }
  .overview-desc { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .stats-strip { padding: 40px 20px; flex-wrap: wrap; }
  .stat { padding: 16px 20px; flex: 1 1 45%; }
  .stat h3 { font-size: 34px; }
  .stat-divider { display: none; }

  .location { flex-direction: column; }
  .location-text { padding: 50px 24px; }
  .location-text h2 { font-size: 30px; }
  .location-map iframe { min-height: 300px; }
  .social-row { flex-wrap: wrap; }

  .enquiry-section { padding: 60px 24px; }
  .enquiry-inner h2 { font-size: 30px; margin-bottom: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form button { align-self: stretch; justify-content: center; padding: 16px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px; }
  .footer-bottom { padding: 20px 24px; }

  .page-banner { height: 40vh; }
  .banner-overlay h1 { font-size: 36px; letter-spacing: 2px; }
  .banner-overlay p { font-size: 12px; }

  .rooms-slides-section { padding: 50px 20px; gap: 40px; }
  .slideshow { height: 260px; }
  .slide img { height: 260px; }

  .gallery-section { padding: 50px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-filters { flex-wrap: wrap; gap: 10px; }
  .filter-btn { padding: 8px 18px; font-size: 11px; }

  .contact-section { flex-direction: column; }
  .contact-info { padding: 50px 24px; gap: 20px; }
  .contact-info h2 { font-size: 30px; }
  .contact-info-desc { max-width: 100%; }
  .contact-form-side { padding: 50px 24px; gap: 20px; }
  .contact-form-side h2 { font-size: 30px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form button { align-self: stretch; justify-content: center; }
  .map-section iframe { height: 280px; }
  .contact-strip { flex-direction: column; text-align: center; padding: 40px 24px; }
  .contact-strip-actions { flex-direction: column; width: 100%; }
  .btn-strip-white, .btn-strip-outline { justify-content: center; }
  .contact-social { flex-wrap: wrap; }

  .hero-content { padding: 0 20px; }
  .hero-content h1 { font-size: 42px; letter-spacing: 2px; line-height: 1.2; text-align: center; padding: 0 10px; }
  .hero-tagline { font-size: 13px; letter-spacing: 2px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat { flex: 1 1 100%; }
}

/* ===== LOADER NAME FIX ===== */
.loader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderNameIn 0.9s ease 0.9s forwards;
  text-align: center;
  padding: 0 20px;
}

/* ===== REVIEWS & RATINGS SECTION ===== */
.reviews-section {
  padding: 90px 60px;
  background: #faf8f4;
}
.rating-summary-box {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 12px;
  padding: 40px 50px;
  max-width: 780px;
  margin: 0 auto 60px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.rating-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  color: #b8973a;
  line-height: 1;
}
.rating-stars-big {
  font-size: 22px;
  color: #b8973a;
  margin: 6px 0 8px;
  letter-spacing: 2px;
}
.rating-count {
  font-size: 12px;
  color: #888;
  font-family: 'Raleway', sans-serif;
  text-align: center;
}
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Raleway', sans-serif; font-size: 12px; color: #555;
}
.rating-bar-row > span:first-child { width: 30px; text-align: right; color: #b8973a; font-weight: 600; }
.rating-bar-row > span:last-child { width: 20px; color: #888; }
.bar-track {
  flex: 1; height: 8px; background: #ede8da;
  border-radius: 4px; overflow: hidden;
}
.bar-fill {
  height: 100%; background: linear-gradient(90deg, #b8973a, #d4af57);
  border-radius: 4px; transition: width 0.6s ease;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.review-card {
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.review-card-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #b8973a, #8a6e2a);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; flex-shrink: 0;
}
.review-name { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600; color: #1a1a1a; }
.review-city { font-size: 11px; color: #999; font-family: 'Raleway', sans-serif; margin-top: 2px; }
.review-date { margin-left: auto; font-size: 11px; color: #bbb; font-family: 'Raleway', sans-serif; white-space: nowrap; }
.review-stars { color: #b8973a; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #555; line-height: 1.75; font-family: 'Raleway', sans-serif; }

.write-review-box {
  background: #fff;
  border: 1px solid #e8dfc8;
  border-radius: 14px;
  padding: 50px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: center;
}
.write-review-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 400; color: #1a1a1a;
  margin-bottom: 24px;
}
.star-picker { display: flex; justify-content: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.star-pick {
  font-size: 36px; color: #ddd;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}
.star-pick.hovered, .star-pick.selected { color: #b8973a; transform: scale(1.15); }
.star-label { font-size: 12px; color: #888; font-family: 'Raleway', sans-serif; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.write-review-box input, .write-review-box textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Raleway', sans-serif; font-size: 14px; color: #333;
  background: #faf8f4; outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.write-review-box input:focus, .write-review-box textarea:focus { border-color: #b8973a; }
.write-review-box textarea { resize: vertical; margin-bottom: 20px; }

@media (max-width: 768px) {
  .reviews-section { padding: 60px 20px; }
  .rating-summary-box { flex-direction: column; gap: 30px; padding: 30px 24px; }
  .write-review-box { padding: 36px 24px; }
  .review-form-row { grid-template-columns: 1fr; }
}