@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #c49a45;
  --primary-light: #e8c97a;
  --primary-dark: #9a7a2e;
  --bg-dark: #1a1410;
  --bg-medium: #2a221c;
  --bg-light: #f9f6f2;
  --bg-card: #ffffff;
  --text-dark: #1a1410;
  --text-body: #4a4238;
  --text-muted: #8a7e72;
  --gold-gradient: linear-gradient(135deg, #c29c41, var(--primary), var(--primary-light));
  --dark-gradient: linear-gradient(160deg, #1a1410 0%, #2a221c 40%, #3d322a 100%);
  --shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 20, 16, 0.1);
  --shadow-lg: 0 16px 48px rgba(26, 20, 16, 0.15);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  line-height: 1.7;
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

::selection {
  background: var(--primary);
  color: #fff;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ANIMATED GRADIENT TEXT */
.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.85rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 246, 242, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(196, 154, 69, 0.12);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(249, 246, 242, 0.96);
  box-shadow: var(--shadow-sm);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -2px;
}

nav ul {
  display: flex;
  gap: 4px;
}

nav a {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-body);
  border-radius: 8px;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--text-dark);
  background: rgba(196, 154, 69, 0.08);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

/* HAMBURGER MENU */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 8px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  nav ul.open {
    right: 0;
  }

  nav a {
    padding: 12px 18px;
    font-size: 0.85rem;
    width: 100%;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  background: var(--dark-gradient);
  overflow: hidden;
}

@supports (height: 100dvh) {
  .hero { height: 100dvh; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 154, 69, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 154, 69, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(196, 154, 69, 0.06) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cdefs%3E%3Cpattern id='g' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='100' height='100'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s infinite ease-in-out;
}

.hero-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 25%; left: 80%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 75%; left: 75%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { top: 85%; left: 40%; animation-delay: 0.5s; }
.hero-particles span:nth-child(7) { top: 10%; left: 60%; animation-delay: 2.5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(8) { top: 50%; left: 90%; animation-delay: 3.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  border: 1px solid rgba(196, 154, 69, 0.3);
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-content h1 .gradient-text {
  font-weight: 700;
}

.hero-content .sub-heading {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-logo-wrap {
  display: inline-block;
  margin: 0 auto 16px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
  animation: fadeInUp 0.8s ease forwards;
}

.hero-logo {
  width: 100px;
  height: auto;
  display: block;
}

.hero-content .btn {
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

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

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.4);
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--primary);
}

.hero-scroll svg {
  display: block;
  animation: heroBounce 2.4s infinite 1.5s;
}

@keyframes heroBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* PAGE HEADER */
.page-header {
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--dark-gradient);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(196, 154, 69, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(196, 154, 69, 0.05) 0%, transparent 50%);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cdefs%3E%3Cpattern id='g' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='100' height='100'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.page-header h1 .gradient-text {
  font-weight: 700;
}

.page-header .breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.page-header .breadcrumb a:hover {
  color: var(--primary-light);
}

.page-header p {
  font-size: 1rem;
  opacity: 0.6;
  letter-spacing: 1px;
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 50px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #fff;
  background-size: 200% auto;
}

.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 4px 24px rgba(196, 154, 69, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(196, 154, 69, 0.25);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.7rem;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-card);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title h2 .gradient-text {
  font-weight: 700;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 4px;
  margin: 16px auto;
}

.section-title .subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ABOUT / INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image {
  height: 480px;
  background: linear-gradient(135deg, #3d322a, #5a4a3a);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(196, 154, 69, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(196, 154, 69, 0.05) 0%, transparent 50%);
}

.intro-image .play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196, 154, 69, 0.2);
  border: 2px solid rgba(196, 154, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.intro-image .play-btn:hover {
  background: rgba(196, 154, 69, 0.3);
  transform: scale(1.1);
}

.intro-image .play-btn svg {
  color: var(--primary-light);
}

/* INTRO VIDEO */
.intro-video {
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #1a1410;
}

.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.4) contrast(1.05);
}

@media (max-width: 768px) {
  .intro-video {
    height: 320px;
  }
}

.intro-text h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.intro-text p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.intro-text .divider {
  margin: 16px 0;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(196, 154, 69, 0.15);
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 154, 69, 0.12), rgba(196, 154, 69, 0.06));
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.stat-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(196, 154, 69, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 154, 69, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196, 154, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold-gradient);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h3,
.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HERO WITH IMAGE */
.hero-bg {
  background: none !important;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.95), rgba(0,0,0,0.15)), var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg .hero-content h1,
