/* ============================================
   AURELIA GRAND — Luxury Hotel Website Styles
   ============================================ */

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

/* ---------- Custom Properties ---------- */
:root {
  /* Colors – warm luxury palette */
  --clr-bg-dark: #0a0a0c;
  --clr-bg-section: #111114;
  --clr-surface: #1a1a1f;
  --clr-surface-light: #242429;
  --clr-gold: #c8a45e;
  --clr-gold-light: #e3c67a;
  --clr-gold-dark: #9a7b3a;
  --clr-cream: #f5f0e8;
  --clr-cream-soft: #ede5d8;
  --clr-text: #f0ece4;
  --clr-text-muted: #9e9a92;
  --clr-text-subtle: #6b6760;
  --clr-accent: #b08d57;
  --clr-white: #ffffff;
  --clr-overlay: rgba(10, 10, 12, 0.65);
  --clr-glass: rgba(255, 255, 255, 0.06);
  --clr-glass-border: rgba(200, 164, 94, 0.18);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
  --ff-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Sizing */
  --max-width: 1280px;
  --nav-height: 80px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.25s;
  --duration-normal: 0.4s;
  --duration-slow: 0.7s;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg-dark);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--clr-gold);
  vertical-align: middle;
  margin-right: 12px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--clr-cream);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--ff-accent);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth),
    backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(200, 164, 94, 0.12);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-gold);
  font-weight: 600;
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--clr-cream);
  letter-spacing: 0.04em;
}

.nav-logo-text span {
  color: var(--clr-gold);
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
  color: var(--clr-gold-light);
}

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

.nav-cta {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--clr-gold) !important;
  color: var(--clr-gold) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-smooth) !important;
}

.nav-cta:hover {
  background: var(--clr-gold) !important;
  color: var(--clr-bg-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Drawer Elements — hidden on desktop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              visibility var(--duration-normal);
  z-index: 998;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease-smooth);
}

.hamburger:hover {
  background: rgba(200, 164, 94, 0.08);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--clr-gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--clr-gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

@keyframes heroZoom {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.4) 0%,
    rgba(10, 10, 12, 0.2) 40%,
    rgba(10, 10, 12, 0.6) 80%,
    rgba(10, 10, 12, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  border-radius: 100px;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(12px);
  animation: fadeInDown 1s var(--ease-out) 0.3s both;
}

.hero-badge .star {
  color: var(--clr-gold);
  font-size: 0.75rem;
}

.hero-badge span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-gold-light);
}

.hero-desc {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(240, 236, 228, 0.7);
  max-width: 620px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  font-weight: 300;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeInUp 1s var(--ease-out) 0.9s both;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg-dark);
  box-shadow: 0 4px 25px rgba(200, 164, 94, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  box-shadow: 0 8px 40px rgba(200, 164, 94, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-cream);
  border: 1px solid rgba(240, 236, 228, 0.25);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold-light);
  background: rgba(200, 164, 94, 0.08);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s var(--ease-out) 1.2s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--clr-surface);
  border-top: 1px solid rgba(200, 164, 94, 0.1);
  border-bottom: 1px solid rgba(200, 164, 94, 0.1);
  padding: var(--space-xl) 0;
}

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

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold-dark), transparent);
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* ---------- About / Welcome Section ---------- */
.about {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text .section-subtitle {
  margin-bottom: var(--space-lg);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-gold);
}

.about-feature h4 {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-cream);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ---------- Rooms Section ---------- */
.rooms {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-section);
}

.rooms-header {
  margin-bottom: var(--space-2xl);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.room-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--clr-glass-border);
}

.room-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-glass-border);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}

.room-card-body {
  padding: var(--space-lg);
}

.room-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--clr-cream);
  margin-bottom: var(--space-xs);
}

.room-card-body .room-size {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--clr-glass);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--clr-text-muted);
}

.room-amenity svg {
  width: 14px;
  height: 14px;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.room-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-gold);
}

.room-price span {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--clr-text-muted);
}

.room-book-btn {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.room-book-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
}

/* ---------- Experience / Amenities Section ---------- */
.experiences {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-dark);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.exp-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.exp-card:hover img {
  transform: scale(1.1);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 10, 12, 0.85) 100%
  );
  transition: background var(--duration-normal) var(--ease-smooth);
}

.exp-card:hover .exp-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.2) 0%,
    rgba(10, 10, 12, 0.9) 100%
  );
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  transform: translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.exp-card:hover .exp-card-content {
  transform: translateY(0);
}

