/* =========================================================================
   ST. PAUL'S HOTEL - CINEMATIC OVERHAUL REWRITE (2026 NEXT-GEN)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500&display=swap');

:root {
  --nav-height: 90px;

  /* â”€â”€ Color Palette: Light Champagne Luxury â”€â”€ */
  /* Base: crisp modern light ivory */
  --bg: #fefcf8;
  /* Lifted surfaces: pure white for cards and sections */
  --bg-lift: #ffffff;
  /* Glass surfaces: semi-transparent white */
  --bg-glass: rgba(255, 255, 255, 0.75);

  /* Text */
  --text: #0b0126;
  /* Deep Indigo for readability */
  --text-muted: rgba(25, 2, 82, 0.74);
  --text-dark: #0b0126;

  /* Accent: Terracotta */
  --accent: #C05A35;
  --accent-muted: rgba(192, 90, 53, 0.17);

  /* Borders */
  --border: rgba(25, 2, 82, 0.13);
  --border-gold: rgba(192, 90, 53, 0.4);
  /* Subtle highlight border */
  --border-purple: rgba(25, 2, 82, 0.09);

  /* Glow helpers */
  --purple-glow: rgba(25, 2, 82, 0.06);
  --gold-glow: rgba(192, 90, 53, 0.17);

  /* Secondary Accent: Deep Terracotta (Refined Luxury) */
  --accent2:       #8e3d22;
  --accent2-muted: rgba(142, 61, 34, 0.13);
  --border-red:    rgba(142, 61, 34, 0.32);

  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Outfit', sans-serif;

  /* Easing (used by marquee / gallery transitions) */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s var(--ease-out-expo);

  /* Section spacing */
  --section-pad: 120px;

  /* Elevation shadow scale */
  --shadow-sm: 0 2px 12px rgba(11, 1, 38, 0.06);
  --shadow-md: 0 8px 32px rgba(11, 1, 38, 0.09);
  --shadow-lg: 0 20px 60px rgba(11, 1, 38, 0.12);
  --shadow-gold: 0 8px 32px rgba(142, 61, 34, 0.18);
}

/* =========================================================================
   RESET & CORE
   ========================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto !important;
  text-rendering: optimizeLegibility;
  /* Smooth scroll handled by JS if needed, but native is ok. We do custom reveals */
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}



/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.h-xl {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 90px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-transform: none;
}

.h-xl i {
  font-style: italic;
  color: var(--accent);
}

.h-lg {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.h-md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 400;
}

.h-sm {
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--accent);
}

p.body-lg {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
}

/* =========================================================================
   LAYOUT & UTILITIES
   ========================================================================= */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section {
  padding: 140px 0;
  position: relative;
}

@media (max-width: 992px) {
  .section {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================================================================
   TOP BAR
   ========================================================================= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg-lift) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  z-index: 101;
}

.top-bar a {
  color: var(--accent);
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .top-bar {
    padding: 0 20px;
    font-size: 9px;
    flex-direction: column;
    justify-content: center;
    height: 50px;
  }

  .header {
    top: 50px !important;
  }
}

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.top-bar-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-bar-social a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 16px;
}

.top-bar-social a:hover {
  color: var(--accent);
}

.header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: background 0.4s ease, border-bottom 0.4s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(11, 1, 38, 0.05);
}

.header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.brand img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* Active page: terracotta text + animated underline */
.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 2px;
}

.menu-btn {
  display: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  color: var(--text);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

/* =========================================================================
   BUTTONS (MAGNETIC)
   ========================================================================= */
.btn-magnetic-wrap {
  display: inline-block;
  padding: 20px;
  /* Magnetic catch area */
  margin: -20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Ghost button â€” gold fill on hover (elegance) */
.btn::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn:hover {
  border-color: var(--accent);
  color: #fff;
}

.btn:hover::after {
  top: 0;
}

/* Primary CTA â€” fill, border, white text (action) */
.btn.primary {
  border-color: var(--accent2);
  color: var(--accent2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn.primary::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent2);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn.primary:hover {
  border-color: var(--accent2);
  color: #fff;
  box-shadow: 0 12px 36px rgba(142, 61, 34, 0.28);
}

.btn.primary:hover::after {
  top: 0;
}

/* =========================================================================
   HERO / CINE-INTRO
   ========================================================================= */
.slider-wrap {
  position: relative;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none; /* prevent pausing via click */
}
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  border: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease-in-out, transform 2.5s ease;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  z-index: 2;
}

.slider-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.32);
  transition: background 0.4s, border-color 0.4s;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--accent2);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 14px rgba(211, 47, 47, 0.55);
}

