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

:root {
  --terracotta: #C1440E;
  --dark-terra: #9A3509;
  --gold: #C9A227;
  --dark-gold: #A07B18;
  --maroon: #7B1E1E;
  --cream: #FFF5E4;
  --cream-dark: #F5E6D0;
  --cream-mid: #FFF8F0;
  --brown: #3D2B1F;
  --text-dark: #2C1A10;
  --text-mid: #6B4C35;
  --text-light: #9A7A60;
  --white: #FFFFFF;
  --shadow-warm: rgba(193, 68, 14, 0.15);
  --shadow-gold: rgba(201, 162, 39, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

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

.navbar.scrolled {
  background: rgba(255, 245, 228, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 30px var(--shadow-warm);
  border-bottom: 2px solid var(--gold);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  transition: color 0.4s;
}

.navbar.scrolled .logo-text { color: var(--maroon); text-shadow: none; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a { color: var(--text-dark); text-shadow: none; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a:hover { color: var(--terracotta); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span { background: var(--maroon); }

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

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

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 26, 16, 0.75) 0%,
    rgba(123, 30, 30, 0.55) 50%,
    rgba(44, 26, 16, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-tagline {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--cream);
  letter-spacing: 2px;
  margin-top: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-divider {
  margin: 20px 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.divider-ornament {
  font-size: 1.5rem;
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 245, 228, 0.85);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
  margin: auto;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===================== ORNAMENTAL DIVIDER ===================== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 48px 0 0;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ornament-symbol {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ===================== COMMON SECTION STYLES ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.title-divider {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 8px;
}

/* ===================== ABOUT ===================== */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--terracotta), var(--gold), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-label { margin-bottom: 8px; }

.about-text .section-title {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-features {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
}

.feature-icon { font-size: 1.1rem; }

.about-images {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 8px 8px 40px var(--shadow-warm);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -4px -4px 0 var(--gold), 8px 8px 40px var(--shadow-warm);
}

.about-img-main img,
.about-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img,
.about-img-secondary:hover img { transform: scale(1.05); }

.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(201, 162, 39, 0.4);
  border-radius: 4px;
  pointer-events: none;
}

/* ===================== MENU SECTION ===================== */
.menu-section {
  padding: 100px 0;
  background: var(--cream-mid);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(193, 68, 14, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.07) 0%, transparent 50%);
}

/* Rajasthani geometric border pattern */
.menu-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    var(--terracotta) 0px,
    var(--terracotta) 20px,
    var(--gold) 20px,
    var(--gold) 40px,
    var(--maroon) 40px,
    var(--maroon) 60px
  );
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 22px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--terracotta);
  background: rgba(201, 162, 39, 0.05);
}

.tab-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow-warm);
}

.menu-category { display: none; }

.menu-category.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  box-shadow: 0 4px 30px var(--shadow-warm);
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
}

.menu-item:hover {
  background: rgba(201, 162, 39, 0.04);
  padding-left: 36px;
  transition: background 0.2s, padding-left 0.2s;
}

.item-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--cream-dark);
  margin: 0 16px;
  min-width: 20px;
  position: relative;
  top: 2px;
}

.item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
}

/* ===================== GALLERY ===================== */
.gallery-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--maroon), var(--gold), var(--maroon), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5),
.gallery-item:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193, 68, 14, 0.7), rgba(123, 30, 30, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px;
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 26, 16, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 2px;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.lightbox-close { top: 24px; right: 24px; font-size: 1rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 72px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--terracotta), var(--gold), var(--maroon));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: none;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 245, 228, 0.65);
  line-height: 1.8;
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cream);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--terracotta);
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  padding: 6px 0;
  color: rgba(255, 245, 228, 0.65);
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col ul li:hover { color: var(--gold); }

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255, 245, 228, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 245, 228, 0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 245, 228, 0.4);
  font-size: 0.82rem;
}

.footer-bottom span { color: var(--gold); }

/* ===================== HOURS BADGE ===================== */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 68, 14, 0.15);
  border: 1px solid rgba(193, 68, 14, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--light-saffron, #F5A06B);
  margin-top: 12px;
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===================== WHATSAPP BUTTON ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 54px; height: 54px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 28px; height: 28px;
  fill: white;
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 34px;
  width: 44px; height: 44px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--dark-terra); transform: translateY(-2px); }

