/* ========================================
   RoseLoe Motel - Premium Hospitality Theme
   3D Animations | Warm Comfort | Enterprise Polish
   ======================================== */

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

:root {
  --color-primary: #2d5a3d;
  --color-primary-light: #3d7a52;
  --color-primary-dark: #1e3d2a;
  --color-accent: #c8956c;
  --color-accent-light: #ddb892;
  --color-accent-dark: #a67548;
  --color-cream: #faf7f2;
  --color-warm: #f5efe6;
  --color-warm-deep: #ebe3d5;
  --color-dark: #1a1a1a;
  --color-darker: #111111;
  --color-text: #3a3a3a;
  --color-text-light: #6b6b6b;
  --color-white: #ffffff;
  --color-border: #e8e0d4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 70px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(200,149,108,0.3);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --perspective: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* === PRELOADER === */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  margin-bottom: 24px;
}

.pl-rose {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  animation: preloaderFadeIn 0.8s 0.2s both;
}

.pl-loe {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  animation: preloaderFadeIn 0.8s 0.4s both;
}

.preloader-line {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 16px;
  border-radius: 2px;
  overflow: hidden;
  animation: preloaderFadeIn 0.6s 0.6s both;
}

.preloader-line::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  animation: preloaderSlide 1.2s 0.6s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: preloaderFadeIn 0.8s 0.8s both;
}

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

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(300%); }
  100% { transform: translateX(-100%); }
}

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,108,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  display: none;
}

@media (hover: hover) {
  .cursor-glow { display: block; }
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.center {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45,90,61,0.35);
}

.btn-glow {
  box-shadow: 0 4px 20px rgba(45,90,61,0.25);
}

.btn-glow:hover {
  box-shadow: 0 12px 40px rgba(45,90,61,0.4);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.25);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-border);
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-3px);
}

.btn-sm { padding: 11px 26px; font-size: 0.84rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* --- 3D Image Shine Effect --- */
.img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.2) 50%,
    rgba(255,255,255,0.05) 60%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.tilt-card:hover .img-shine {
  opacity: 1;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.navbar.scrolled .nav-links a { color: var(--color-text); }
.navbar.scrolled .logo-rose { color: var(--color-dark); }
.navbar.scrolled .logo-loe { color: var(--color-accent-dark); }
.navbar.scrolled .logo-sub { color: var(--color-text-light); }
.navbar.scrolled .nav-toggle span { background: var(--color-dark); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.logo-rose {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition);
}

.logo-loe {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent-light);
  transition: var(--transition);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-left: 10px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: var(--transition);
}

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

.nav-cta {
  padding: 10px 26px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,149,108,0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: var(--perspective);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 1; transform: translateY(80vh) translateX(10px) scale(1); }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(-20px) scale(0.5); opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,0.45) 0%,
    rgba(30,61,42,0.25) 40%,
    rgba(26,26,26,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 860px;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
}

.title-word {
  display: inline-block;
  margin: 0 6px;
}

.title-word.accent {
  color: var(--color-accent-light);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px) rotateX(15deg);
  animation: revealUp 0.8s var(--delay, 0s) forwards;
  transform-origin: bottom center;
}

.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: revealFade 1s var(--delay, 0s) forwards;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes revealFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Slide counter */
.hero-slide-counter {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
}

.current-slide {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  min-width: 24px;
}

.slide-divider {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* === SCROLL REVEAL === */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--reveal-delay, 0s);
}

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

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-images {
  position: relative;
  perspective: var(--perspective);
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform-style: preserve-3d;
}

.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  z-index: 3;
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: -20px;
  right: 60px;
  z-index: 4;
}

.rotating-text-badge {
  width: 120px;
  height: 120px;
  position: relative;
}

.rotating-text-badge svg {
  width: 100%;
  height: 100%;
  animation: rotateBadge 20s linear infinite;
}

.rotating-text-badge text {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--color-primary);
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rotateBadge {
  to { transform: rotate(360deg); }
}

.about-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.divider-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--color-border);
}

.about-text {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-icon-3d {
  perspective: 400px;
}

.icon-face {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-warm), var(--color-warm-deep));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  transform-style: preserve-3d;
}

.about-feature:hover .icon-face {
  transform: rotateY(15deg) rotateX(-5deg) scale(1.05);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  box-shadow: 0 8px 25px rgba(45,90,61,0.3);
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.about-feature span {
  font-size: 0.83rem;
  color: var(--color-text-light);
}

/* === STATS BANNER === */
.stats-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,61,42,0.92), rgba(26,26,26,0.88));
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  color: white;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--color-accent-light);
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 400;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.stat-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* === STORY === */
.story {
  background: var(--color-cream);
  overflow: hidden;
}

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

.story-visual {
  position: relative;
  height: 560px;
  perspective: var(--perspective);
}

.story-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  transform-style: preserve-3d;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-1 {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-3deg);
}

.story-photo-2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: rotate(2deg);
}

.story-photo-3 {
  width: 35%;
  height: 35%;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-1deg);
  z-index: 3;
  border: 5px solid white;
}

