/* ==========================================================================
   R9 CONVENTION — LUXURY DESIGN SYSTEM & CORE STYLESHEET
   Location: Beside Geetha Hyundai, Shamshabad, Hyderabad, Telangana 501218
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Luxury Dark */
  --bg-dark-900: #090b0e;
  --bg-dark-800: #0f1217;
  --bg-dark-700: #171a21;
  --bg-dark-600: #212631;

  /* Color Palette - Luxury Light / Ivory */
  --bg-ivory: #faf8f5;
  --bg-ivory-alt: #f4f0e8;
  --bg-white: #ffffff;
  --bg-ivory-warm: #eee8dc;

  /* Royal Gold Accents */
  --gold-300: #f1e2c3;
  --gold-400: #dfc282;
  --gold-500: #c5a059;
  --gold-600: #a9833b;
  --gold-700: #886524;
  --gold-gradient: linear-gradient(135deg, #f5e1b5 0%, #d4af37 45%, #aa8024 85%, #dfbe6f 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(170, 128, 36, 0.05) 100%);

  /* Text Colors */
  --text-dark-primary: #15181e;
  --text-dark-secondary: #4a5160;
  --text-dark-muted: #727b8e;
  
  --text-light-primary: #fcfbf9;
  --text-light-secondary: #caced6;
  --text-light-muted: #959fae;
  --text-gold: #c5a059;
  --text-gold-light: #dfc282;

  /* Borders & Dividers */
  --border-gold-subtle: rgba(197, 160, 89, 0.28);
  --border-gold-strong: rgba(197, 160, 89, 0.6);
  --border-light-subtle: rgba(0, 0, 0, 0.07);
  --border-dark-subtle: rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --container-narrow: 980px;
  --container-wide: 1400px;
  --section-pad-y: clamp(4.5rem, 8vw, 7.5rem);
  --section-pad-sm: clamp(3rem, 5vw, 4.5rem);

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-luxury: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-luxury: 0 24px 60px -12px rgba(9, 11, 14, 0.25);
  --shadow-gold: 0 10px 30px -5px rgba(197, 160, 89, 0.3);

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark-primary);
  background-color: var(--bg-ivory);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Focus Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background-color: var(--gold-500);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: inherit;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 4.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25rem;
}

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

.text-lead {
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.7;
  color: var(--text-dark-secondary);
}

.text-lead-light {
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.7;
  color: var(--text-light-secondary);
}

.text-gold {
  color: var(--gold-500);
}

.text-muted {
  color: var(--text-dark-muted);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Luxury Accent Badge */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.luxury-badge-dark {
  color: var(--gold-600);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--border-gold-subtle);
}


/* Ornamental Hairlines */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 240px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold-strong);
}

.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.container-wide {
  max-width: var(--container-wide);
}

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

.section-sm {
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad-sm);
}

/* Section Themes */
.section-dark {
  background-color: var(--bg-dark-900);
  color: var(--text-light-primary);
}

.section-dark-alt {
  background-color: var(--bg-dark-800);
  color: var(--text-light-primary);
}

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

.section-ivory-alt {
  background-color: var(--bg-ivory-alt);
  color: var(--text-dark-primary);
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

.align-center {
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-xs);
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

/* Primary Luxury Gold Button */
.btn-primary {
  background: var(--gold-gradient);
  color: #0b0d10;
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(197, 160, 89, 0.45);
  filter: brightness(1.06);
}

/* Secondary Gold Outline Button */
.btn-outline {
  background: transparent;
  color: var(--text-light-primary);
  border: 1px solid var(--border-gold-strong);
}

.btn-outline:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark-primary);
  border: 1px solid var(--border-gold-strong);
}

.btn-outline-dark:hover {
  background: var(--gold-500);
  color: #ffffff;
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

/* WhatsApp Action Button */
.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

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

.btn-sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION (STICKY LUXURY)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.85) 0%, rgba(9, 11, 14, 0) 100%);
}

