/* ============================================
   ONE7CAFE — Premium Light Theme
   Enhanced with Premium Effects & Animations
   ============================================ */

:root {
  /* Premium Coffee Tones */
  --coffee-cream: #f7f5f1;
  --coffee-beige: #ede8e0;
  --coffee-latte: #e5ddd4;
  --coffee-mocha: #d4c4b0;
  --coffee-brown: #8b7355;
  --coffee-dark: #6b5d4f;
  
  /* Soft Neutrals */
  --bg-base: #faf9f7;
  --bg-light: #fefcf9;
  --bg-warm: #f7f4f0;
  --bg-cream: #f3efe8;
  --bg-beige: #ede8e0;
  --bg-card: #ffffff;
  --bg-pearl: #f9f7f4;
  
  /* Section Colors */
  --cafe-bg: #faf7f2;
  --cafe-accent: #c9a86c;
  --lounge-bg: #f5f2ee;
  --lounge-accent: #b8860b;
  --library-bg: #faf8f4;
  --library-accent: #8b7355;
  
  /* Typography */
  --text-dark: #2c2418;
  --text-muted: #6b6560;
  --text-light: #9a938c;
  --hero-text: #f5f2ee;
  
  /* Accents */
  --accent-gold: #b8860b;
  --accent-gold-soft: #c9a86c;
  --accent-warm: #8b7355;
  
  /* Borders */
  --border: rgba(44, 36, 24, 0.08);
  --overlay: rgba(26, 24, 22, 0.45);
  
  /* Typography */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Tajawal", "Cormorant Garamond", system-ui, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-calm: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.5s;
  --duration-slow: 1s;
  --duration-fast: 0.3s;
  
  /* Layout */
  --header-height: 6rem;
  --dubai-banner-height: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-base);
  overflow-x: hidden;
  position: relative;
}

/* Premium Loading Animation */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(184, 134, 11, 0.3); }
  50% { box-shadow: 0 0 40px rgba(184, 134, 11, 0.6); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes rotateGlow {
  0% { transform: rotate(0deg) scale(1); filter: brightness(1); }
  50% { transform: rotate(180deg) scale(1.1); filter: brightness(1.2); }
  100% { transform: rotate(360deg) scale(1); filter: brightness(1); }
}

/* Typewriter: smooth transitions + perfect text alignment */
.typewriter-char {
  display: inline;
  opacity: 0;
  transition: opacity 0.32s var(--ease-out);
  vertical-align: baseline;
}

.typewriter-char.visible {
  opacity: 1;
}

.typewriter-word {
  display: inline;
  opacity: 0;
  transition: opacity 0.38s var(--ease-out);
  vertical-align: baseline;
}

.typewriter-word.visible {
  opacity: 1;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  min-width: 2px;
  height: 0.85em;
  margin-left: 2px;
  vertical-align: baseline;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s var(--ease-out);
}

.typewriter-cursor.visible {
  opacity: 1;
  animation: typewriter-cursor-blink 0.85s var(--ease-out) infinite;
}

.typewriter-cursor.done {
  opacity: 0;
  transition: opacity 0.22s var(--ease-out);
}

@keyframes typewriter-cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.35; }
}

/* Main */
main {
  padding-top: calc(var(--dubai-banner-height) + var(--header-height));
  position: relative;
  z-index: 1;
}

/* Dubai Banner */
.dubai-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  height: var(--dubai-banner-height);
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a68b5c 0%, #c9a86c 35%, #d4b896 50%, #c9a86c 65%, #a68b5c 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.dubai-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.dubai-banner-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

/* Header */
.header {
  position: fixed;
  top: var(--dubai-banner-height);
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-luxury);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
}

body.banner-hidden .header {
  top: 0;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 50%;
  padding: 0.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s var(--ease-out);
  animation: pulse 3s ease-in-out infinite;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
  animation: rotateGlow 2s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  font-variant-numeric: lining-nums;
  transition: color 0.3s var(--ease-out);
}