.story-quote {
  margin: 28px 0;
  padding-left: 24px;
  border-left: 3px solid var(--color-accent);
}

.story-quote blockquote {
  font-family: var(--font-elegant);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-primary-dark);
}

.story-content p {
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
}

.signature-line {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.story-signature span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* === ROOMS === */
.rooms {
  background: var(--color-white);
}

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

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  transform-style: preserve-3d;
  border: 1px solid var(--color-border);
}

.room-card:hover {
  box-shadow: var(--shadow-xl);
}

.room-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-lg);
}

.room-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.room-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  z-index: 2;
}

.room-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.room-badge.accent {
  background: var(--color-accent);
  color: white;
}

.room-info {
  padding: 30px;
}

.room-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.room-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-dark);
}

.room-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
}

.room-info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.65;
}

.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text);
  padding: 5px 12px;
  background: var(--color-warm);
  border-radius: 100px;
  transition: var(--transition);
}

.room-features li:hover {
  background: var(--color-primary);
  color: white;
}

.room-features li:hover svg { color: white; }

.room-features svg {
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

/* === AMENITIES === */
.amenities {
  background: var(--color-cream);
}

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

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.amenity-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.amenity-item:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon-3d {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-warm), var(--color-warm-deep));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-spring);
  transform-style: preserve-3d;
  perspective: 400px;
}

.amenity-item:hover .amenity-icon-3d {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
}

.amenity-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.amenity-item p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.amenities-visual {
  position: relative;
  perspective: var(--perspective);
}

.amenities-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  position: relative;
}

.amenities-img-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.amenities-img-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  transform-style: preserve-3d;
}

.amenities-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: -1;
}

.deco-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  animation: decoFloat 6s ease-in-out infinite;
}

.deco-circle.small {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 60px;
  right: -40px;
  animation-delay: -3s;
}

@keyframes decoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* === VIDEO SECTION === */
.video-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,61,42,0.92), rgba(26,26,26,0.85));
}

.video-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.play-ring {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-ring-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.video-play-btn:hover .play-ring {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: scale(1.1);
}

/* === EXPLORE === */
.explore {
  background: var(--color-white);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: var(--perspective);
}

.explore-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  transform-style: preserve-3d;
  border: 1px solid var(--color-border);
}

.explore-card:hover {
  box-shadow: var(--shadow-lg);
}

.explore-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.explore-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.explore-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  z-index: 2;
}

.explore-info {
  padding: 26px;
}

.explore-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.explore-info p {
  font-size: 0.86rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.explore-cta {
  text-align: center;
  margin-top: 52px;
}

/* === GALLERY === */
.gallery {
  padding-bottom: 120px;
  background: var(--color-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 8px;
  padding: 0 28px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,61,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay svg {
  transform: scale(0.7);
  opacity: 0;
  transition: var(--transition-spring);
}

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

.gallery-item:hover .gallery-overlay {
  background: rgba(30,61,42,0.4);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
}

/* === REVIEWS === */
.reviews {
  background: var(--color-warm);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  perspective: var(--perspective);
}

.review-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  transform-style: preserve-3d;
  position: relative;
  border: 1px solid var(--color-border);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
}

.review-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-light);
  opacity: 0.5;
  position: absolute;
  top: 20px;
  right: 28px;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.review-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-elegant);
  font-size: 1.08rem;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.review-author {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.review-source {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,61,42,0.9), rgba(26,26,26,0.85));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--color-warm);
  transition: var(--transition);
  transform-style: preserve-3d;
}

.contact-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--color-primary);
  color: white;
}

.contact-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 0.83rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-visual {
  perspective: var(--perspective);
}

.contact-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform-style: preserve-3d;
}

.contact-map-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: white;
  display: flex;
  align-items: center;
  gap: 14px;
}

.map-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pinBounce 2s infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.map-label strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.map-label span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* === FOOTER === */
.footer {
  background: var(--color-darker);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  color: var(--color-white);
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-brand .logo-rose { color: var(--color-white); }
.footer-brand .logo-loe { color: var(--color-accent); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.3); }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  width: fit-content;
  color: var(--color-accent-light);
}

.footer-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-links h4,
.footer-booking h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 22px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: var(--transition);
}

.footer-links a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  margin-right: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-light);
}

.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer-booking p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  line-height: 1.65;
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* === PARALLAX BG === */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid, .amenities-layout, .story-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rooms-grid, .explore-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-visual { height: 420px; }
  .amenities-visual { order: -1; }
  .amenities-img-wrapper img { height: 400px; }
}

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

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; color: var(--color-dark) !important; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--color-dark);
  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--color-dark);
  }

  .rooms-grid, .explore-grid, .reviews-grid, .stats-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }

  .hero-slide-counter { display: none; }
  .about-img-main img { height: 340px; }
  .about-img-float { width: 160px; height: 160px; right: 10px; bottom: -20px; }
  .about-img-badge { display: none; }
  .story-visual { height: 360px; }
  .amenities-img-wrapper img { height: 320px; }

  .hero-scroll-indicator { display: none; }
  .cursor-glow { display: none !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .stat-number { font-size: 2.4rem; }
}