.site-header.scrolled {
  background: rgba(9, 11, 14, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

/* Gracefully fade header brand when mobile drawer is open so it NEVER overlaps or clips */
body.nav-open .site-header .header-brand {
  opacity: 0;
  pointer-events: none;
}

.header-logo-img {
  height: 26px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

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

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-drawer-header {
  display: none;
}

.nav-drawer-footer {
  display: none;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light-primary);
  opacity: 0.88;
  position: relative;
  padding: 0.35rem 0;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

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

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

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

/* Nav Overlay Backdrop (Removed overlay) */
.nav-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.nav-overlay.active {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: color var(--transition-fast);
}

.header-phone-btn svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

.header-phone-btn:hover {
  color: var(--gold-400);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* Hide hamburger toggle when drawer is open (drawer has dedicated gold close button) */
.mobile-nav-toggle.active,
body.nav-open .mobile-nav-toggle {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION (CINEMATIC LUXURY SPLIT SETUP)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  color: var(--text-light-primary);
  overflow: hidden;
  background-color: var(--bg-dark-900);
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 9s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
  will-change: transform, opacity;
}

.hero-bg.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(9, 11, 14, 0.96) 0%, rgba(9, 11, 14, 0.88) 45%, rgba(9, 11, 14, 0.45) 75%, rgba(9, 11, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(9, 11, 14, 0.82) 0%, transparent 22%, transparent 72%, rgba(9, 11, 14, 0.98) 100%),
    radial-gradient(ellipse at 80% 45%, rgba(9, 11, 14, 0.05) 0%, rgba(9, 11, 14, 0.6) 80%, rgba(9, 11, 14, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column - Editorial Brand Suite */
.hero-main-col {
  max-width: 680px;
}

.hero-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  background: rgba(22, 27, 34, 0.75);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1.35rem;
}

.hero-luxury-badge .badge-gold-sparkle {
  color: var(--gold-400);
  font-size: 0.95rem;
}

.hero-title {
  font-size: clamp(2.35rem, 4.4vw, 3.95rem);
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-title-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-primary);
  border: 1px solid rgba(197, 160, 89, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline-glass:hover {
  background: rgba(197, 160, 89, 0.18);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Quick Highlights Strip */
.hero-highlights-strip {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-highlight-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  background: rgba(15, 18, 23, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-highlight-pill .pill-gold-icon {
  font-size: 1.1rem;
}

.hero-highlight-pill strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1.1;
}

.hero-highlight-pill small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Right Column: Glassmorphic Quick Booking Card */
.hero-glass-card {
  background: linear-gradient(135deg, rgba(17, 21, 28, 0.88) 0%, rgba(11, 14, 18, 0.92) 100%);
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  max-width: 450px;
  margin-left: auto;
}

.glass-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.8rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: #38e178;
  margin-bottom: 0.75rem;
}

.live-pulse {
  width: 7px;
  height: 7px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25d366;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.glass-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.3rem;
}

.glass-card-sub {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 1.35rem;
}

/* Quick Form */
.hero-quick-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-300);
}

.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(8, 10, 13, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-xs);
  color: var(--text-light-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.hero-form-group input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
  min-height: 42px;
}

.hero-form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.85) sepia(60%) saturate(400%) hue-rotate(5deg) brightness(1.2);
  opacity: 0.9;
  padding: 2px;
  border-radius: 4px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero-form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.15);
}

.hero-form-group input:focus,
.hero-form-group select:focus {
  border-color: var(--gold-400);
  background: rgba(8, 10, 13, 0.95);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
  outline: none;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-gold-solid {
  background: var(--gold-gradient);
  color: #0c0e11;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
  border: none;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
}

.btn-gold-solid:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.45);
}

.btn-block {
  width: 100%;
}

.hero-card-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light-muted);
  text-align: center;
  margin-top: 0.4rem;
}

.hero-card-trust svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

.hero-card-trust strong {
  color: var(--gold-300);
}

/* Ambient View Switcher Bar */
.hero-switcher-bar {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(11, 14, 18, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.switcher-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  font-weight: 600;
}

.switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-light-secondary);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}