.logo:hover .logo-text {
  color: var(--accent-gold);
}

.logo-seven {
  display: inline;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  line-height: 1;
  vertical-align: -0.04em;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-soft));
  transition: width 0.4s var(--ease-out);
}

.nav-menu a:hover {
  color: var(--accent-gold);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-xs);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s var(--ease-out);
}

/* Hero Section – starts below navbar, full-size video fully visible */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}

.hero-slide--active {
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 24, 22, 0.5) 0%, rgba(26, 24, 22, 0.3) 100%);
}

.hero-slide-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  animation: fadeInUp 1.2s ease-out;
}

.hero-slide-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold-soft);
  margin-bottom: var(--space-sm);
  animation: slideInRight 1s ease-out 0.3s both;
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--hero-text);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: scaleIn 1s ease-out 0.5s both;
  position: relative;
}

.hero-slide-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -60px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold));
  animation: slideInRight 1s ease-out 0.7s both;
}

.hero-slide-title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  animation: slideInRight 1s ease-out 0.7s both;
}

.hero-slide-desc {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(245, 242, 238, 0.95);
  max-width: 32rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-slide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out);
}

.hero-cta:hover::before {
  width: 400px;
  height: 400px;
}

.hero-cta--primary {
  background: var(--accent-gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.hero-cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.6);
  animation: glow 2s ease-in-out infinite;
}

.hero-cta--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--hero-text);
}

.hero-cta--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-slideshow-dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.hero-dot--active {
  background: var(--hero-text);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--hero-text);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-lg);
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 50%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
  min-height: 60vh;
  position: relative;
  z-index: 1;
}

.about-content {
  animation: fadeInUp 1s ease-out;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 600;
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
  padding-left: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -10px;
  font-size: 4rem;
  color: rgba(184, 134, 11, 0.2);
}

.about-logo-wrap {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s var(--ease-out);
  animation: scaleIn 1s ease-out 0.3s both;
}

.about-logo-wrap:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(184, 134, 11, 0.3);
}

.about-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Our Story Video + Content (unique design) */
.about-story-block {
  margin-top: var(--space-3xl);
  padding: 0 var(--space-xl);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-story-video-wrap {
  position: relative;
  margin-bottom: 0;
}

.about-story-video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(184, 134, 11, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background: var(--bg-warm);
}

.about-story-video {
  width: 100%;
  display: block;
  aspect-ratio: 21/9;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.about-story-video-wrap:hover .about-story-video {
  transform: scale(1.03);
}

.about-story-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.about-story-video-caption {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-xl);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-story-content {
  margin-top: calc(-1 * var(--space-xl));
  position: relative;
  z-index: 1;
}

.about-story-content-inner {
  background: var(--bg-card);
  border-radius: 16px;
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.12);
  max-width: 90%;
  margin: 0 auto;
}

.about-story-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
  margin: 0 0 var(--space-xl);
}

.about-story-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.about-stat {
  text-align: center;
  min-width: 100px;
}

.about-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Experience Section */
.experience {
  background: linear-gradient(180deg, var(--lounge-bg) 0%, var(--library-bg) 100%);
  position: relative;
}

.experience-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

.experience-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.experience-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.experience-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.6s var(--ease-out);
  animation: fadeInUp 1s ease-out;
}

.experience-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-block--alt {
  direction: rtl;
}

.experience-block--alt > * {
  direction: ltr;
}

/* Lounge left column: stack two videos to fill empty space */
.experience-lounge-media {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: var(--space-xl);
  justify-content: center;
}

.experience-lounge-media .experience-media:first-child {
  flex: 0 0 auto;
  min-height: 38vh;
  max-height: 44vh;
}

.experience-overlay-subtle {
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 25, 24, 0.15) 100%);
}

