/* ================================================================
   HOTEL MIRAJ — Design System & Stylesheet
   Palette: Warm white + Champagne Gold + Dark Charcoal + Sage Green
   ================================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #A07840;
  --champagne:   #F5ECD8;
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  --charcoal:    #1C1C1E;
  --charcoal-80: #2D2D30;
  --charcoal-60: #4A4A4D;
  --charcoal-40: #7A7A7D;
  --charcoal-20: #BABABD;
  --sage:        #6B8C6E;
  --sage-light:  #A8C5AA;
  --border:      rgba(201,169,110,0.25);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:   1200px;
  --section-pad: 96px 24px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--charcoal-60); font-size: 1rem; }

/* ── Utility: Section ── */
.section { padding: var(--section-pad); }
.section--dark { background: var(--charcoal); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--gold { background: var(--champagne); }
.container { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub  { max-width: 560px; margin-bottom: 48px; }
.text-center  { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Gold divider */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 40px;
}
.text-center .divider-gold { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.55);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(28,28,30,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.navbar-brand .brand-stars {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.4em;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--gold);
}
.navbar-nav a:hover::after, .navbar-nav a.active::after {
  transform: scaleX(1);
}
.navbar-cta { margin-left: 12px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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 drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; }

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/front_1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,30,0.72) 0%,
    rgba(28,28,30,0.45) 50%,
    rgba(28,28,30,0.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.4);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,169,110,0.08); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.about-feature .feat-icon {
  width: 40px; height: 40px;
  background: var(--champagne);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.about-feature .feat-text h4 { font-size: 0.9rem; margin-bottom: 3px; }
.about-feature .feat-text p  { font-size: 0.8rem; }

/* ── Rooms Section ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.room-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-md);
}
.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.room-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { margin-bottom: 12px; }
.room-body p  { font-size: 0.9rem; margin-bottom: 20px; flex: 1; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.amenity-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--champagne);
  color: var(--charcoal-60);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
}
.amenity-tag i { color: var(--gold); font-size: 0.85rem; }

/* ── Facilities Grid ── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.facility-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.facility-card:hover {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.facility-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(201,169,110,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
}
.facility-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.facility-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ── Restaurant Section ── */
.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.restaurant-image-stack {
  position: relative;
}
.restaurant-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.restaurant-image-secondary {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 220px; height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.restaurant-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.rest-feat {
  background: var(--champagne);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.rest-feat .rest-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-weight: 700;
  line-height: 1;
}
.rest-feat .rest-label {
  font-size: 0.8rem;
  color: var(--charcoal-60);
  margin-top: 4px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,30,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(28,28,30,0.35); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ── Location Section ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-list li:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--champagne);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-list li .info-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-40);
  margin-bottom: 4px;
}
.contact-list li .info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.contact-list li .info-value a { color: var(--charcoal); transition: color 0.2s; }
.contact-list li .info-value a:hover { color: var(--gold); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(1.05);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal-80);
  padding: 72px 40px 32px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .brand-stars { color: var(--gold); letter-spacing: 0.4em; font-size: 0.65rem; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--gold);
  color: var(--white);
}
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.85) 0%, rgba(28,28,30,0.3) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 { color: var(--white); }

/* ── Rooms Page ── */
.room-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  transition: var(--transition);
}
.room-detail-card:hover { box-shadow: var(--shadow-lg); }
.room-detail-card:nth-child(even) { direction: rtl; }
.room-detail-card:nth-child(even) > * { direction: ltr; }
.room-detail-img {
  height: 400px;
  overflow: hidden;
}
.room-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-detail-card:hover .room-detail-img img { transform: scale(1.04); }
.room-detail-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-detail-body .room-count {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.room-detail-body h2 { margin-bottom: 16px; }
.room-detail-body p  { margin-bottom: 28px; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 36px; }
.amenity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal-60);
}
.amenity-list li i { color: var(--gold); font-size: 0.9rem; }

/* ── Reservation / Contact Form ── */
.form-section { max-width: 780px; margin: 0 auto; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-note { font-size: 0.8rem; color: var(--charcoal-40); text-align: center; margin-top: 16px; }

/* ── Success / Error states ── */
.form-success {
  display: none;
  background: #EFF8EF;
  border: 1px solid #8BC98B;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #2A7A2A;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 20px;
}
.form-error {
  font-size: 0.78rem;
  color: #C94040;
  margin-top: 4px;
  display: none;
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #C94040;
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ── Galerie Page ── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-page-grid .gallery-item {
  height: 280px;
}
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-60);
  background: var(--white);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── Restaurant Page ── */
.cuisine-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cuisine-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--champagne);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.cuisine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cuisine-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cuisine-card h4 { margin-bottom: 10px; }
.cuisine-card p  { font-size: 0.88rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 24px; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap .about-badge { bottom: 16px; right: 16px; }
  .about-image-wrap img { height: 380px; }
  .restaurant-grid { grid-template-columns: 1fr; gap: 48px; }
  .restaurant-image-secondary { width: 180px; height: 140px; bottom: -20px; right: -16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }
  .navbar { padding: 16px 20px; }
  .navbar.scrolled { padding: 12px 20px; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-detail-card { grid-template-columns: 1fr; }
  .room-detail-card:nth-child(even) { direction: ltr; }
  .room-detail-img { height: 260px; }
  .room-detail-body { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .location-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-grid-split { grid-template-columns: 1fr !important; gap: 40px !important; text-align: center; }
  .hero-collage-wrap { margin-top: 20px; }
  .hero-actions { justify-content: center; }
  .hero { height: auto !important; min-height: 100vh; padding: 120px 0 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 56px 20px 24px; }
  .about-features { grid-template-columns: 1fr; }
  .restaurant-features { grid-template-columns: 1fr; }
  .cuisine-highlights { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { height: 300px; padding: 40px 20px; }
}

@media (max-width: 480px) {
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid .gallery-item { height: 220px; }
  .hero-actions { flex-direction: column; width: fit-content; }
}

/* ── Heritage Archive Card and Album Collage Styles ── */
.heritage-collage {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  padding: 20px 0;
}
.heritage-card {
  background: var(--white);
  padding: 10px 10px 20px 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  width: 180px;
  text-align: center;
  position: relative;
}
.heritage-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.05);
}
.heritage-caption {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.heritage-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(1deg) !important;
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  z-index: 10 !important;
}

/* Custom rotations for beautiful organic overlaps */
.heritage-collage .heritage-card:nth-child(1) { transform: rotate(-3deg); z-index: 1; }
.heritage-collage .heritage-card:nth-child(2) { transform: translateY(-8px) rotate(1deg); z-index: 3; }
.heritage-collage .heritage-card:nth-child(3) { transform: rotate(3deg); z-index: 2; }

/* Grid version for section lists */
.heritage-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  justify-content: center;
}

.heritage-grid-layout .heritage-card {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

/* Lightbox original size limit */
#lightboxImg {
  max-width: min(802px, 90vw);
  max-height: min(600px, 80vh);
  border: 8px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  background: var(--cream);
}
