/* ============================================================
   HÏGHT NIGHT CLUB — Carnac, Brittany
   Premium Luxury Nightclub Stylesheet
   Inspired by Hi Ibiza · Ushuaïa · Pacha · Stirwen Events
   ============================================================ */

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

/* -----------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
   ----------------------------------------------- */
:root {
  /* — Backgrounds — */
  --bg-primary:        #050508;
  --bg-secondary:      #0c0c14;
  --bg-tertiary:       #111119;
  --bg-glass:          rgba(255, 255, 255, 0.03);
  --bg-glass-hover:    rgba(255, 255, 255, 0.06);
  --bg-glass-strong:   rgba(255, 255, 255, 0.08);
  --bg-overlay:        rgba(5, 5, 8, 0.65);
  --bg-overlay-heavy:  rgba(5, 5, 8, 0.80);

  /* — Accent Colors — */
  --accent-primary:    #9333ea;
  --accent-secondary:  #a855f7;
  --accent-light:      #c084fc;
  --accent-ultra:      #d8b4fe;
  --gold:              #d4af37;
  --gold-light:        #e8c852;
  --gold-dark:         #b8960e;

  /* — Text — */
  --text-primary:      #ffffff;
  --text-secondary:    rgba(255, 255, 255, 0.70);
  --text-muted:        rgba(255, 255, 255, 0.40);
  --text-faint:        rgba(255, 255, 255, 0.20);

  /* — Borders / Dividers — */
  --border-subtle:     rgba(255, 255, 255, 0.08);
  --border-light:      rgba(255, 255, 255, 0.12);
  --border-accent:     rgba(147, 51, 234, 0.40);

  /* — Typography — */
  --font-heading:      'Cormorant Garamond', 'Georgia', serif;
  --font-body:         'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* — Spacing — */
  --section-pad-y:     120px;
  --section-pad-y-mob: 60px;
  --container-max:     1200px;
  --container-wide:    1400px;
  --gap-grid:          24px;

  /* — Transitions — */
  --ease-luxury:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo:     cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast:   0.3s var(--ease-luxury);
  --transition-base:   0.4s var(--ease-luxury);
  --transition-slow:   0.6s var(--ease-out-expo);
  --transition-xslow:  0.8s var(--ease-out-expo);

  /* — Shadows — */
  --shadow-card:       0 4px 30px rgba(0, 0, 0, 0.40);
  --shadow-glow:       0 0 40px rgba(147, 51, 234, 0.20);
  --shadow-glow-lg:    0 0 80px rgba(147, 51, 234, 0.30);
  --shadow-gold:       0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-btn:        0 4px 20px rgba(147, 51, 234, 0.35);

  /* — Z-Index Scale — */
  --z-base:            1;
  --z-card:            10;
  --z-nav:             100;
  --z-overlay:         200;
  --z-modal:           300;

  /* — Border Radius — */
  --radius-sm:         4px;
  --radius-md:         8px;
  --radius-lg:         16px;
  --radius-xl:         24px;
}

/* -----------------------------------------------
   2. CSS RESET & BASE
   ----------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* — Selection — */
::selection {
  background: var(--accent-primary);
  color: var(--text-primary);
}

::-moz-selection {
  background: var(--accent-primary);
  color: var(--text-primary);
}

/* — Scrollbar — */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-primary);
}

/* — Base Elements — */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
}

/* -----------------------------------------------
   3. UTILITY & LAYOUT CLASSES
   ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

/* — Section Titles — */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-secondary);
  margin-bottom: 16px;
  display: inline-block;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-title em,
.section-title i {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-secondary);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

/* -----------------------------------------------
   4. BUTTONS
   ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 16px 40px;
  border-radius: 0;
  cursor: pointer;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

/* Primary — Purple Gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--text-primary);
  border: 1px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-secondary), #7c3aed);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  box-shadow: var(--shadow-btn), 0 0 60px rgba(147, 51, 234, 0.25);
  transform: translateY(-2px);
}

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

.btn-primary span {
  position: relative;
  z-index: 1;
}

/* Outline — Bordered */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-secondary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* Gold — VIP */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg-primary);
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold), 0 0 60px rgba(212, 175, 55, 0.20);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Small variant */
.btn--sm {
  padding: 12px 28px;
  font-size: 0.72rem;
}