/* Rxlbg4: balanced with first video, centered with gap */
.experience-media-rxlbg4 {
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  max-width: 88%;
  min-height: 28vh;
  max-height: 32vh;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.experience-media-rxlbg4 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.experience-block:hover .experience-media-rxlbg4 video {
  transform: scale(1.05);
}

.experience-lounge-media .experience-media-rxlbg4 {
  min-height: 28vh;
  max-height: 32vh;
}

/* Library: same two-video layout as Lounge */
.experience-library-media {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: var(--space-xl);
  justify-content: center;
}

.experience-library-media .experience-media:first-child {
  flex: 0 0 auto;
  min-height: 38vh;
  max-height: 44vh;
}

.experience-media-library4 {
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  max-width: 88%;
  min-height: 28vh;
  max-height: 32vh;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.experience-media-library4 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.experience-block:hover .experience-media-library4 video {
  transform: scale(1.05);
}

.experience-library-media .experience-media-library4 {
  min-height: 28vh;
  max-height: 32vh;
}

.experience-media {
  position: relative;
  overflow: hidden;
  min-height: 45vh;
  max-height: 50vh;
}

.experience-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.experience-block:hover .experience-media video {
  transform: scale(1.05);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,25,24,0.4), transparent);
  z-index: 1;
}

.experience-block--alt .experience-overlay {
  background: linear-gradient(to left, rgba(26,25,24,0.4), transparent);
}

.experience-copy {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.experience-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.experience-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-gold);
  opacity: 0.3;
  line-height: 1;
}

.experience-block h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
}

.experience-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

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

.experience-feature-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  animation: pulse 3s ease-in-out infinite;
}

.experience-feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.experience-feature-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.experience-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin: var(--space-xl) 0;
}

.experience-note {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Menu Section – unique style: soft arches + warm glow */
.menu-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f5 0%, #f5efe6 35%, #f8f4ee 70%, #fcfaf7 100%);
}

.menu-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse 80% 50% at 30% 40%, rgba(201, 168, 108, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.menu-section::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse 70% 45% at 70% 50%, rgba(212, 184, 150, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.menu-side-decoration {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  max-width: 1px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.menu-side-decoration--left {
  left: 8%;
  background: linear-gradient(180deg, transparent, rgba(184, 134, 11, 0.2) 20%, rgba(184, 134, 11, 0.2) 80%, transparent);
}

.menu-side-decoration--right {
  right: 8%;
  background: linear-gradient(180deg, transparent, rgba(184, 134, 11, 0.2) 20%, rgba(184, 134, 11, 0.2) 80%, transparent);
}

@media (min-width: 900px) {
  .menu-side-decoration {
    width: 1px;
    opacity: 1;
  }
}

.menu-section .container {
  position: relative;
  z-index: 2;
}

.menu-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

.menu-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.menu-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s var(--ease-out);
  position: relative;
  animation: scaleIn 0.8s ease-out both;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.15) rotate(2deg);
}

.menu-card-content {
  padding: var(--space-lg);
  position: relative;
  z-index: 2;
}

.menu-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.menu-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.menu-card-btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.menu-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  transition: left 0.4s var(--ease-out);
  z-index: -1;
}

.menu-card-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.menu-card-btn:hover::before {
  left: 0;
}

.menu-cta {
  text-align: center;
  margin-top: var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

.menu-cta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Instagram Section */
.instagram-section {
  background: var(--bg-pearl);
  position: relative;
  overflow: hidden;
}

.instagram-intro {
  text-align: center;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

.instagram-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s var(--ease-out);
  animation: scaleIn 0.8s ease-out both;
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}

.instagram-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.instagram-item:hover::after {
  opacity: 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.instagram-item:hover img {
  transform: scale(1.2);
}

.instagram-cta-wrap {
  text-align: center;
  margin-top: var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

.instagram-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.instagram-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  transition: left 0.4s var(--ease-out);
  z-index: -1;
}

.instagram-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.instagram-cta:hover::before {
  left: 0;
}

/* Reserve Section */
.reserve {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  position: relative;
}

.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding: 0 var(--space-2xl);
}

.reserve-form-wrap {
  animation: fadeInUp 1s ease-out;
}

.reserve-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-row label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  font: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s var(--ease-out);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
  transform: translateY(-2px);
}