.hero-full {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Extra height for parallax */
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: brightness(1.02) contrast(1.08) saturate(1.08);
  will-change: transform, scale;
  transform-origin: center center;
}

@keyframes kenBurns {
  0% { scale: 1; }
  100% { scale: 1.12; }
}

.slide.active .hero-bg {
  animation: kenBurns 14s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Indigo-anchored scrim: sharper type contrast, same luxury tone as --text */
  background:
    linear-gradient(to top, rgba(11, 1, 38, 0.5) 0%, rgba(11, 1, 38, 0.16) 40%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 55%, transparent 0%, rgba(255, 255, 255, 0.14) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 140px;
}

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-content .h-sm {
  color: #ffffff !important;
}

.hero-content .h-xl i {
  color: var(--accent) !important;
}

/* Inner page heroes use flex-center -- no top margin needed */
.hero-full .flex-center .hero-content,
.hero-full .container.hero-content.flex-center {
  margin-top: 0;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(to top, rgba(250, 249, 246, 0.55) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
}

/* =========================================================================
   ANIMATIONS & REVEALS
   ========================================================================= */
/* Split Line Reveal */
.split-line {
  overflow: hidden;
  display: block;
}

.split-line .split-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-line.revealed .split-inner {
  transform: translateY(0);
}

/* Fade up general */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Image Parallax Container */
.img-cine {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* Soft rounded edges for modern appeal */
}

.img-cine img {
  width: 100%;
  height: 120%;
  /* Space for parallax */
  object-fit: cover;
  transform: translateY(-10%);
  /* Starting point */
  will-change: transform;
  filter: brightness(1.02) contrast(1.08) saturate(1.08);
  transition: filter 0.6s ease;
}

.img-cine:hover img {
  filter: brightness(1.04) contrast(1.1) saturate(1.1);
}

/* =========================================================================
   ROOMS CINEMATIC GRID (Index Demo)
   ========================================================================= */
.room-teaser {
  position: relative;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.room-teaser:first-child {
  border-top: none;
}

.room-teaser:hover {
  border-color: var(--border-gold);
}

/* Room pricing display */
.room-price {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--accent);
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.room-price .per-night {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.room-teaser .grid-2 {
  align-items: stretch;
}

.room-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.room-info .h-lg {
  margin: 20px 0 30px;
}

.room-features {
  display: flex;
  gap: 20px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.room-features li {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-features li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
}

/* =========================================================================
   TEXT UTILITIES
   ========================================================================= */
.text-center {
  text-align: center;
}

/* =========================================================================
   FORMS (BOOKING / CONTACT)
   ========================================================================= */
.form-card {
  background: var(--bg-lift);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 90, 53, 0.1);
  background: rgba(255, 255, 255, 1);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text);
  opacity: 0.8;
}

.form-alert {
  margin-top: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 14px;
  font-size: 13px;
}

/* =========================================================================
   NEWS
   ========================================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.news-card {
  background: var(--bg-lift);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.news-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) contrast(1.06);
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.news-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.news-tag {
  border: 1px solid var(--border-gold);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(192, 90, 53, 0.11);
  color: var(--text);
}

.news-date {
  opacity: 0.7;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.news-excerpt {
  color: var(--text);
  opacity: 0.78;
  line-height: 1.8;
  font-size: 14px;
}

.news-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s ease, color 0.3s ease;
}

.news-readmore::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.news-card:hover .news-readmore {
  gap: 14px;
  color: var(--accent2);
}

.news-card:hover .news-readmore::after {
  transform: translateX(4px);
}

.news-post {
  max-width: 960px;
  margin: 0 auto;
}

.news-post h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.news-post .hero-img {
  margin-top: 26px;
  border: 1px solid var(--border);
}

.news-post .hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.news-post .content {
  margin-top: 26px;
  max-width: 65ch;
  line-height: 1.9;
  color: var(--text);
  opacity: 0.86;
  font-size: 15px;
  white-space: pre-wrap;
}

/* =========================================================================
   GALLERY PAGE GRID (moved from inline styles)
   ========================================================================= */
.gallery-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 40px 0 140px;
}

.gallery-page .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
}

.gallery-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.92);
}