/* Large variant */
.btn--lg {
  padding: 20px 52px;
  font-size: 0.82rem;
}

/* -----------------------------------------------
   5. NAVIGATION
   ----------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 20px 0;
  transition:
    background var(--transition-slow),
    padding var(--transition-slow),
    backdrop-filter var(--transition-slow),
    -webkit-backdrop-filter var(--transition-slow),
    box-shadow var(--transition-slow);
}

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

/* Scrolled state */
.navbar.nav-scrolled {
  background: rgba(5, 5, 8, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border-subtle), 0 8px 30px rgba(0, 0, 0, 0.40);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: calc(var(--z-nav) + 2);
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: filter var(--transition-base);
}

.nav-logo:hover img {
  filter: brightness(1.15);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav Links — Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

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

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

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

/* Nav CTA */
.nav-cta {
  z-index: calc(var(--z-nav) + 2);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 2);
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition:
    transform var(--transition-base),
    opacity var(--transition-fast);
  position: absolute;
}

.nav-hamburger span:nth-child(1) { transform: translateY(-6px); }
.nav-hamburger span:nth-child(2) { transform: translateY(0); }
.nav-hamburger span:nth-child(3) { transform: translateY(6px); }

/* Hamburger active */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile Overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #050508;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  z-index: calc(var(--z-nav) + 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-slow),
    visibility var(--transition-slow);
}

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

.nav-mobile-overlay a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
}

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

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

/* Stagger mobile links entrance */
.nav-mobile-overlay a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile-overlay a:nth-child(2) { transition-delay: 0.10s; }
.nav-mobile-overlay a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile-overlay a:nth-child(4) { transition-delay: 0.20s; }
.nav-mobile-overlay a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile-overlay a:nth-child(6) { transition-delay: 0.30s; }
.nav-mobile-overlay a:nth-child(7) { transition-delay: 0.35s; }
.nav-mobile-overlay a:nth-child(8) { transition-delay: 0.40s; }
.nav-mobile-overlay a:nth-child(9) { transition-delay: 0.45s; }
.nav-mobile-overlay a:nth-child(10) { transition-delay: 0.50s; }

/* -----------------------------------------------
   6. HERO SECTION
   ----------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #050508;
}

/* Background blur video (desktop only) */
.hero-video-blur {
  display: none !important;
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  filter: blur(40px) brightness(0.22) saturate(1.25);
  z-index: 1;
  pointer-events: none;
  display: block;
}

/* Full-screen high-res cover background on desktop */
#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  filter: brightness(0.65) contrast(1.1); /* clean contrast and readability */
}

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

/* Mobile: Hide blur video and make main video fill the screen */
@media (max-width: 1024px) {
  .hero-video-blur {
  display: none !important;
    display: none !important;
  }
  #hero-video {
    left: 0;
    transform: none;
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(5, 5, 8, 0.4) 0%, rgba(5, 5, 8, 0.7) 100%),
    linear-gradient(180deg,
      rgba(5, 5, 8, 0.5) 0%,
      rgba(5, 5, 8, 0.15) 40%,
      rgba(5, 5, 8, 0.35) 70%,
      rgba(5, 5, 8, 0.9) 100%
    );
}

/* Subtle noise texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
  background: radial-gradient(ellipse at center, rgba(5, 5, 8, 0.65) 0%, rgba(5, 5, 8, 0.25) 50%, transparent 80%);
  border-radius: var(--radius-xl);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  background: rgba(147, 51, 234, 0.25);
  border: 1px solid rgba(147, 51, 234, 0.45);
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 28px;
  display: inline-block;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 0.3s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.0;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-title em,
.hero-title i {
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.7s forwards;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 4px 20px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(0, 0, 0, 0.8);
}

/* Hero CTA Group */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.9s forwards;
}