.exp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.exp-card-content h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.exp-card-content p {
  font-size: 0.85rem;
  color: rgba(240, 236, 228, 0.65);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out) 0.1s;
}

.exp-card:hover .exp-card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Testimonials Section ---------- */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-section);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 60px;
  right: 10%;
  font-family: var(--ff-display);
  font-size: 20rem;
  color: rgba(200, 164, 94, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonial-slider {
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 var(--space-lg);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-gold);
}

.testimonial-text {
  font-family: var(--ff-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-cream-soft);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-author strong {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-cream);
  letter-spacing: 0.06em;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-text-subtle);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.testimonial-dot.active {
  background: var(--clr-gold);
  width: 28px;
  border-radius: 100px;
}

/* ---------- Gallery Section ---------- */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

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

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal) var(--ease-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10, 10, 12, 0.3);
}

.gallery-item-overlay span {
  font-size: 1.6rem;
  color: var(--clr-white);
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--duration-fast) var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* ---------- CTA / Booking Section ---------- */
.cta-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-section);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, var(--clr-surface), var(--clr-surface-light));
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(200, 164, 94, 0.06) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-inner .section-title {
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.cta-inner .section-subtitle {
  margin: 0 auto var(--space-xl);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.cta-feature svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
}

/* ---------- Contact Section ---------- */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-gold);
}

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-cream);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact-form {
  background: var(--clr-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-surface-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--clr-cream);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  transition: border-color var(--duration-fast) var(--ease-smooth);
  outline: none;
  color-scheme: dark;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239e9a92' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid rgba(200, 164, 94, 0.08);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-md);
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-text-muted);
  transition: all var(--duration-fast) var(--ease-smooth);
}

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

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--duration-fast) var(--ease-smooth);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--clr-text-subtle);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--clr-text-subtle);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-bottom-links a:hover {
  color: var(--clr-gold-light);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

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

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  color: var(--clr-cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.lightbox-close:hover {
  background: rgba(200, 164, 94, 0.2);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(200, 164, 94, 0.3);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200, 164, 94, 0.4);
}

/* ---------- Responsive System ---------- */

/* Laptop & Medium Desktop (<= 1024px) */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-lg);
  }
}