.switcher-btn .switcher-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background var(--transition-fast);
}

.switcher-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.switcher-btn.active {
  color: #0c0e11;
  background: var(--gold-gradient);
}

.switcher-btn.active .switcher-dot {
  background: #0c0e11;
}

/* Scroll indicator adjustments */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}

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

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(197, 160, 89, 0.6);
  border-radius: 12px;
  position: relative;
}

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

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-main-col {
    max-width: 100%;
    text-align: center;
  }

  .hero-luxury-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-highlights-strip {
    justify-content: center;
  }

  .hero-glass-card {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }

  .hero-switcher-bar {
    position: static;
    margin: 2rem auto 0;
    justify-content: center;
    width: fit-content;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(9, 11, 14, 0.88) 0%,
      rgba(9, 11, 14, 0.72) 40%,
      rgba(9, 11, 14, 0.94) 85%,
      rgba(9, 11, 14, 1) 100%
    );
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 7rem 1rem 3.5rem;
  }

  .hero-glass-card {
    padding: 1.5rem 1.25rem;
  }

  .hero-form-row {
    grid-template-columns: 1fr;
  }

  .hero-highlights-strip {
    gap: 0.6rem;
  }

  .hero-highlight-pill {
    padding: 0.5rem 0.85rem;
  }

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

  .hero-switcher-bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. TRUST / INTRODUCTION STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--bg-dark-800);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 3rem 0;
  color: var(--text-light-primary);
  position: relative;
  z-index: 5;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--border-dark-subtle);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--border-gold-subtle);
  margin-bottom: 1rem;
  color: var(--gold-400);
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 0.35rem;
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. ABOUT SPLIT SECTION
   -------------------------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-dark-900);
  color: var(--text-light-primary);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}

.about-badge-card .tagline {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--gold-300);
  line-height: 1.45;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  margin-bottom: 0.15rem;
}

.about-feature-text p {
  font-size: 0.86rem;
  color: var(--text-dark-secondary);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. OCCASIONS & CELEBRATIONS CARDS
   -------------------------------------------------------------------------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.occasion-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--border-gold-subtle);
}

.occasion-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}

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

.occasion-card:hover .occasion-img {
  transform: scale(1.06);
}

.occasion-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(9, 11, 14, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-gold-subtle);
}

.occasion-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.occasion-title {
  font-size: 1.38rem;
  margin-bottom: 0.65rem;
  color: var(--text-dark-primary);
}

.occasion-desc {
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.occasion-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition-fast);
}

.occasion-card:hover .occasion-link {
  gap: 0.75rem;
  color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   11. VENUE EXPERIENCE & EDITORIAL SHOWCASE
   -------------------------------------------------------------------------- */
.editorial-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.editorial-row.reverse {
  grid-template-columns: 1fr 1.15fr;
}

.editorial-row.reverse .editorial-media {
  order: 2;
}

.editorial-row.reverse .editorial-content {
  order: 1;
}

.editorial-row:last-child {
  margin-bottom: 0;
}

.editorial-media {
  position: relative;
}

.editorial-img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-luxury);
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border: 1px solid var(--border-dark-subtle);
}

.editorial-title {
  margin-bottom: 1rem;
  color: var(--text-light-primary);
}

.editorial-text {
  color: var(--text-light-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.editorial-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  color: var(--text-light-primary);
}

.highlight-pill svg {
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. STAGE & DINING SPECIAL SECTIONS
   -------------------------------------------------------------------------- */
.stage-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.stage-featured-box {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-light-subtle);
}

.stage-featured-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.stage-side-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.75rem;
}

.stage-side-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light-subtle);
}

.stage-side-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.image-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 11, 14, 0.88) 100%);
  color: #ffffff;
}

.image-caption-overlay h4 {
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: 0.25rem;
}

.image-caption-overlay p {
  font-size: 0.82rem;
  color: var(--text-light-secondary);
}

