/* ==========================================================================
   HOTEL INDERGARH HERITAGE - LUXURY DESIGN SYSTEM & STYLESHEET
   A Royal Heritage Hotel by Landmart Hotels
   Aesthetics: Luxury + Editorial + Warm + Cinematic + Sophisticated
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --color-ivory: #F7F4EE;
  --color-ivory-light: #FBF9F5;
  --color-ivory-dark: #EFEBE1;
  --color-taupe: #D8CEC0;
  --color-taupe-light: #EBE5DB;
  --color-taupe-dark: #B8AC9C;
  
  --color-charcoal: #1D1D1B;
  --color-charcoal-light: #2A2A28;
  --color-dark-section: #24211E;
  --color-dark-deep: #161412;
  
  --color-gold: #B49A6C;
  --color-gold-light: #D4BD93;
  --color-gold-dark: #91774A;
  --color-gold-glow: rgba(180, 154, 108, 0.25);
  
  --color-terracotta: #C85A32;
  --color-white: #FFFFFF;
  --color-text-muted: #736F68;
  --color-text-light: #A8A39A;
  --color-border-light: rgba(180, 154, 108, 0.22);
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions & Shadows */
  --transition-fast: 0.25s cubic-bezier(0.2, 0, 0, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-luxury: 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  
  --shadow-sm: 0 2px 8px rgba(29, 29, 27, 0.05);
  --shadow-md: 0 10px 30px rgba(29, 29, 27, 0.08);
  --shadow-lg: 0 20px 45px rgba(29, 29, 27, 0.14);
  --shadow-gold: 0 10px 35px rgba(180, 154, 108, 0.25);
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  line-height: 1.68;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: inherit;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

p {
  color: inherit;
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Container & Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

.container-wide {
  max-width: 1540px;
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

.section-dark {
  background-color: var(--color-dark-section);
  color: var(--color-ivory);
}

.section-dark-deep {
  background-color: var(--color-dark-deep);
  color: var(--color-ivory);
}

.section-taupe {
  background-color: var(--color-taupe-light);
  color: var(--color-charcoal);
}

/* --- Editorial Section Headers --- */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.editorial-number {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}

.editorial-number::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.section-title span.italic {
  font-style: italic;
  font-family: var(--font-editorial);
  text-transform: none;
  font-weight: 400;
  color: var(--color-gold-light);
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: var(--color-taupe);
}

/* Royal Arch & Crest Motifs */
.royal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  color: var(--color-gold);
}

.royal-divider::before,
.royal-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.royal-divider svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --- Navigation Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 1.15rem 0;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(29, 29, 27, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(180, 154, 108, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header.header-light {
  background: rgba(247, 244, 238, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-charcoal);
}

.site-header .nav-container {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1.25rem, 3.5vw, 4.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-ivory);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.site-header.header-light .brand-title {
  color: var(--color-charcoal);
}

.brand-tagline {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2.2rem);
  flex-shrink: 0;
}

.nav-link {
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ivory-light);
  opacity: 0.88;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  display: inline-block;
}

.site-header.header-light .nav-link {
  color: var(--color-charcoal);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--color-gold-light);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-header-cta {
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-gold);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(180, 154, 108, 0.3);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: var(--color-ivory);
  color: var(--color-charcoal);
  border-color: var(--color-ivory);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 154, 108, 0.45);
}

.btn-header-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.btn-header-cta:hover svg {
  transform: translateX(3px);
}

/* Mobile Hamburger & Close Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-ivory);
  z-index: 2100;
  position: relative;
}

.site-header.header-light .mobile-toggle {
  color: var(--color-charcoal);
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.mobile-toggle.active {
  color: var(--color-gold-light) !important;
}

.mobile-toggle.active span {
  background: var(--color-gold) !important;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Dedicated Mobile Drawer Close Button */
.mobile-drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(180, 154, 108, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2100;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
  background: var(--color-gold);
  color: var(--color-charcoal);
}

/* Mobile Fullscreen Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-dark-deep);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5.5rem 1.5rem 3rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vh, 1.6rem);
  margin-bottom: 2rem;
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4.5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ivory);
  transition: color var(--transition-fast);
  text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-gold);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
  margin-top: 1rem;
  align-items: center;
}

.mobile-drawer-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.mobile-drawer-contact {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-drawer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  background: rgba(180, 154, 108, 0.1);
  transition: all var(--transition-fast);
}

.mobile-drawer-contact-link:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
}

.mobile-drawer-contact-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border: 1px solid var(--color-charcoal);
}

.btn-primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border: 1px solid var(--color-gold);
  font-weight: 700;
}

.btn-gold:hover {
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-ivory);
  border: 1px solid rgba(247, 244, 238, 0.4);
}

.btn-outline-white:hover {
  background: var(--color-ivory);
  color: var(--color-charcoal);
  border-color: var(--color-ivory);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-gold);
  transition: all var(--transition-fast);
}

.btn-arrow-link:hover {
  color: var(--color-gold-dark);
  gap: 0.85rem;
}

.section-dark .btn-arrow-link {
  color: var(--color-ivory);
}

.section-dark .btn-arrow-link:hover {
  color: var(--color-gold-light);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.03) translate(0, 0); }
  50% { transform: scale(1.09) translate(-1%, -1%); }
  100% { transform: scale(1.05) translate(1%, 0.5%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(22, 20, 18, 0.72) 0%,
    rgba(22, 20, 18, 0.55) 45%,
    rgba(22, 20, 18, 0.88) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(180, 154, 108, 0.15);
  border: 1px solid var(--color-border-light);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.75rem;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  word-break: break-word;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.hero-title span.gold-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--color-gold-light);
  display: block;
}

.hero-description {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  color: var(--color-taupe-light);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-taupe);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--color-gold);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--color-gold-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* --- Interactive Booking Bar --- */
.booking-bar-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -3.5rem;
  padding-bottom: 2rem;
}