/* Hero Stats Row */
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  animation: heroStatsFadeUp 1.2s var(--ease-out-expo) 1.2s forwards;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary),
    transparent
  );
  animation: glow-pulse 3s ease-in-out infinite;
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 1.5s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-secondary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* -----------------------------------------------
   7. ABOUT SECTION
   ----------------------------------------------- */
.section-about {
  background: var(--bg-primary);
}

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

.about-content {
  padding-right: 20px;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

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

.about-signature {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 32px;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter var(--transition-base);
}

.about-image-wrap:hover img {
  filter: brightness(1);
}

/* Purple glow on image */
.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 120%;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(147, 51, 234, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}

/* -----------------------------------------------
   8. EXPERIENCE SECTION
   ----------------------------------------------- */
.section-experience {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Ambient background glow */
.section-experience::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

/* Glassmorphism Card (Redesigned as Premium Full-Bleed Luxury Cards) */
.experience-card {
  position: relative;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  transition:
    transform var(--transition-slow),
    border-color var(--transition-slow),
    box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 8, 0.50) 50%, rgba(5, 5, 8, 0.95) 90%, #050508 100%);
  z-index: 2;
  transition: opacity var(--transition-base);
}

.experience-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: var(--accent-secondary);
  box-shadow:
    var(--shadow-glow),
    0 20px 60px rgba(0, 0, 0, 0.50);
}

.experience-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.experience-card:hover .experience-card-image img {
  transform: scale(1.08);
  filter: brightness(0.85) contrast(1.1);
}

.experience-card-body {
  position: relative;
  z-index: 3;
  padding: 36px 30px;
}

.experience-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--accent-light);
}

.experience-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
}

.experience-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.experience-card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* -----------------------------------------------
   9. EVENTS SECTION
   ----------------------------------------------- */
.section-events {
  background: var(--bg-primary);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.event-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  group: event;
}

.event-card-image {
  position: absolute;
  inset: 0;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.event-card:hover .event-card-image img {
  transform: scale(1.08);
  filter: brightness(0.68) contrast(1.05);
}

/* Card overlay */
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.10) 0%,
    rgba(5, 5, 8, 0.80) 100%
  );
  z-index: 2;
  transition: background var(--transition-base);
}

.event-card:hover .event-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.20) 0%,
    rgba(5, 5, 8, 0.90) 100%
  );
}

/* Date Badge */
.event-date {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--bg-glass-strong);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  text-align: center;
  line-height: 1.2;
}

.event-date-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.event-date-month {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-top: 2px;
}

/* Card Content */
.event-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}

.event-card-category {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.event-card .btn {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.event-card:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------
   10. VIP SECTION
   ----------------------------------------------- */
.section-vip {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.section-vip .parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 1;
}

.section-vip .parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-vip .section-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(5, 5, 8, 0.60) 30%,
      rgba(5, 5, 8, 0.60) 70%,
      var(--bg-primary) 100%
    );
}

.vip-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.vip-content .section-label {
  color: var(--gold);
}

.vip-content .section-label::before {
  background: var(--gold);
}

.vip-content .section-title {
  color: var(--text-primary);
}

.vip-content .section-title em {
  color: var(--gold-light);
}

.vip-services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 44px;
}

.vip-service-item {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0 16px;
  position: relative;
}

.vip-service-item:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
}

/* Gold decorative line */
.vip-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
}

/* -----------------------------------------------
   11. GARDEN SECTION
   ----------------------------------------------- */
.section-garden {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-secondary);
}

.section-garden .parallax-bg {
  position: absolute;
  inset: -5%;
  z-index: 1;
}

.section-garden .parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.15);
  transform: scale(1.01);
}

.section-garden .section-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(5, 5, 8, 0.55) 30%,
      rgba(5, 5, 8, 0.55) 70%,
      var(--bg-primary) 100%
    );
}

/* Warm sunset tone overlay */
.section-garden .section-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 60%
  );
}