/* --------------------------------------------------------------------------
   13. GALLERY PREVIEW / GRID SECTION
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--bg-dark-800);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light-subtle);
}

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

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 14, 0.65);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: opacity var(--transition-smooth);
}

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

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.9);
  color: #0b0d10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transform: scale(0.8);
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-card-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.gallery-card-category {
  font-size: 0.75rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-preview-cta {
  margin-top: 3.5rem;
}

/* --------------------------------------------------------------------------
   14. LOCATION & MAP SECTION
   -------------------------------------------------------------------------- */
.location-card-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.location-info-pane {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.location-detail-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-primary);
  margin-bottom: 0.25rem;
}

.location-detail-item p {
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

.location-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-wrapper {
  position: relative;
  min-height: 380px;
  width: 100%;
  background: #eaeaea;
}

.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   15. ENQUIRY / BOOKING FORM
   -------------------------------------------------------------------------- */
.enquiry-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.enquiry-info-pane {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--text-light-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-quick-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 0.75rem;
}

.contact-quick-link:last-child {
  margin-bottom: 0;
}

.contact-quick-link svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
}

.contact-quick-link:hover {
  color: #ffffff;
}

/* Form Styles */
.luxury-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-luxury);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark-primary);
}

.form-label .required {
  color: #d9534f;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  border: 1px solid #dcd7ce;
  border-radius: var(--radius-xs);
  background-color: #fdfdfc;
  color: var(--text-dark-primary);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-500);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
  outline: none;
}

.form-control[type="date"],
input[type="date"] {
  cursor: pointer;
}

.form-control[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.form-control[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Honeypot field (hidden from users, catches bots) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xs);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-alert.success {
  display: block;
  background-color: #eafaf1;
  color: #27ae60;
  border: 1px solid #c8eed6;
}

.form-alert.error {
  display: block;
  background-color: #fdf2f2;
  color: #e74c3c;
  border: 1px solid #fadbd8;
}

/* --------------------------------------------------------------------------
   16. FLOATING WHATSAPP CTA
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
}

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

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark-900);
  border-top: 1px solid var(--border-gold-subtle);
  color: var(--text-light-secondary);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.92rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--gold-400);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   18. PAGE HERO (INNER PAGES)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  background-color: var(--bg-dark-900);
  color: var(--text-light-primary);
  text-align: center;
  overflow: hidden;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 11, 14, 0.4) 0%, rgba(9, 11, 14, 0.95) 100%);
  z-index: 2;
}

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

.page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-bottom: 1rem;
}

.page-breadcrumbs a {
  color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   19. ANIMATIONS & SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .header-logo-img {
    height: 24px;
    max-width: 190px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #111419 0%, #090b0e 100%);
    border-left: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem 1.75rem 2.5rem;
    gap: 0;
    box-shadow: none;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gold-subtle);
    width: 100%;
  }

  .drawer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .drawer-logo-img {
    height: 22px;
    width: auto;
    display: block;
  }

  .drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .drawer-close-btn:hover {
    background: var(--gold-500);
    color: #0b0d10;
    transform: rotate(90deg);
  }

  .nav-menu-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .nav-link {
    font-size: 1.12rem;
    font-weight: 600;
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light-primary);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--gold-400);
    padding-left: 0.6rem;
    border-left: 2px solid var(--gold-500);
  }

  .nav-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-gold-subtle);
    width: 100%;
  }

  .drawer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-light-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
  }

  .drawer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold-500);
    flex-shrink: 0;
  }

  .drawer-contact-item:hover {
    color: var(--gold-400);
  }

  .drawer-whatsapp svg {
    color: #25d366;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .about-split,
  .editorial-row,
  .editorial-row.reverse,
  .location-card-container,
  .enquiry-split,
  .stage-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* On mobile, always show content first, image second for all editorial rows */
  .editorial-row .editorial-media {
    order: 2;
  }
  .editorial-row .editorial-content {
    order: 1;
  }

  /* For reverse rows, same stacking: content first, media second */
  .editorial-row.reverse .editorial-media {
    order: 2;
  }
  .editorial-row.reverse .editorial-content {
    order: 1;
  }

  /* Collapse about-feature-list to single column inside editorial */
  .editorial-content .about-feature-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
  }

  /* Collapse editorial highlights to single column */
  .editorial-highlights {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1rem;
  }

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

  .trust-item:nth-child(2) {
    border-right: none;
  }

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