.hero-bg .hero-content .sub-heading,
.hero-bg .hero-content p {
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* VIDEO SECTION */
.video-section {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  display: block;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.video-poster {
  position: relative;
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196, 154, 69, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 40px rgba(196, 154, 69, 0.4);
}

/* LOGO IMAGE */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-top: 10px;
}

/* ROOMS GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

/* ROOM IMAGES */
.room-image {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #3d322a;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

.room-image .tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: #fff;
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 2;
}

/* ROOM IMAGE GALLERY STRIP */
.room-gallery {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.room-gallery::-webkit-scrollbar {
  height: 3px;
}

.room-gallery::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.room-gallery img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.room-gallery img:hover,
.room-gallery img.active {
  border-color: var(--primary);
  transform: scale(1.05);
}

.room-info {
  padding: 24px;
}

.room-info .room-category {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.room-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.room-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.room-info .room-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.room-info .room-footer .btn {
  width: 100%;
  justify-content: center;
}

/* RESTAURANT */
.restaurant-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.restaurant-image {
  height: 560px;
  background: linear-gradient(135deg, #3d322a, #5a4a3a);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.restaurant-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  z-index: 2;
}

.restaurant-content h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.restaurant-content .divider {
  margin: 16px 0;
}

.restaurant-content p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.menu-list {
  margin-top: 32px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(196, 154, 69, 0.15);
  font-size: 0.95rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item .menu-name {
  font-weight: 500;
  color: var(--text-dark);
}

.menu-item .menu-desc {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.menu-item .menu-price {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  height: 260px;
  background: linear-gradient(135deg, #3d322a, #5a4a3a);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:first-child {
  grid-column: span 1;
  grid-row: span 1;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(196, 154, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-light);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 154, 69, 0.1);
  background: #fff;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* MAP */
.map-section {
  height: 420px;
  background: linear-gradient(135deg, #3d322a, #5a4a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.map-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 154, 69, 0.05) 0%, transparent 60%);
}

/* HOURS TABLE */
.hours-list {
  max-width: 480px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(196, 154, 69, 0.12);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .hours-day {
  font-weight: 500;
  color: var(--text-dark);
}

.hours-item .hours-time {
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-serif);
}

/* TESTIMONIAL */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  border-radius: var(--radius);
  min-height: 300px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.testimonial-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 4px;
}

.testimonial-slide .quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-slide .author {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-slide .author span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(196, 154, 69, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* FOOTER */
footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col h3,
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}


.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* AOS-like REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-grid,
  .restaurant-showcase,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .video-wrapper video {
    max-height: 400px;
  }

  .video-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
    scroll-padding-top: 64px;
  }

  header .container {
    height: 64px;
  }

  header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(249, 246, 242, 0.97);
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: 2.25rem;
  }

  .hero-content .sub-heading {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

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

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

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

  .section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .room-image {
    height: 240px;
  }

  .intro-image {
    height: 320px;
  }

  .restaurant-image {
    height: 360px;
  }

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

  .stat-card-number {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* DISCOUNT BANNER */
.discount-banner {
  display: none;
  background: linear-gradient(135deg, #9a2e2e, #c43a3a, #e85a5a);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.discount-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.discount-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  padding: 4px 20px;
  border-radius: 8px;
  letter-spacing: -1px;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.3);
  animation: pulse-badge 2s infinite ease-in-out;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.discount-banner-content p {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .discount-banner { padding: 12px 0; }
  .discount-badge { font-size: 1.3rem; padding: 2px 14px; }
  .discount-banner-content p { font-size: 0.75rem; text-align: center; }
}

/* DISCOUNT RIBBON ON ROOM CARDS */
.discount-ribbon {
  display: none;
  position: absolute;
  top: 16px;
  left: 0;
  background: linear-gradient(135deg, #c43a3a, #e85a5a);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 14px 4px 12px;
  border-radius: 0 6px 6px 0;
  z-index: 3;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(196, 58, 58, 0.4);
  letter-spacing: -0.5px;
}
.discount-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  border: 4px solid transparent;
  border-top-color: #7a1e1e;
  border-left-color: #7a1e1e;
}
.discount-ribbon .discount-rate {
  font-size: 1rem;
}

@media (max-width: 480px) {
  nav a {
    padding: 6px 8px;
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .contact-grid {
    gap: 32px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