.gallery-page .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* =========================================================================
   AMENITIES STRIP
   ========================================================================= */
.amenities-strip {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-lift);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  cursor: default;
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.amenity-item:hover .amenity-icon {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.amenity-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.amenity-item:hover span {
  color: var(--text);
}

/* =========================================================================
   STATS COUNTER
   ========================================================================= */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(11, 1, 38, 0.07), inset 0 0 22px rgba(192, 90, 53, 0.06);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* =========================================================================
   FLOATING ACTION BUTTONS (WhatsApp + Back to Top)
   ========================================================================= */
.fab-group {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 500;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
}

.fab .fab-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.fab-whatsapp {
  background: radial-gradient(circle at 30% 30%, #4fe48b 0%, #25D366 55%, #13a84d 100%);
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 24px rgba(19, 168, 77, 0.45), 0 2px 8px rgba(0,0,0,0.18);
  animation: waPulse 2.5s ease-in-out infinite;
  line-height: 1;
}

/* Force perfect centering of the fa-whatsapp icon */
.fab-whatsapp i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 26px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

@keyframes waPulse {
  0%   { box-shadow: 0 6px 24px rgba(19, 168, 77, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  60%  { box-shadow: 0 6px 24px rgba(19, 168, 77, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 24px rgba(19, 168, 77, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fab-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-4px) scale(1.04);
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(12px);
}

.fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.fab-top {
  background: var(--bg-lift);
  border: 1px solid var(--border-red);
  color: var(--accent2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-top.visible {
  opacity: 1;
  pointer-events: all;
}

.fab-top:hover {
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.3) !important;
}

/* =========================================================================
   GALLERY LIGHTBOX
   ========================================================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(20px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 28px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-caption {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.lightbox-nav:hover {
  color: var(--accent2);
  border-color: var(--accent2);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials-section {
  background: var(--bg);
}

/* Slider */
.testimonials-slider {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  overflow: auto hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 18px;
  scrollbar-width: none; /* Firefox */
}

.testimonials-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  scroll-snap-align: start;
}

@media (max-width: 992px) {
  .testimonials-track .testimonial-card {
    flex-basis: 100%;
  }
}

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

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  opacity: 0.9;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testimonials-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.testimonial-card {
  background: var(--bg-lift);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-serif);
  font-size: 100px;
  color: var(--accent);
  opacity: 0.07;
  line-height: 1;
}

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

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.testimonial-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-muted);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
}

.testimonial-loc {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* =========================================================================
   FOOTER â€” PREMIUM REDESIGN
   ========================================================================= */
.footer {
  background: linear-gradient(180deg, #faf9f6 0%, #ebe8f2 100%);
  padding: 0 0 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.footer-inner {
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-col .brand {
  font-size: 20px;
}

.footer-brand-col .brand img {
  height: 40px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 260px;
}

.footer-social-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer-social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer-social-row a:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  opacity: 0.6;
}

.footer-bottom-right {
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

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

/* =========================================================================
   MOBILE MENU OVERLAY
   ========================================================================= */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-nav-overlay a {
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.mobile-nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
  color: var(--accent);
}

.mobile-nav-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 28px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.mobile-nav-close:hover {
  color: var(--accent);
}

/* =========================================================================
   SCROLL PROGRESS BAR
   ========================================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2) 0%, var(--accent) 100%);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(192, 90, 53, 0.5);
}

/* =========================================================================
   SECTION SEPARATOR (GOLD RULE)
   ========================================================================= */
.section-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  margin: 24px 0;
}

/* =========================================================================
   INNER PAGE HERO CONSISTENCY
   ========================================================================= */
.page-hero {
  height: 65vh !important;
}

/* =========================================================================
   GALLERY ITEM CAPTION OVERLAY
   ========================================================================= */
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar {
    justify-content: center;
  }
}/* --- Room Image Gallery --- */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.room-gallery .gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}
.room-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}
.room-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Marquee Carousel Enhancements --- */
.marquee-container {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    background: var(--bg);
    display: flex;
    white-space: nowrap;
    position: relative;
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 40s linear infinite;
    padding-left: 20px;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    width: 320px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.marquee-item:hover img {
    transform: scale(1.05);
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

/* --- Amenities Strip Upgrade --- */
.amenities-strip {
    background: transparent;
    border: none;
    padding: 20px 0 60px 0;
}
.amenity-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}
.amenity-item:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 90, 53, 0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 0 0 15px rgba(192, 90, 53, 0.06);
}
.amenity-icon {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}

/* --- Hero Content Redesign & Safe Anchoring --- */
/* Target the main top hero of every page to ensure consistent vertical alignment */
.slider-wrap .hero-content,
#main-content > .hero-full:first-of-type .hero-content {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
    padding-top: 22vh !important; /* Consistently anchors below the header */
    padding-bottom: 80px !important;
}

/* Ensure highly visible CTA buttons on all hero images */
.hero-content .btn.primary {
    background: var(--accent2) !important;
    color: #ffffff !important;
    border-color: var(--accent2) !important;
    text-shadow: none !important;
}
.hero-content .btn.primary::after {
    background: #ffffff !important;
}
.hero-content .btn.primary:hover {
    color: var(--accent2) !important;
    border-color: #ffffff !important;
}

/* --- Amenities Strip Light Mode Polish --- */
.amenity-item {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
    backdrop-filter: blur(15px) !important;
    color: var(--text-dark) !important;
}
.amenity-item:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(192, 90, 53, 0.45) !important;
    box-shadow: 0 10px 30px rgba(11, 1, 38, 0.07), inset 0 0 15px rgba(192, 90, 53, 0.06) !important;
}
.amenity-icon {
    border-color: rgba(0,0,0,0.08) !important;
    background: rgba(255,255,255,0.9) !important;
}

/* =========================================================================
   FOCUS & ACCESSIBILITY — keyboard / reduced motion
   ========================================================================= */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

:focus-visible.slider-dot {
  outline-offset: 4px;
}

.btn:focus-visible,
.menu-btn:focus-visible,
.mobile-nav-close:focus-visible {
  outline-color: var(--accent);
}

/* Skip link + in-page targets (fixed header offset) */
.skip-to-main {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 14px 22px;
  background: var(--accent2);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  border-radius: 0 0 6px 0;
  box-shadow: 0 4px 20px rgba(11, 1, 38, 0.15);
}

.skip-to-main:focus {
  left: 0;
  outline: 2px solid var(--bg-lift);
  outline-offset: 2px;
}

#main-content {
  scroll-margin-top: calc(36px + var(--nav-height) + 16px);
}

