@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0b0b0c;
  --bg-secondary: #111113;
  --bg-tertiary: #1a1a1d;
  --red-deep: #8C1C1C;
  --red-bright: #dc2626;
  --red-glow: rgba(220, 38, 38, 0.3);
  --red-subtle: rgba(140, 28, 28, 0.15);
  --white: #ffffff;
  --soft-white: #f5f5f5;
  --gray-100: #e5e5e5;
  --gray-200: #d4d4d4;
  --gray-300: #a3a3a3;
  --gray-400: #737373;
  --gray-500: #525252;
  --gray-600: #404040;
  --gray-700: #262626;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(255, 255, 255, 0.25);
  --blur: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow-red: 0 8px 32px rgba(140, 28, 28, 0.2);
  --shadow-red-lg: 0 16px 48px rgba(140, 28, 28, 0.3);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--soft-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ========================
   SCROLL PROGRESS BAR
======================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright), var(--white));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ========================
   CURSOR GLOW
======================== */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 28, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover #cursor-glow {
  opacity: 1;
}

/* ========================
   NAVBAR
======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-bottom: 1px solid var(--glass-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101;
}

.navbar-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(140, 28, 28, 0.4);
}

.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-logo .logo-text span {
  color: var(--red-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  margin-left: 8px;
}

.btn-nav {
  background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
  transition: var(--transition);
  display: inline-block;
}

.btn-nav:hover {
  box-shadow: 0 6px 28px rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(11, 11, 12, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 36px);
  color: var(--gray-300);
  font-weight: 600;
  transition: var(--transition);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu a:hover {
  color: var(--red-bright);
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.btn-outline:hover {
  background: var(--red-deep);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--bg-primary);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--soft-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 16px;
}

/* ========================
   SECTION STYLES
======================== */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red-deep);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================
   GLASS CARDS
======================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

/* ========================
   HERO SECTION
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg,
      rgba(11, 11, 12, 0.5) 0%,
      rgba(11, 11, 12, 0.3) 40%,
      rgba(11, 11, 12, 0.6) 70%,
      rgba(11, 11, 12, 0.95) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 clamp(16px, 4vw, 40px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(140, 28, 28, 0.2);
  border: 1px solid rgba(140, 28, 28, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--red-bright), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--red-bright), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================
   ROOM CARDS
======================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  z-index: 2;
}

.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 28, 28, 0.4);
  box-shadow: var(--shadow-red);
}

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

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

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

.room-card-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.room-card-price span {
  color: var(--gray-400);
  font-weight: 400;
  font-size: 12px;
}

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.room-card-body {
  padding: 24px;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.room-card-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 11px;
  color: var(--gray-300);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================
   AMENITIES
======================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.amenity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 28, 28, 0.3);
  box-shadow: var(--shadow-red);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(140, 28, 28, 0.2), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(140, 28, 28, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--red-deep), var(--red-bright));
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.amenity-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ========================
   ABOUT SECTION
======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.6), transparent);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--red-bright);
}

.about-image-badge .label {
  font-size: 12px;
  color: var(--gray-400);
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text .section-label::before {
  display: none;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
}

.stat-item .stat-label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    aspect-ratio: 16/10;
  }
  .about-text .section-label {
    justify-content: center;
  }
  .about-text .section-title {
    text-align: center;
  }
  .about-text p {
    text-align: center;
  }
}

/* ========================
   GALLERY
======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

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

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

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

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

.gallery-item-overlay span {
  font-size: 32px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
}

/* Gallery Page Masonry */
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}

.gallery-masonry .gallery-item {
  aspect-ratio: auto;
  margin-bottom: 16px;
  break-inside: avoid;
}

@media (max-width: 1024px) {
  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* Gallery Tabs */
.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab:hover,
.gallery-tab.active {
  color: var(--white);
  border-color: var(--red-deep);
  background: rgba(140, 28, 28, 0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.95);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(20px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20001;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--red-deep);
  border-color: var(--red-bright);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--red-deep);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 clamp(16px, 3vw, 40px);
}