/* ===================== KEYFRAMES ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 360px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 40px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text-dark) !important;
    text-shadow: none !important;
    display: block;
    padding: 16px 32px;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
  }

  .nav-overlay.open { display: block; }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-images { height: 260px; }
  .about-img-main { width: 100%; height: 100%; }
}

/* ===================== NAV CTA ===================== */
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 3px;
  text-shadow: none !important;
}
.nav-cta:hover { background: var(--dark-terra) !important; }
.nav-cta::after { display: none !important; }

/* ===================== PAGE BANNER ===================== */
.page-banner {
  position: relative;
  height: 52vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,26,16,0.78) 0%, rgba(123,30,30,0.55) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.page-banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin: 8px 0;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
}
.page-banner-content p {
  font-size: 1rem;
  color: rgba(255,245,228,0.85);
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===================== HIGHLIGHTS STRIP ===================== */
.highlights-strip {
  background: var(--text-dark);
  padding: 0;
}
.highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.highlight-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(201,162,39,0.08); }
.highlight-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.highlight-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
  display: block;
}
.highlight-sub {
  font-size: 0.7rem;
  color: var(--gold);
  display: block;
  margin-top: 3px;
}

/* ===================== RESORT INTRO ===================== */
.resort-intro {
  padding: 100px 0;
  background: var(--cream);
}
.resort-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.resort-intro-text .section-title { margin: 12px 0 20px; }
.resort-intro-text p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.booking-options {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.opt-card {
  flex: 1;
  min-width: 160px;
  background: var(--cream-dark);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 6px;
  padding: 20px 18px;
  text-align: center;
}
.opt-card .opt-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.opt-card strong { display: block; font-size: 0.88rem; color: var(--maroon); margin-bottom: 4px; }
.opt-card span { font-size: 0.78rem; color: var(--text-light); }
.resort-intro-imgs {
  position: relative;
  height: 480px;
}
.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 78%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 8px 8px 40px var(--shadow-warm);
}
.intro-img-sm {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -4px -4px 0 var(--gold), 8px 8px 30px var(--shadow-warm);
}
.intro-img-main img, .intro-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.intro-img-main:hover img, .intro-img-sm:hover img { transform: scale(1.05); }

/* ===================== ROOMS SECTION ===================== */
.rooms-section {
  padding: 100px 0;
  background: var(--cream-mid);
  position: relative;
}
.rooms-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--terracotta), var(--gold), transparent);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.room-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-warm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-warm);
}
.room-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.room-card-body { padding: 24px; }
.room-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--maroon);
  margin-bottom: 10px;
}
.room-card-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.room-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.room-tag {
  font-size: 0.72rem;
  background: var(--cream-dark);
  color: var(--brown);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,162,39,0.25);
}
.room-cta {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
}
.room-cta:hover { background: var(--terracotta); color: var(--white); }

/* Full Resort banner */
.full-resort-banner {
  background: linear-gradient(135deg, var(--maroon), var(--dark-terra));
  border-radius: 8px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 40px var(--shadow-warm);
}
.full-resort-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.full-resort-banner p { color: rgba(255,245,228,0.8); font-size: 0.9rem; }
.full-resort-banner .includes {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.full-resort-banner .inc-tag {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(201,162,39,0.3);
}

/* ===================== CUSTOM COOK SECTION ===================== */
.custom-cook {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cook-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 420px;
  box-shadow: 8px 8px 40px var(--shadow-warm);
}
.cook-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cook-img-wrap::before {
  content: '👨‍🍳';
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 3rem;
  z-index: 1;
  background: rgba(255,245,228,0.9);
  padding: 12px 16px;
  border-radius: 50%;
  line-height: 1;
}
.cook-text .section-title { margin: 12px 0 20px; }
.cook-text p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.cook-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cook-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--maroon);
  margin-bottom: 2px;
}
.step-text span { font-size: 0.84rem; color: var(--text-mid); }
.cook-note {
  margin-top: 28px;
  background: rgba(193,68,14,0.06);
  border-left: 4px solid var(--terracotta);
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ===================== GALLERY STRIP (INDEX) ===================== */
.gallery-strip-section {
  padding: 100px 0;
  background: var(--cream-mid);
}
.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
  margin-bottom: 32px;
}
.gs-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gs-item:first-child { grid-row: span 2; }
.gs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gs-item:hover img { transform: scale(1.08); }
.gs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,26,16,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gs-item:hover .gs-overlay { opacity: 1; }
.gallery-strip-cta { text-align: center; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 100px 0;
  background-image: url('image/night view8 (1).jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,26,16,0.85), rgba(123,30,30,0.75));
}
.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 12px 0 16px;
}
.cta-content p { color: rgba(255,245,228,0.8); font-size: 1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--text-dark); }