/* Tablet & Intermediate Viewports (<= 900px) */
@media (max-width: 900px) {
  :root {
    --nav-height: 72px;
  }

  /* Mobile Navigation Drawer */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: rgba(14, 14, 18, 0.98);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
    transition: right 0.35s var(--ease-out);
    border-left: 1px solid var(--clr-glass-border);
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--clr-glass-border);
    background: rgba(10, 10, 12, 0.5);
  }

  .nav-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    color: var(--clr-cream);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
  }

  .nav-drawer-close:hover {
    background: rgba(200, 164, 94, 0.2);
    color: var(--clr-gold);
  }

  .nav-links li:not(.nav-drawer-header) {
    width: 100%;
  }

  .nav-links li:not(.nav-drawer-header):not(.nav-cta-item) a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 26px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--clr-cream);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--duration-fast) var(--ease-smooth);
  }

  .nav-links li:not(.nav-drawer-header):not(.nav-cta-item) a::after {
    content: '→';
    position: static;
    width: auto;
    height: auto;
    background: none;
    font-size: 0.9rem;
    color: var(--clr-gold);
    opacity: 0.4;
    transition: transform var(--duration-fast) var(--ease-smooth), opacity var(--duration-fast) var(--ease-smooth);
  }

  .nav-links li:not(.nav-drawer-header):not(.nav-cta-item) a:hover {
    background: rgba(200, 164, 94, 0.08);
    color: var(--clr-gold-light);
    padding-left: 32px;
  }

  .nav-links li:not(.nav-drawer-header):not(.nav-cta-item) a:hover::after {
    opacity: 1;
    transform: translateX(4px);
  }

  .nav-cta-item {
    padding: 24px 24px 32px;
    margin-top: auto;
  }

  .nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px !important;
    text-align: center;
    box-shadow: 0 4px 20px rgba(200, 164, 94, 0.2);
  }

  /* Grid adaptations */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: var(--space-xl) auto 0;
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* Tablet Portrait & Large Smartphones (<= 768px) */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.75rem;
    --space-2xl: 3.75rem;
    --space-3xl: 4.5rem;
  }

  .container {
    padding: 0 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  /* Prevent animation overflow on mobile */
  .reveal,
  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }

  /* Hero Section */
  .hero {
    min-height: 540px;
    height: 100svh;
    height: 100dvh;
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 24px;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7.5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-scroll {
    display: none;
  }

  /* Stats Bar — 2x2 luxury layout */
  .stats-bar {
    padding: var(--space-lg) 0;
  }

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

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(200, 164, 94, 0.08);
  }

  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: block;
  }

  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none !important;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* About Section */
  .about-image img {
    height: clamp(240px, 48vw, 360px);
  }

  .about-image-accent {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Rooms Section */
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .room-card-image {
    height: 230px;
  }

  .room-card-body {
    padding: 1.5rem;
  }

  .room-card-footer {
    gap: 12px;
    flex-wrap: wrap;
  }

  /* Experiences Section — Touch Friendly */
  .exp-card {
    height: 320px;
  }

  .exp-card-overlay {
    background: linear-gradient(
      180deg,
      transparent 15%,
      rgba(10, 10, 12, 0.4) 45%,
      rgba(10, 10, 12, 0.92) 88%
    );
  }

  .exp-card-content {
    transform: translateY(0);
    padding: 1.5rem;
  }

  .exp-card-content p {
    opacity: 0.9;
    transform: translateY(0);
  }

  /* Testimonials Section */
  .testimonials::before {
    font-size: 8rem;
    top: 15px;
    right: 5%;
    opacity: 0.025;
  }

  .testimonial-slider {
    margin-top: var(--space-xl);
  }

  .testimonial-slide {
    padding: 0 0.5rem;
  }

  .testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }

  .testimonial-dots {
    gap: 12px;
    margin-top: var(--space-lg);
  }

  .testimonial-dot {
    position: relative;
    padding: 6px;
    background-clip: content-box;
    box-sizing: content-box;
  }

  /* Gallery Section */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 8px;
    margin-top: var(--space-xl);
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .gallery-item-overlay {
    background: rgba(10, 10, 12, 0.15);
  }

  .gallery-item-overlay span {
    opacity: 0.9;
    transform: scale(0.85);
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(6px);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-gold);
  }

  /* CTA / Booking Section */
  .cta-inner {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .cta-inner .section-title {
    font-size: clamp(1.65rem, 5.5vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }

  .cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 0.75rem;
    margin-bottom: var(--space-lg);
  }

  .cta-feature {
    justify-content: flex-start;
    font-size: 0.78rem;
    gap: 8px;
  }

  .cta-feature svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .cta-inner .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Contact Section & Form */
  .contact-form {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents iOS Safari zoom bug */
    padding: 13px 15px;
  }

  .form-submit {
    padding: 15px 24px;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    margin-bottom: var(--space-xl);
  }

  .footer-brand {
    grid-column: span 2;
  }

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

  .footer-social-link {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: var(--space-md);
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 1.25rem;
  }

  /* Lightbox & Back-to-Top */
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 80vh;
  }

  .back-to-top {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Compact Smartphones (<= 480px) */
@media (max-width: 480px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.35rem;
    --space-xl: 2rem;
    --space-2xl: 2.75rem;
    --space-3xl: 3.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav-logo-text {
    font-size: 1.15rem;
  }

  .nav-logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
  }

  .hero-badge {
    padding: 6px 14px;
  }

  .hero-badge span {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.5rem;
  }

  .stat-number {
    font-size: 1.85rem;
  }

  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cta-inner {
    padding: 2rem 1rem;
  }

  .contact-form {
    padding: 1.25rem 1rem;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

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

  .footer-brand {
    grid-column: span 1;
  }
}

/* Ultra-Compact Screens (<= 360px) */
@media (max-width: 360px) {
  .room-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .room-book-btn {
    width: 100%;
    text-align: center;
  }

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

  .stat-item::after {
    display: none !important;
  }

  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(200, 164, 94, 0.08);
    padding-bottom: 0.75rem;
  }
}

/* Touch Devices Ergonomics */
@media (hover: none) {
  .exp-card-overlay {
    background: linear-gradient(
      180deg,
      transparent 15%,
      rgba(10, 10, 12, 0.4) 45%,
      rgba(10, 10, 12, 0.92) 88%
    );
  }

  .exp-card-content {
    transform: translateY(0);
  }

  .exp-card-content p {
    opacity: 0.9;
    transform: translateY(0);
  }

  .gallery-item-overlay {
    background: rgba(10, 10, 12, 0.15);
  }

  .gallery-item-overlay span {
    opacity: 0.85;
    transform: scale(0.85);
  }
}