@media (max-width: 768px) {
  #main-content {
    scroll-margin-top: calc(50px + var(--nav-height) + 12px);
  }
}

html.reduce-motion body,
html.reduce-motion a,
html.reduce-motion button {
  cursor: auto;
}

html.reduce-motion .cursor-dot,
html.reduce-motion .cursor-ring {
  display: none !important;
}

html.reduce-motion .marquee-track {
  animation-play-state: paused;
}

html.reduce-motion .fade-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.reduce-motion .split-line .split-inner {
  transform: translateY(0) !important;
  transition: none !important;
}

html.reduce-motion .slide {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* =========================================================================
   EMBEDS & MEDIA — consistent depth
   ========================================================================= */
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(11, 1, 38, 0.06),
    0 28px 56px rgba(11, 1, 38, 0.1);
  border: 1px solid var(--border);
}

.map-embed iframe {
  display: block;
  border-radius: 8px;
}

/* Softer editorial frames on feature images */
.img-cine {
  border-radius: 4px;
  box-shadow: 0 24px 56px rgba(11, 1, 38, 0.09);
}
.marquee-container {
    background: var(--bg-lift) !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-container::before {
    background: linear-gradient(to right, var(--bg-lift) 0%, transparent 100%) !important;
}
.marquee-container::after {
    background: linear-gradient(to left, var(--bg-lift) 0%, transparent 100%) !important;
}

/* --- Typography Legibility (indigo-tinted, matches --text hue) --- */
.hero-content h1, .hero-content h2, .hero-content h3, .hero-content p {
    text-shadow:
      0 1px 2px rgba(11, 1, 38, 0.55),
      0 6px 24px rgba(11, 1, 38, 0.42) !important;
}

/* --- Global Typography Polish --- */
p.body-lg, p {
    line-height: 1.8 !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em;
}
.h-lg, .h-xl {
    letter-spacing: -0.02em;
}
.h-sm {
    letter-spacing: 0.2em;
    font-weight: 600;
}


/* --- SHARP VISUAL POLISH OVERRIDES --- */

/* 1. Cinematic Image Hover Zoom */
.img-cine img, .room-teaser img, .news-image img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease !important;
}
.img-cine:hover img, .room-teaser:hover img, .news-card:hover .news-image img {
    transform: scale(1.05) translateY(-5%) !important;
}