/* ===================== ABOUT STORY (about.html) ===================== */
.about-story {
  padding: 100px 0;
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text .section-title { margin: 12px 0 20px; font-size: clamp(1.8rem,3vw,2.5rem); }
.story-text em { font-style: italic; color: var(--terracotta); }
.story-text p { color: var(--text-mid); line-height: 1.9; font-size: 0.95rem; margin-bottom: 14px; }
.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
}
.stat-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.story-images {
  position: relative;
  height: 500px;
}
.story-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 76%; height: 78%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 8px 8px 40px var(--shadow-warm);
}
.story-img-sm {
  position: absolute;
  width: 54%; height: 46%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 6px 6px 30px var(--shadow-warm);
}
.story-img-sm.top-right { top: 10%; right: 0; box-shadow: -3px -3px 0 var(--gold), 6px 6px 30px var(--shadow-warm); }
.story-img-sm.bottom-left { bottom: 0; left: 8%; }
.story-img-main img, .story-img-sm img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== AMENITIES SECTION ===================== */
.amenities-section {
  padding: 100px 0;
  background: var(--cream-mid);
  position: relative;
}
.amenities-bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0,var(--terracotta) 20px,var(--gold) 20px,var(--gold) 40px,var(--maroon) 40px,var(--maroon) 60px);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-warm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow-warm); }
.amenity-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.amenity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.amenity-card:hover .amenity-img img { transform: scale(1.06); }
.amenity-overlay {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(255,245,228,0.92);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.amenity-body { padding: 24px; }
.amenity-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: 10px;
}
.amenity-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* ===================== EXPLORE SECTION ===================== */
.explore-section {
  padding: 100px 0;
  background: var(--cream);
}
.section-sub {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.explore-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-warm);
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.explore-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); }
.explore-icon-wrap {
  width: 64px; height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(201,162,39,0.3);
  transition: background 0.3s;
}
.explore-card:hover .explore-icon-wrap { background: rgba(201,162,39,0.15); }
.explore-icon { font-size: 1.8rem; }
.explore-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 10px;
}
.explore-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.explore-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===================== BOOKING FORM ===================== */
.booking-section { padding: 100px 0; background: var(--cream); }
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.booking-info .section-title { margin: 12px 0 20px; font-size: clamp(1.6rem,3vw,2.2rem); }
.booking-info p { color: var(--text-mid); line-height: 1.9; font-size: 0.93rem; margin-bottom: 28px; }
.booking-highlights { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.b-highlight { display: flex; gap: 16px; align-items: flex-start; }
.b-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.b-highlight strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.b-highlight p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.booking-contact-strip {
  background: var(--cream-dark);
  padding: 18px 20px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
}
.booking-contact-strip p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 8px; }
.booking-phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}
.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 40px var(--shadow-warm);
  border-top: 4px solid var(--terracotta);
}
.form-header { margin-bottom: 32px; }
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: 6px;
}
.form-header p { font-size: 0.85rem; color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.required { color: var(--terracotta); }
.optional { color: var(--text-light); font-weight: 400; text-transform: none; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group input.error,
.form-group select.error { border-color: #e53935; }
.form-group textarea { resize: vertical; min-height: 80px; }
.field-err { display: none; font-size: 0.75rem; color: #e53935; margin-top: 4px; }
.field-err.show { display: block; }
.guest-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
}
.counter-btn {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--brown);
  transition: background 0.2s;
}
.counter-btn:hover { background: var(--gold); color: var(--white); }
.guest-counter input {
  flex: 1;
  text-align: center;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 600;
  font-size: 1rem;
}
.room-type-options { display: flex; gap: 12px; flex-wrap: wrap; }
.room-type-label {
  flex: 1;
  min-width: 130px;
  position: relative;
  cursor: pointer;
}
.room-type-label input[type="radio"] { display: none; }
.room-type-box {
  display: block;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
  background: var(--cream);
}
.room-type-box .rt-icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.room-type-box strong { display: block; font-size: 0.82rem; color: var(--brown); margin-bottom: 2px; }
.room-type-box small { font-size: 0.72rem; color: var(--text-light); }
.room-type-label input:checked + .room-type-box {
  border-color: var(--terracotta);
  background: rgba(193,68,14,0.05);
}
.room-type-label input:checked + .room-type-box strong { color: var(--terracotta); }
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-top: 8px;
  opacity: 1;
  animation: none;
}
.form-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ===================== GALLERY PAGE ===================== */
.gallery-page-section { padding: 80px 0 100px; background: var(--cream); }
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--terracotta); }
.filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow-warm);
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gitem {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gitem:hover img { transform: scale(1.08); }
.gitem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,68,14,0.7), rgba(123,30,30,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gitem:hover .gitem-overlay { opacity: 1; }
.gitem-overlay span {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 6px 14px;
  border-radius: 2px;
}
.gallery-count {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ===================== MENU CUSTOM COOK BANNER ===================== */
.cook-banner {
  background: linear-gradient(135deg, var(--maroon), var(--dark-terra));
  border-radius: 8px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
  box-shadow: 0 6px 30px var(--shadow-warm);
}
.cook-banner-icon { font-size: 3rem; flex-shrink: 0; }
.cook-banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.cook-banner-text p { color: rgba(255,245,228,0.85); font-size: 0.9rem; line-height: 1.7; }

/* ===================== VIDEO SECTION ===================== */
.video-section {
  padding: 100px 0;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(193,68,14,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(201,162,39,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.video-header {
  text-align: center;
  margin-bottom: 48px;
}
.video-header .section-label { color: var(--gold); }
.video-header .section-title { color: var(--white); }
.video-header .section-title em { color: var(--gold); }
.video-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,39,0.2);
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 580px;
  object-fit: cover;
}
.video-sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.video-sound-btn:hover {
  background: rgba(201,162,39,0.3);
  border-color: var(--gold);
}
.video-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.video-strip-item {
  text-align: center;
  color: rgba(255,245,228,0.7);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.video-strip-item strong {
  display: block;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* ===================== ROOM PRICING ===================== */
.room-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--cream-dark);
}
.room-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.room-price-num sup {
  font-size: 1rem;
  vertical-align: super;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.room-price-per {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}
.room-value-tag {
  display: inline-block;
  background: rgba(193,68,14,0.08);
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===================== BUDGET LUXURY STRIP ===================== */
.budget-strip {
  background: linear-gradient(135deg, var(--maroon), #5C1111);
  padding: 28px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.budget-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
  pointer-events: none;
}
.budget-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.budget-item {
  text-align: center;
  color: var(--white);
}
.budget-item .b-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.budget-item .b-label {
  font-size: 0.75rem;
  color: rgba(255,245,228,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.budget-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ===================== EXTRA RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .highlights-inner { grid-template-columns: repeat(3, 1fr); }
  .highlight-item:nth-child(3) { border-right: none; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .resort-intro-grid,
  .cook-grid,
  .story-grid,
  .booking-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .resort-intro-imgs,
  .story-images { height: 360px; order: -1; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .full-resort-banner { flex-direction: column; text-align: center; }
  .gallery-strip-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-strip-grid .gs-item:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cook-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-options { flex-direction: column; }
}

@media (max-width: 480px) {
  .highlights-inner { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .explore-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 24px 18px; }
  .room-type-options { flex-direction: column; }
}