@media (max-width: 768px) {
  .header-phone-btn {
    display: none;
  }

  .header-logo-img {
    height: 22px;
    max-width: 175px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-dark-subtle);
    padding-bottom: 1.5rem;
  }

  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-badge-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.85rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

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

  /* Editorial row margin reduction on mobile */
  .editorial-row {
    margin-bottom: 2rem;
  }

  /* Highlight pills go single-column on mobile */
  .editorial-highlights {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  /* Highlight pill wrapping improvements */
  .highlight-pill {
    font-size: 0.85rem;
    padding: 0.6rem 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-logo-img {
    height: 20px;
    max-width: 155px;
  }

  .header-actions .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
  }

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

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

  /* Editorial improvements on very small screens */
  .editorial-row,
  .editorial-row.reverse {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .editorial-img {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xs);
  }

  /* Highlight pills: tighter on phone */
  .highlight-pill {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    gap: 0.45rem;
  }

  .highlight-pill svg {
    width: 14px;
    height: 14px;
  }

  /* Luxury badge tighter */
  .luxury-badge {
    font-size: 0.7rem;
    padding: 0.28rem 0.75rem;
    margin-bottom: 0.85rem;
  }

  /* Gold divider spacing */
  .gold-divider {
    margin: 0.75rem auto 1.5rem;
  }

  /* Text lead tighter */
  .text-lead,
  .text-lead-light {
    font-size: 0.95rem;
  }
}


/* --------------------------------------------------------------------------
   16. VENUE SPECIFICATIONS & KEY FACTS DESIGN SYSTEM
   -------------------------------------------------------------------------- */
.specs-bar-section {
  background: var(--bg-dark-800);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 2.25rem 0;
  position: relative;
  z-index: 10;
}

.specs-bar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.specs-bar-item {
  text-align: center;
  position: relative;
}

.specs-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-dark-subtle);
}

.specs-bar-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.specs-bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-secondary);
}

.specs-bar-sub {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  margin-top: 0.15rem;
}

/* Venue Specifications Cards Grid */
.venue-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.venue-spec-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.venue-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.venue-spec-card-dark {
  background: var(--bg-dark-800);
  border-color: var(--border-gold-subtle);
}

.venue-spec-card-dark:hover {
  border-color: var(--gold-400);
}

.venue-spec-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.venue-spec-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.venue-spec-title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark-primary);
}

.venue-spec-card-dark .venue-spec-title {
  color: var(--gold-300);
}

.venue-spec-value {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.venue-spec-card-dark .venue-spec-value {
  color: var(--gold-400);
}

.venue-spec-desc {
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

.venue-spec-card-dark .venue-spec-desc {
  color: var(--text-light-secondary);
}

/* Divisible Hall Feature Card */
.divisible-hall-card {
  background: var(--bg-dark-800);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.divisible-hall-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hall-partition-diagram {
  background: var(--bg-dark-900);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.hall-sub-box {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-xs);
  padding: 1.25rem 0.75rem;
}

.hall-sub-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 0.25rem;
}

.hall-sub-cap {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: #ffffff;
}

.hall-sub-note {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

.hall-divider-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold-400);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.5rem;
}

.hall-divider-line::before,
.hall-divider-line::after {
  content: '';
  width: 1px;
  height: 35px;
  background: var(--gold-500);
}

/* Specifications Table */
.specs-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light-subtle);
  box-shadow: var(--shadow-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background: var(--bg-white);
}

.specs-table th {
  background: var(--bg-ivory-warm);
  color: var(--text-dark-primary);
  font-family: var(--font-serif);
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  border-bottom: 2px solid var(--border-gold-subtle);
}

.specs-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-light-subtle);
  color: var(--text-dark-secondary);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: rgba(197, 160, 89, 0.04);
}