/* 2. Premium Button Glowing Shadows */
.btn.primary {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn.primary:hover {
    box-shadow: 0 12px 36px rgba(211, 47, 47, 0.38) !important;
    transform: translateY(-2px) !important;
}
.btn:hover {
    box-shadow: 0 12px 36px rgba(192, 90, 53, 0.22) !important;
    transform: translateY(-2px) !important;
}

/* 3. Enhanced Glassmorphism & Shadow Depth */
.amenity-item, .header {
    box-shadow: 0 8px 32px rgba(11, 1, 38, 0.05) !important;
}
.amenity-item:hover {
    box-shadow: 0 12px 40px rgba(192, 90, 53, 0.18) !important;
    border-color: rgba(192, 90, 53, 0.38) !important;
}

/* Fix legacy red button hover glow to brand terracotta */
.btn.primary:hover {
    box-shadow: 0 12px 36px rgba(142, 61, 34, 0.35) !important;
    transform: translateY(-2px) !important;
}
.btn:hover {
    box-shadow: 0 12px 36px rgba(192, 90, 53, 0.20) !important;
    transform: translateY(-2px) !important;
}

/* =========================================================================
   FINAL POLISH — Global Consistency & Premium Micro-details
   ========================================================================= */

/* Aspect ratio lock on cinematic images (prevents layout shift) */
.img-cine {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.img-cine img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider dots — push up on mobile to clear the FAB button */
@media (max-width: 768px) {
    .slider-controls {
        bottom: 100px;
    }
}

/* Top bar — cleaner, more balanced on mobile */
@media (max-width: 768px) {
    .top-bar-left span:first-child {
        display: none; /* Hide address, keep phone only */
    }
}

/* Header — sharper scrolled state */
.header.scrolled {
    box-shadow: 0 4px 24px rgba(11, 1, 38, 0.08);
    border-bottom: 1px solid rgba(192, 90, 53, 0.12);
}

/* Footer bottom bar — consistent vertical rhythm */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

/* Room teaser — consistent image aspect ratio */
.room-teaser .img-cine {
    aspect-ratio: 5 / 4;
}

/* Smooth link transitions across the site */
a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Footer links with animated arrow */
.footer-col a::before {
    content: '→';
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--accent);
}
.footer-col a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.footer-col a:hover {
    padding-left: 18px;
}

/* Mobile menu stagger delays */
.mobile-nav-overlay a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav-overlay a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-overlay a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay a:nth-child(6) { transition-delay: 0.30s; }

/* Section rule (gold divider) — slightly longer */
.section-rule {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent2), var(--accent), transparent);
    margin: 28px 0;
    border-radius: 2px;
}

/* Form submit button loading state */
.btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

/* Image quality on high-DPI screens */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Responsive section spacing tokens */
@media (max-width: 1024px) {
    :root { --section-pad: 100px; }
}
@media (max-width: 768px) {
    :root { --section-pad: 72px; }
}

/* Gallery page image height on mobile */
@media (max-width: 640px) {
    .gallery-page .gallery-item { height: 220px; }
}

/* Smooth transition on all interactive elements */
button, input, select, textarea, a {
    -webkit-tap-highlight-color: transparent;
}

/* Print styles — hide decorative elements */
@media print {
    .fab-group, .scroll-progress, .mobile-nav-overlay, .top-bar,
    .slider-controls, .video-background, .hero-overlay { display: none !important; }
    body { font-size: 12pt; color: #000; }
}