.booking-bar {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0.75rem;
  border-right: 1px solid var(--color-taupe-light);
}

.booking-field:last-of-type {
  border-right: none;
}

.booking-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-label svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.booking-input,
.booking-select {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  width: 100%;
}

.booking-select {
  appearance: none;
  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 fill='%23B49A6C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 1.2rem;
}

.booking-submit-btn {
  height: 100%;
  min-height: 52px;
  white-space: nowrap;
}

/* --- Editorial Intro Section --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.editorial-image-frame {
  position: relative;
}

.editorial-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.editorial-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 150px;
  height: 150px;
  background: var(--color-dark-section);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.editorial-img-badge .badge-year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.editorial-img-badge .badge-sub {
  font-family: var(--font-display);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.3rem;
}

.editorial-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.editorial-lead span.highlight {
  color: var(--color-gold-dark);
  font-style: italic;
}

.feature-pill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

.feature-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(180, 154, 108, 0.15);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-pill-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- Rooms Showcase --- */
.occupancy-toggle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--color-ivory-dark);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-btn.active {
  background: var(--color-charcoal);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.room-card-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.room-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(29, 29, 27, 0.85);
  backdrop-filter: blur(6px);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(180, 154, 108, 0.4);
}

.room-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card-title {
  font-size: 1.65rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.room-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-taupe-light);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.room-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.room-spec-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold-dark);
}

.room-highlights {
  font-size: 0.88rem;
  color: var(--color-charcoal-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.room-price-wrapper {
  margin-bottom: 1.5rem;
}

.room-price-plan {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.room-price-amount {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1;
}

.room-price-amount small {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.room-price-gst {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.room-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* --- Facilities & Amenities Grid --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.facility-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: all var(--transition-smooth);
}

.facility-card:hover {
  background: rgba(180, 154, 108, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.facility-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(180, 154, 108, 0.15);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  transition: transform var(--transition-fast);
}

.facility-card:hover .facility-icon-wrap {
  transform: scale(1.1);
  background: var(--color-gold);
  color: var(--color-charcoal);
}

.facility-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.facility-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--color-ivory);
}

.facility-desc {
  font-size: 0.8rem;
  color: var(--color-taupe);
  line-height: 1.5;
}

/* --- Experiences & Rooftop Spotlight --- */
.experience-feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 5rem;
}

.experience-feature-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.experience-feature-row.reverse .experience-media {
  order: 2;
}

.experience-feature-row.reverse .experience-content {
  order: 1;
}

.experience-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.experience-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.experience-media:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--color-dark-section);
  color: var(--color-gold-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
}

.experience-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.experience-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.section-dark .experience-text {
  color: var(--color-taupe);
}

/* --- Verified Highlights & Statistics --- */
.highlights-band {
  background: var(--color-dark-deep);
  border-top: 1px solid rgba(180, 154, 108, 0.2);
  border-bottom: 1px solid rgba(180, 154, 108, 0.2);
  padding: 3.5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.highlight-stat-item {
  position: relative;
}

.highlight-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: rgba(180, 154, 108, 0.2);
}

.highlight-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.highlight-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-taupe-light);
}

/* --- Gallery & Lightbox --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-charcoal);
  color: var(--color-gold-light);
  border-color: var(--color-charcoal);
}

.gallery-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item.col-span-8 { grid-column: span 8; height: 420px; }
.gallery-item.col-span-4 { grid-column: span 4; height: 420px; }
.gallery-item.col-span-4-sq { grid-column: span 4; height: 340px; }
.gallery-item.col-span-6 { grid-column: span 6; height: 380px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(29, 29, 27, 0.85) 0%, rgba(29, 29, 27, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity var(--transition-smooth);
}

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

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-ivory);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.gallery-item-cat {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-smooth);
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(180, 154, 108, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-ivory);
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(29, 29, 27, 0.7);
  border: 1px solid var(--color-gold);
  color: var(--color-ivory);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

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

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote-icon {
  font-family: var(--font-editorial);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gold-light);
  margin-bottom: -1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-taupe-light);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-charcoal);
}

.author-stay {
  font-size: 0.72rem;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.rating-stars {
  color: #E5A93C;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* --- Location & Directions Section --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.distances-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.distance-landmark {
  font-weight: 600;
  color: var(--color-charcoal);
}

.distance-time {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  letter-spacing: 0.1em;
}

.location-map-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Direct CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-dark-deep) 0%, var(--color-dark-section) 100%);
  color: var(--color-ivory);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(180, 154, 108, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: var(--color-taupe);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- Floating WhatsApp Widget --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --- Reservation Modal --- */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-smooth);
  padding: 1.5rem;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.booking-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-charcoal);
  cursor: pointer;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-taupe);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold);
}