.testimonial-inner {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-inner::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--red-deep);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 32px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: #fbbf24;
  font-size: 16px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red-deep);
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-info p {
  font-size: 12px;
  color: var(--gray-400);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-btn:hover {
  background: var(--red-deep);
  border-color: var(--red-bright);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-dot.active {
  background: var(--red-bright);
  width: 24px;
  border-radius: 4px;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
}

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

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140, 28, 28, 0.85), rgba(11, 11, 12, 0.9));
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-text {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding-top: clamp(48px, 8vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red-deep);
  border-color: var(--red-bright);
  color: var(--white);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--red-bright);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom-links a:hover {
  color: var(--red-bright);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* ========================
   PAGE HERO (INNER PAGES)
======================== */
.page-hero {
  position: relative;
  padding: clamp(140px, 20vw, 200px) 0 clamp(60px, 10vw, 100px);
  text-align: center;
  overflow: hidden;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 11, 12, 0.7) 0%,
    rgba(11, 11, 12, 0.85) 60%,
    rgba(11, 11, 12, 1) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray-400);
}

.page-hero .breadcrumb a {
  color: var(--gray-400);
}

.page-hero .breadcrumb a:hover {
  color: var(--red-bright);
}

.page-hero .breadcrumb span.sep {
  color: var(--gray-600);
}

.page-hero .breadcrumb span.current {
  color: var(--red-bright);
}

/* ========================
   FORM STYLES
======================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red-deep);
  background: rgba(140, 28, 28, 0.08);
  box-shadow: 0 0 0 3px rgba(140, 28, 28, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-500);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: var(--bg-primary);
  color: var(--white);
}

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

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

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

/* ========================
   BOOKING FORM
======================== */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.booking-summary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 120px;
}

.booking-summary h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 1024px) {
  .booking-section {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    position: static;
  }
}

/* ========================
   BLOG CARDS
======================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 28, 28, 0.3);
  box-shadow: var(--shadow-red);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

.blog-card-meta .category {
  color: var(--red-bright);
  font-weight: 600;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-card-link:hover {
  gap: 12px;
}

/* ========================
   DINING
======================== */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.dining-grid.reverse {
  direction: rtl;
}

.dining-grid.reverse > * {
  direction: ltr;
}

.dining-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item-name {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 4px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--red-bright);
  white-space: nowrap;
  margin-left: 16px;
}

@media (max-width: 768px) {
  .dining-grid,
  .dining-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ========================
   CONTACT
======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(140, 28, 28, 0.3);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(140, 28, 28, 0.2), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(140, 28, 28, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  margin-top: 24px;
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

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

/* ========================
   FAQ
======================== */
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(140, 28, 28, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--red-bright);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ========================
   LEGAL PAGES
======================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.9;
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--red-deep);
  border-radius: 50%;
}

.legal-content strong {
  color: var(--white);
}

.legal-content a {
  color: var(--red-bright);
}

.legal-content a:hover {
  text-decoration: underline;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================
   DECORATIVE ELEMENTS
======================== */
.bg-gradient-red {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 28, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-top-right {
  top: -200px;
  right: -200px;
}

.bg-glow-bottom-left {
  bottom: -200px;
  left: -200px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
  margin: 0 auto;
  border-radius: 2px;
}

/* ========================
   RESPONSIVE UTILITIES
======================== */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* ========================
   ROOM DETAIL STYLES
======================== */
.room-detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.room-detail-gallery .main-image {
  aspect-ratio: 16/10;
}

.room-detail-gallery .side-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.room-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .room-detail-gallery {
    grid-template-columns: 1fr;
  }
  .room-detail-gallery .side-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

/* ========================
   CHEF CARD
======================== */
.chef-card {
  display: flex;
  gap: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  align-items: center;
}

.chef-card-image {
  width: 200px;
  min-width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
}

.chef-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.chef-card .chef-role {
  font-size: 13px;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 16px;
}

.chef-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .chef-card {
    flex-direction: column;
    text-align: center;
  }
  .chef-card-image {
    width: 150px;
    min-width: 150px;
    height: 150px;
    margin: 0 auto;
  }
}

/* ========================
   NOTIFICATION / TOAST
======================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-dark);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-left: 3px solid #22c55e;
}

.toast.error {
  border-left: 3px solid var(--red-bright);
}

.toast-message {
  font-size: 14px;
  color: var(--white);
}

/* ========================
   COOKIE BANNER
======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 20px;
  z-index: 19999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--gray-300);
  flex: 1;
  min-width: 250px;
}

.cookie-banner p a {
  color: var(--red-bright);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}