.btn-primary {
  padding: var(--space-md) var(--space-xl);
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
  animation: glow 2s ease-in-out infinite;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.reserve-map-wrap {
  position: sticky;
  top: calc(var(--header-height) + var(--dubai-banner-height) + var(--space-lg));
  animation: fadeInUp 1s ease-out 0.2s both;
}

.map-container {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: var(--space-lg);
  transition: transform 0.5s var(--ease-out);
}

.map-container:hover {
  transform: scale(1.02);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reserve-info {
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.reserve-info p {
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.reserve-info a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.reserve-info a:hover {
  color: var(--accent-warm);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-cream) 100%);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-sm);
  transition: transform 0.3s var(--ease-out);
  animation: fadeInUp 1s ease-out;
}

.footer-logo:hover {
  transform: scale(1.05);
  color: var(--accent-gold);
}

.footer-tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s var(--ease-out);
}

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

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

.footer-social {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.footer-social a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s var(--ease-out);
}

.footer-social a:hover {
  color: var(--accent-warm);
}

.footer-careers,
.footer-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.footer-careers a {
  color: var(--accent-gold);
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  bottom: calc(var(--space-lg) + 70px);
  right: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.scroll-top svg {
  transition: transform 0.3s var(--ease-out);
}

.scroll-top:hover svg {
  transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 60px;
  height: 60px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  transition: all 0.4s var(--ease-out);
  animation: pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  animation: glow 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-calm), transform 1s var(--ease-calm);
}

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

.animate-pop {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s var(--ease-calm), transform 1s var(--ease-calm);
}

.animate-pop.in-view {
  opacity: 1;
  transform: scale(1);
}

.animate-jump {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-calm), transform 1s var(--ease-calm);
}

.animate-jump.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .experience-block,
  .reserve-layout {
    grid-template-columns: 1fr;
  }
  
  .experience-block--alt {
    direction: ltr;
  }
  
  .experience-media {
    min-height: 35vh;
    max-height: 40vh;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: calc(var(--dubai-banner-height) + var(--header-height));
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
  }
  
  .nav-menu.open {
    transform: translateX(0);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .about-story-block {
    padding: 0 var(--space-md);
    margin-top: var(--space-2xl);
  }

  .about-story-video-frame {
    border-radius: 16px;
  }

  .about-story-video {
    aspect-ratio: 16/9;
  }

  .about-story-content-inner {
    max-width: 100%;
    padding: var(--space-xl) var(--space-md);
  }

  .about-story-stats {
    gap: var(--space-lg);
  }

  .about-stat {
    min-width: 80px;
  }

  .experience-block {
    min-height: auto;
  }
  
  .experience-media {
    min-height: 35vh;
  }

  .experience-lounge-media {
    gap: var(--space-lg);
  }

  .experience-lounge-media .experience-media:first-child {
    min-height: 32vh;
    max-height: 38vh;
  }

  .experience-media-rxlbg4 {
    max-width: 92%;
    min-height: 24vh;
    max-height: 28vh;
  }

  .experience-library-media {
    gap: var(--space-lg);
  }

  .experience-library-media .experience-media:first-child {
    min-height: 32vh;
    max-height: 38vh;
  }

  .experience-media-library4 {
    max-width: 92%;
    min-height: 24vh;
    max-height: 28vh;
  }
  
  .menu-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-slide-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: var(--space-md);
    right: var(--space-md);
  }
  
  .scroll-top {
    bottom: calc(var(--space-md) + 60px);
    right: var(--space-md);
  }
}