.garden-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.garden-content .section-label {
  color: var(--gold-light);
}

.garden-content .section-label::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

/* -----------------------------------------------
   12. GALLERY SECTION
   ----------------------------------------------- */
.section-gallery {
  background: var(--bg-primary);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* Hover overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  padding: 8px 20px;
  border: 1px solid var(--text-secondary);
  transition: border-color var(--transition-fast);
}

.gallery-item:hover .gallery-item-label {
  border-color: var(--accent-secondary);
}

/* -----------------------------------------------
   13. SHUTTLE SECTION
   ----------------------------------------------- */
.section-shuttle {
  background: var(--bg-secondary);
  text-align: center;
}

.shuttle-content {
  max-width: 600px;
  margin: 0 auto;
}

.shuttle-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--accent-secondary);
  font-size: 1.8rem;
  animation: float 4s ease-in-out infinite;
}

.shuttle-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-secondary);
  fill: none;
  stroke-width: 1.5;
}

.shuttle-phone {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  margin: 20px 0 12px;
}

.shuttle-phone a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.shuttle-phone a:hover {
  color: var(--accent-secondary);
}

.shuttle-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* -----------------------------------------------
   14. INSTAGRAM SECTION
   ----------------------------------------------- */
.section-instagram {
  background: var(--bg-primary);
  text-align: center;
}

.instagram-ticker {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
  margin-bottom: 32px;
  user-select: none;
  gap: 20px;
}

.instagram-ticker-track {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  min-width: 100%;
  justify-content: space-around;
  animation: marquee 35s linear infinite;
}

.instagram-ticker:hover .instagram-ticker-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}

.instagram-item {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-glass);
  cursor: pointer;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-glass);
  cursor: pointer;
}

.instagram-item img,
.instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-base);
}

.instagram-item:hover img,
.instagram-item:hover video {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.instagram-item-overlay svg {
  width: 28px;
  height: 28px;
  fill: var(--text-primary);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.instagram-link:hover {
  color: var(--accent-secondary);
}

.instagram-link svg {
  width: 22px;
  height: 22px;
}

/* -----------------------------------------------
   15. CONTACT SECTION
   ----------------------------------------------- */
.section-contact {
  background: var(--bg-secondary);
}

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

/* Contact Info */
.contact-info-block {
  margin-bottom: 36px;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-secondary);
  margin-bottom: 10px;
}

.contact-info-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--accent-secondary);
}

.contact-map {
  width: 100%;
  height: 220px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 12px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) brightness(0.4) contrast(1.1);
  transition: filter var(--transition-base);
}

.contact-map:hover iframe {
  filter: grayscale(0.5) brightness(0.5) contrast(1.1);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 300;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast);
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-secondary);
}

.form-group input:focus + label,
.form-group:focus-within label {
  color: var(--accent-secondary);
}

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

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

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* Form success message overlay */
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  align-items: center;
  gap: 12px;
}

.form-success p {
  font-size: 0.92rem;
  margin: 0;
}

.form-success svg {
  stroke: var(--accent-light);
  flex-shrink: 0;
}

/* -----------------------------------------------
   16. FOOTER
   ----------------------------------------------- */
.footer {
  background: var(--bg-primary);
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.footer-social a:hover {
  color: var(--text-primary);
  border-color: var(--accent-secondary);
  background: rgba(147, 51, 234, 0.10);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

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

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text-faint);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* -----------------------------------------------
   17. ANIMATIONS & KEYFRAMES
   ----------------------------------------------- */

/* Hero entrance */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow pulse */
@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

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

/* Scroll indicator pulse */
@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.5);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* -----------------------------------------------
   18. SCROLL REVEAL SYSTEM
   ----------------------------------------------- */

/* Base reveal — fade-in-up */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

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

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

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

/* Reveal from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

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

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

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

/* Staggered delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* -----------------------------------------------
   19. UTILITY CLASSES
   ----------------------------------------------- */

/* Accent text */
.text-accent {
  color: var(--accent-secondary);
}

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

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--border-subtle);
  margin: 20px 0;
}