.specs-feature-name {
  font-weight: 600;
  color: var(--text-dark-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.specs-feature-name svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.specs-badge-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1b8743;
  font-weight: 600;
  font-size: 0.88rem;
}

.specs-badge-check svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .specs-bar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  
  .specs-bar-item:nth-child(3)::after {
    display: none;
  }

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

  .divisible-hall-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .specs-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-bar-item:nth-child(even)::after {
    display: none;
  }

  .venue-specs-grid {
    grid-template-columns: 1fr;
  }

  .hall-partition-diagram {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hall-divider-line {
    flex-direction: row;
  }

  .hall-divider-line::before,
  .hall-divider-line::after {
    width: 35px;
    height: 1px;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS — Full Site Overhaul
   Covers all breakpoints, all sections, all pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   GLOBAL MOBILE: Container & Section Spacing
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }

  .section-sm {
    padding-top: clamp(2rem, 5vw, 3rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   HEADER: Mobile Header Refinements
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .header-container {
    gap: 0.75rem;
  }

  /* Hide "Enquire Now" text label on very small screens, keep it as icon only
     approach — actually keep it but shrink it */
  .header-actions {
    gap: 0.75rem;
  }
}

@media (max-width: 400px) {
  /* On the smallest phones, hide the enquire button text */
  .header-actions .btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION: Full Mobile Stack
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    padding: 7.5rem 0 4rem;
    min-height: auto;
    overflow-x: hidden;
  }

  /* Constrain grid and columns so nothing bleeds off-screen */
  .hero-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-main-col {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* Fix hero title — change accent span to inline so the word
     "Celebrations" wraps naturally instead of overflowing as
     an inline-block element */
  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    line-height: 1.22;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-title-accent {
    display: inline;
  }

  .hero-description {
    font-size: 0.96rem;
    margin-bottom: 1.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Buttons: full-width, no overflow */
  .hero-actions {
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1.25rem;
    font-size: 0.86rem;
  }

  /* Glass card: always 100% width on mobile */
  .hero-glass-card {
    padding: 1.5rem 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-highlights-strip {
    gap: 0.5rem;
  }

  .hero-highlight-pill {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }

  .hero-highlight-pill strong {
    font-size: 0.95rem;
  }

  .hero-highlight-pill small {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6.5rem 0 3rem;
    overflow-x: hidden;
  }

  .hero-grid {
    overflow: hidden;
  }

  .hero-glass-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .glass-card-title {
    font-size: 1.15rem;
  }

  .glass-card-sub {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .hero-title-accent {
    display: inline;
  }

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

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-highlights-strip {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-highlight-pill {
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
}

/* --------------------------------------------------------------------------
   SPECS BAR: Counter Strip
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .specs-bar-section {
    padding: 2rem 0;
  }

  .specs-bar-item::after {
    display: none;
  }

  .specs-bar-num {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .specs-bar-label {
    font-size: 0.75rem;
  }

  .specs-bar-sub {
    font-size: 0.68rem;
  }
}

@media (max-width: 400px) {
  .specs-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .specs-bar-item:nth-child(even)::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   TRUST STRIP: 2-col → 1-col
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .trust-strip {
    padding: 2.5rem 0;
  }
}

/* --------------------------------------------------------------------------
   ABOUT SECTION: Image & Feature List
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-badge-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
    right: unset;
    bottom: unset;
  }
}

@media (max-width: 768px) {
  .about-feature-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-img-main {
    aspect-ratio: 16/9;
  }
}

/* --------------------------------------------------------------------------
   DINING SECTION — MOBILE REDESIGN
   Desktop split is hidden on mobile; a purpose-built card takes over.
   -------------------------------------------------------------------------- */

/* Desktop: show split, hide mobile card */
.dining-desktop-only {
  display: grid;
}
.dining-mobile-card {
  display: none;
}

/* Mobile: hide split, show card */
@media (max-width: 768px) {
  .dining-desktop-only {
    display: none !important;
  }

  .dining-mobile-card {
    display: block;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(9, 11, 14, 0.10);
    border: 1px solid rgba(197, 160, 89, 0.15);
  }

  /* ---- Image with badge overlay ---- */
  .dining-mobile-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .dining-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .dining-mobile-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,11,14,0.55) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.1rem;
  }

  .dining-mobile-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 160, 89, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: var(--radius-pill);
    color: var(--gold-300);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
  }

  /* ---- Body / content ---- */
  .dining-mobile-body {
    padding: 1.5rem 1.25rem 1.75rem;
    background: var(--bg-ivory);
  }

  .dining-mobile-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
    font-weight: 700;
    color: var(--text-dark-primary);
    line-height: 1.25;
    margin: 0 0 0.6rem;
  }

  .dining-mobile-divider {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .dining-mobile-lead {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    line-height: 1.65;
    margin-bottom: 0.75rem;
  }

  .dining-mobile-desc {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-dark-muted);
    line-height: 1.6;
    margin-bottom: 1.4rem;
  }

  /* ---- Feature chips ---- */
  .dining-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .dining-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-ivory-warm);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--radius-pill);
    padding: 0.38rem 0.9rem 0.38rem 0.65rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark-primary);
  }

  .dining-chip svg {
    width: 14px;
    height: 14px;
    color: var(--gold-500);
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   OCCASIONS GRID
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 600px) {
  .occasions-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .occasion-body {
    padding: 1.25rem;
  }

  .occasion-title {
    font-size: 1.2rem;
  }
}

/* --------------------------------------------------------------------------
   EDITORIAL ROWS: Experience Sections
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .editorial-row,
  .editorial-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }

  /* Always show content before image when stacked */
  .editorial-row .editorial-media,
  .editorial-row.reverse .editorial-media {
    order: 2;
  }
  .editorial-row .editorial-content,
  .editorial-row.reverse .editorial-content {
    order: 1;
  }

  .editorial-img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .editorial-highlights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .editorial-title {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
  }

  .editorial-text {
    font-size: 0.95rem;
  }

  /* Feature lists inside editorial content collapse to 1 column */
  .editorial-content .about-feature-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   STAGE SHOWCASE GRID
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .stage-showcase-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .stage-featured-img {
    min-height: 280px;
  }

  .stage-side-grid {
    grid-template-rows: unset;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .stage-side-img {
    min-height: 160px;
  }
}

@media (max-width: 600px) {
  .stage-side-grid {
    grid-template-columns: 1fr;
  }

  .stage-featured-img {
    min-height: 220px;
  }

  .stage-side-img {
    min-height: 180px;
  }
}

/* --------------------------------------------------------------------------
   GALLERY GRID (Homepage & Gallery Page)
   -------------------------------------------------------------------------- */

/* Desktop: show 4-col grid, hide mobile mosaic */
.gallery-desktop-only {
  display: grid;
}
.gallery-mobile-mosaic {
  display: none;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .gallery-preview-cta {
    margin-top: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop grid, show mobile mosaic */
  .gallery-desktop-only {
    display: none !important;
  }

  .gallery-mobile-mosaic {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
  }

  /* Featured full-width card */
  .gallery-mosaic-featured {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
  }

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

  .gallery-mosaic-featured:active img {
    transform: scale(1.04);
  }

  /* Bottom row — 3 equal cards */
  .gallery-mosaic-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .gallery-mosaic-small {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

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

  .gallery-mosaic-small:active img {
    transform: scale(1.05);
  }

  /* Label overlay on all mosaic cards */
  .gallery-mosaic-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.75rem;
    background: linear-gradient(to top, rgba(9,11,14,0.82) 0%, transparent 100%);
  }

  .gallery-mosaic-label .gallery-card-category {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    color: var(--gold-400);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.1rem;
  }

  .gallery-mosaic-label .gallery-card-title {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    color: #fff;
    line-height: 1.2;
    margin: 0;
  }

  .gallery-mosaic-featured .gallery-mosaic-label {
    padding: 1.1rem 1.25rem;
  }

  .gallery-mosaic-featured .gallery-mosaic-label .gallery-card-category {
    font-size: 0.7rem;
  }

  .gallery-mosaic-featured .gallery-mosaic-label .gallery-card-title {
    font-size: 1.05rem;
  }

  /* "View All" overlay on last small card */
  .gallery-mosaic-more {
    position: relative;
  }

  .gallery-mosaic-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 11, 14, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
  }

  .gallery-mosaic-more-overlay svg {
    color: var(--gold-400);
    margin-top: 0.1rem;
  }

  /* CTA button */
  .gallery-preview-cta {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* --------------------------------------------------------------------------
   LOCATION / MAP SECTION
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .location-card-container {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: var(--radius-sm);
  }

  .location-info-pane {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }

  .map-wrapper {
    min-height: 300px;
  }

  .location-actions {
    gap: 0.75rem;
  }

  .location-actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    min-height: 250px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  .location-detail-list {
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   ENQUIRY / BOOKING FORM SECTION
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .enquiry-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .enquiry-info-pane {
    padding: 2rem 1.5rem;
  }

  .luxury-form {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .enquiry-info-pane {
    padding: 1.5rem 1.25rem;
  }

  .luxury-form {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-sm);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-quick-link {
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   PAGE HERO (Inner Pages)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .page-hero {
    padding: 7.5rem 1rem 3.5rem;
  }

  .page-hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 6.5rem 0.85rem 3rem;
  }
}

/* --------------------------------------------------------------------------
   VENUE SPECS SECTION (venue.html)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .divisible-hall-card {
    padding: 1.5rem 1.25rem;
    margin: 2rem 0;
  }

  .divisible-hall-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .venue-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .venue-spec-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .venue-specs-grid {
    grid-template-columns: 1fr;
  }

  .specs-table-wrap {
    font-size: 0.85rem;
  }

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

  .specs-feature-name {
    font-size: 0.85rem;
  }
}

/* --------------------------------------------------------------------------
   FOOTER: Full mobile restack
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-brand-col p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
    padding: 0.85rem;
  }

  .floating-whatsapp span {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   TRUST STRIP: Fine-tuned for small screens
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .trust-strip {
    padding: 2rem 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-dark-subtle);
    padding-bottom: 1.5rem;
  }

  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   GOLD DIVIDER / LUXURY BADGE: Spacing on small screens
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .gold-divider {
    margin: 1rem auto 1.75rem;
  }

  .luxury-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
  }
}

/* --------------------------------------------------------------------------
   HIGHLIGHT PILLS (editorial sections)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .highlight-pill {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   SECTION HEADINGS: Responsive typography
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .text-lead,
  .text-lead-light {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   SCROLL PREVENT: Lock body when mobile nav is open
   -------------------------------------------------------------------------- */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* --------------------------------------------------------------------------
   IMAGE SAFE ZONE: Prevent any overflow
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  img,
  video,
  iframe {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   ABOUT PAGE (about.html) — Team / Stats sections
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   CELEBRATIONS PAGE: Cards
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .occasion-img-box {
    aspect-ratio: 4/3;
  }
}

/* --------------------------------------------------------------------------
   CONTACT PAGE: Map and form full width on mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .contact-quick-box {
    padding: 1.25rem;
    margin: 1rem 0;
  }
}

/* ==========================================================================
   GLOBAL MOBILE SAFETY NET — Prevent horizontal overflow on ALL elements
   Applied last so it overrides any conflicting rules above.
   ========================================================================== */
@media (max-width: 991px) {
  /* Ensure every section and wrapper is clipped to viewport width */
  section,
  header,
  footer,
  main,
  nav,
  .container,
  .hero,
  .hero-grid,
  .hero-main-col,
  .hero-card-col {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Prevent buttons and interactive elements from stretching beyond parent */
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-outline-glass,
  .btn-gold-solid,
  .btn-whatsapp {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
  }

  /* Prevent form inputs from overflowing their containers */
  input,
  select,
  textarea,
  .form-control,
  .hero-form-group input,
  .hero-form-group select {
    max-width: 100%;
    box-sizing: border-box;
  }
}