.booking-summary-box {
  background: var(--color-taupe-light);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  padding-top: 0.6rem;
  border-top: 1px dashed var(--color-taupe-dark);
  margin-top: 0.6rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-dark-deep);
  color: var(--color-ivory);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(180, 154, 108, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
}

.footer-desc {
  color: var(--color-taupe);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-column-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-link {
  font-size: 0.85rem;
  color: var(--color-taupe);
  transition: all var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-taupe);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Page Specific / Internal Pages Layout --- */
.page-hero {
  position: relative;
  background: var(--color-dark-deep);
  color: var(--color-ivory);
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--color-taupe);
}

.breadcrumb-nav a:hover {
  color: var(--color-ivory);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-taupe-light);
}

.comparison-table th {
  background: var(--color-dark-section);
  color: var(--color-ivory);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th.highlight-col {
  background: var(--color-dark-deep);
  color: var(--color-gold-light);
  border-bottom: 2px solid var(--color-gold);
}

.comparison-table tr:hover td {
  background: var(--color-ivory-light);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1180px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .booking-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .booking-field:nth-child(2) { border-right: none; }
  .booking-submit-btn { grid-column: span 2; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .highlight-stat-item:nth-child(2)::after { display: none; }
  .gallery-editorial-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.col-span-8,
  .gallery-item.col-span-4,
  .gallery-item.col-span-4-sq,
  .gallery-item.col-span-6 { grid-column: span 1; height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .editorial-image-frame {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem;
  }
  
  /* Header & Logo on tablet/mobile */
  .site-header .nav-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .brand-logo {
    gap: 0.5rem;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }
  .brand-logo-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .brand-title {
    font-size: clamp(0.82rem, 3.8vw, 0.98rem);
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-tagline {
    display: none !important;
  }
  .btn-header-cta {
    display: none !important;
  }
  .mobile-toggle {
    display: block !important;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Hero Section */
  .hero-section {
    min-height: 85vh;
    min-height: 85dvh;
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 3rem);
    letter-spacing: -0.01em;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  /* Editorial & Images */
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-img-badge {
    right: 0;
    bottom: -1rem;
    width: 110px;
    height: 110px;
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  .editorial-img-badge .badge-year { font-size: 1.15rem; }
  .editorial-img-badge .badge-sub { font-size: 0.5rem; }

  .rooms-grid { grid-template-columns: 1fr; }
  .experience-feature-row,
  .experience-feature-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .experience-feature-row.reverse .experience-media { order: 1; }
  .experience-feature-row.reverse .experience-content { order: 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  
  /* Booking Search Engine */
  .booking-bar-wrapper {
    margin-top: -2.5rem;
  }
  .booking-bar {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .booking-field {
    border-right: none;
    border-bottom: 1px solid var(--color-taupe-light);
    padding: 0.75rem 0;
  }
  .booking-submit-btn {
    grid-column: span 1;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Modal Form */
  .booking-modal {
    padding: 1rem;
  }
  .booking-modal-card {
    padding: 1.75rem 1.25rem;
    max-height: 92vh;
  }
  .modal-form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  
  /* Floating WhatsApp */
  .floating-whatsapp span { display: none; }
  .floating-whatsapp {
    padding: 0.85rem;
    border-radius: 50%;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-stat-item::after { display: none !important; }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 2.8rem;
  }

  /* Hide tagline on small screens to avoid header squishing */
  .brand-tagline {
    display: none;
  }
  .brand-title {
    font-size: 0.95rem;
  }
  .btn-header-cta span {
    display: inline-block;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .feature-pill-list {
    grid-template-columns: 1fr;
  }

  .occupancy-toggle-bar {
    width: 100%;
    max-width: 100%;
  }
  .toggle-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.5rem;
    font-size: 0.72rem;
  }

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

  /* Gallery filter bar touch scroll */
  .gallery-filters {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
    width: 100%;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  .gallery-filter-btn {
    flex-shrink: 0;
  }

  /* Room card actions stacking */
  .room-card-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  .room-card-actions .btn {
    width: 100%;
  }

  /* Section Title scaling */
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.75rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 400px) {
  .btn-header-cta {
    padding: 0.45rem 0.65rem;
    font-size: 0.68rem;
  }
  .btn-header-cta svg {
    display: none;
  }
  .brand-title {
    font-size: 0.88rem;
  }
}