.divider--accent {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.divider--gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------
   20. RESPONSIVE — TABLET (≤ 1199px)
   ----------------------------------------------- */
@media (max-width: 1199px) {

  :root {
    --section-pad-y: 90px;
  }

  /* Nav */
  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.7rem;
  }

  /* About */
  .about-grid {
    gap: 48px;
  }

  /* Experience */
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Events — 2 columns on tablet */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Gallery — 3 columns */
  .gallery-masonry {
    column-count: 3;
  }

  /* Contact */
  .contact-grid {
    gap: 48px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-nav {
    gap: 24px;
  }
}

/* -----------------------------------------------
   21. RESPONSIVE — MOBILE (≤ 768px)
   ----------------------------------------------- */
@media (max-width: 768px) {

  :root {
    --section-pad-y: 60px;
    --gap-grid: 16px;
  }

  .container {
    padding: 0 20px;
  }

  /* Typography scale down */
  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Buttons — smaller on mobile */
  .btn {
    padding: 14px 28px;
    font-size: 0.72rem;
  }

  .btn--lg {
    padding: 16px 36px;
    font-size: 0.75rem;
  }

  /* ---- Navigation ---- */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .navbar {
    padding: 16px 0;
  }

  .navbar.nav-scrolled {
    padding: 12px 0;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.78rem, 3.6vw, 0.92rem);
    line-height: 1.5;
    margin-bottom: 32px;
    padding: 0 12px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 28px;
    bottom: 32px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
  }

  .hero-scroll {
    display: none;
  }

  /* ---- About ---- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
    order: 1;
  }

  .about-image-wrap {
    order: 2;
  }

  /* ---- Experience ---- */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-card-image {
    height: 200px;
  }

  .experience-card-body {
    padding: 24px 20px;
  }

  /* ---- Events ---- */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-card {
    aspect-ratio: 4 / 5;
  }

  /* Always show button on mobile */
  .event-card .btn {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---- VIP ---- */
  .section-vip {
    min-height: 70vh;
  }

  .vip-services {
    gap: 4px;
  }

  .vip-service-item {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  /* ---- Garden ---- */
  .section-garden {
    min-height: 60vh;
  }

  /* ---- Gallery ---- */
  .gallery-masonry {
    column-count: 2;
    column-gap: 10px;
  }

  .gallery-item {
    margin-bottom: 10px;
  }

  /* ---- Instagram ---- */
  .instagram-item {
    width: 220px;
    height: 220px;
  }

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

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

  /* ---- Footer ---- */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

/* -----------------------------------------------
   22. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .event-card {
    aspect-ratio: 1;
  }

  .vip-service-item:not(:last-child)::after {
    display: none;
  }

  .vip-service-item {
    width: 100%;
    text-align: center;
    padding: 4px 0;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .instagram-item {
    width: 180px;
    height: 180px;
  }
}

/* -----------------------------------------------
   23. PREFERS REDUCED MOTION
   ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* -----------------------------------------------
   24. PRINT STYLES
   ----------------------------------------------- */
/* -----------------------------------------------
   25. PRELOADER & NAV-OPEN OVERRIDES
   ----------------------------------------------- */

/* Preloader Overlay */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo);
  pointer-events: all;
}

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

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-primary);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.preloader-bar {
  width: 160px;
  height: 2px;
  background: var(--border-subtle);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.preloader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  animation: preloader-loading 1.2s infinite ease-in-out;
}

@keyframes preloader-loading {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Nav Open (JS triggers class on body) */
.nav-open .nav-mobile-overlay {
  opacity: 1;
  visibility: visible;
}

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

/* Hamburger animation on active state */
.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

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

.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* -----------------------------------------------
   26. PREMIUM ANIMATIONS (Shine, Text Split, Cursor Glow)
   ----------------------------------------------- */

/* Interactive Mouse Glow Follower Aura */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.08) 0%,
    rgba(168, 85, 247, 0.02) 40%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo);
  will-change: transform;
}

body.loaded #cursor-glow {
  opacity: 1;
}

/* Glass Shine Sweep Hover Effect */
.experience-card,
.event-card {
  position: relative;
}

.experience-card::before,
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15) 50%,
    transparent
  );
  transform: skewX(-25deg);
  z-index: 4;
  pointer-events: none;
}

.experience-card:hover::before,
.event-card:hover::before {
  animation: shine-sweep 0.95s var(--ease-out-expo);
}

@keyframes shine-sweep {
  0% {
    left: -150%;
  }
  100% {
    left: 200%;
  }
}

/* Staggered Character Slide-Up */
.reveal-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
}

.reveal-char-content {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.2s var(--ease-out-expo);
  will-change: transform;
}

.revealed .reveal-char-content {
  transform: translateY(0);
}

/* Performance optimization: Disable heavy animations on touch devices */
@media (max-width: 1024px) {
  #cursor-glow {
    display: none !important;
  }
  
  .experience-card::before,
  .event-card::before {
    display: none !important;
  }
}

@media print {

  body {
    background: #fff;
    color: #000;
  }

  .navbar,
  .hero-video-wrap,
  .hero-overlay,
  .footer-social,
  .hero-scroll {
    display: none !important;
  }

  section {
    padding: 24px 0;
    break-inside: avoid;
  }
}

/* ID card mandatory notes */
.hero-id-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 18px;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.9s forwards;
  opacity: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.vip-id-note {
  font-size: 0.72rem;
  color: rgba(212, 175, 55, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 14px;
  text-align: center;
}

/* Card Blur-Up layout for square images in portrait containers */
.experience-card-image--blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #050508;
}

.experience-card-blur-bg {
  position: absolute;
  inset: -15px;
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.35);
  z-index: 1;
}

.experience-card-main-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* displays the whole square image! */
  filter: brightness(0.85) contrast(1.1);
  transform: scale(0.95);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.experience-card:hover .experience-card-main-img {
  transform: scale(1.0);
  filter: brightness(1.0) contrast(1.1);
}

/* ==========================================
   24. CUSTOM PREMIUM CURSOR
   ========================================== */
.custom-cursor-dot,
.custom-cursor-ring {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), background-color 0.25s ease;
}

.custom-cursor-ring {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.45);
  transition: opacity 0.3s ease, width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s ease, background-color 0.3s ease;
}

/* Hover state */
body.cursor-hover .custom-cursor-ring {
  width: 44px;
  height: 44px;
  background: rgba(168, 85, 247, 0.08);
  border-color: var(--accent-primary);
}

body.cursor-hover .custom-cursor-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
}

/* Disable default cursor on desktop */
@media (min-width: 1025px) {
  body, a, button, .btn, .instagram-item, .experience-card, .event-card, input, textarea {
    cursor: none !important;
  }
}

/* Hide on mobile/touch screens */
@media (max-width: 1024px) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

/* Custom Keyframe to maintain absolute X centering on stats fade-up */
@keyframes heroStatsFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Prevent viewport leak / horizontal scroll globally */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Lock scrolling behind open nav menu */
body.nav-open {
  overflow: hidden !important;
  height: 100% !important;
}

/* Contact Dashboard styles */
.contact-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.contact-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.05);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-card-value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.contact-card-value a.phone-link {
  color: var(--text-primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-card-value a.phone-link:hover {
  color: var(--accent-secondary);
}

.contact-card-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: auto;
}

.copy-address-btn.copied {
  background: var(--accent-primary) !important;
  color: var(--text-primary) !important;
  border-color: var(--accent-primary) !important;
}

@media (max-width: 992px) {
  .contact-dashboard {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-card {
    min-height: auto;
    padding: 30px 20px;
  }
}


/* Responsive sizing for single-row Instagram Ticker */
@media (max-width: 768px) {
  .instagram-item {
    width: 200px !important;
    height: 200px !important;
  }
}
@media (max-width: 480px) {
  .instagram-item {
    width: 160px !important;
    height: 160px !important;
  }
}
