/* =============================================
   RUNWAY POT - PREMIUM DESIGN SYSTEM
   A Luxury Cannabis Experience
   ============================================= */

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

/* ============== CSS VARIABLES ============== */
:root {
  /* Brand Colors */
  --color-gold: #d4a43a;
  --color-gold-light: #e5b84a;
  --color-gold-dark: #b8902f;
  --color-gold-glow: rgba(212, 164, 58, 0.4);

  /* Backgrounds */
  --color-bg-dark: #0a0a0a;
  --color-bg-darker: #050505;
  --color-bg-card: rgba(20, 20, 20, 0.8);
  --color-bg-glass: rgba(255, 255, 255, 0.05);
  --color-bg-glass-hover: rgba(255, 255, 255, 0.1);

  /* Text */
  --color-text: #ffffff;
  --color-text-muted: #888888;
  --color-text-dim: #555555;

  /* Accents */
  --color-green: #22c55e;
  --color-green-glow: rgba(34, 197, 94, 0.3);
  --color-purple: #8b5cf6;
  --color-blue: #3b82f6;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4a43a 0%, #f4d03f 50%, #d4a43a 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-radial: radial-gradient(ellipse at center, rgba(212, 164, 58, 0.15) 0%, transparent 70%);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;

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

  /* Effects */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders */
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-gold: 1px solid rgba(212, 164, 58, 0.3);

  /* Shadows */
  --shadow-glow: 0 0 60px rgba(212, 164, 58, 0.2);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ============== BASE STYLES ============== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

/* ============== SCROLL PROGRESS BAR ============== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 10000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--color-gold-glow), 0 0 20px var(--color-gold-glow);
}

/* ============== GRAIN TEXTURE OVERLAY ============== */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ============== PREMIUM LOADING SCREEN ============== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-xl);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader__logo {
  height: 100px;
  width: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ============== ANIMATED GRADIENT BORDERS ============== */
.gradient-border {
  position: relative;
}

.gradient-border::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(var(--gradient-angle, 0deg),
      var(--color-gold) 0%,
      transparent 40%,
      transparent 60%,
      var(--color-gold-light) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotateGradient 4s linear infinite;
  pointer-events: none;
}

.gradient-border:hover::after {
  opacity: 1;
}

@keyframes rotateGradient {
  0% {
    --gradient-angle: 0deg;
  }

  100% {
    --gradient-angle: 360deg;
  }
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ============== FLOATING 3D BUD ============== */
.hero__floating-bud {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 25vw, 350px);
  z-index: 5;
  pointer-events: none;
  animation: floatBud 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 60px var(--color-gold-glow));
}

.hero__floating-bud img {
  width: 100%;
  height: auto;
}

@keyframes floatBud {

  0%,
  100% {
    transform: translateY(-50%) rotate(-2deg);
  }

  50% {
    transform: translateY(-55%) rotate(2deg);
  }
}

/* Secondary floating element - left side accent */
.hero__floating-accent {
  position: absolute;
  left: 3%;
  bottom: 20%;
  width: clamp(80px, 10vw, 150px);
  z-index: 5;
  pointer-events: none;
  animation: floatAccent 8s ease-in-out infinite;
  opacity: 0.6;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero__floating-accent img {
  width: 100%;
  height: auto;
}

@keyframes floatAccent {

  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

/* ============== PARALLAX STYLES ============== */
.parallax-element {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* ============== TEXT REVEAL ANIMATIONS ============== */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}

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

/* Staggered reveal for multiple words */
.text-reveal span:nth-child(1) {
  transition-delay: 0s;
}

.text-reveal span:nth-child(2) {
  transition-delay: 0.1s;
}

.text-reveal span:nth-child(3) {
  transition-delay: 0.2s;
}

.text-reveal span:nth-child(4) {
  transition-delay: 0.3s;
}

.text-reveal span:nth-child(5) {
  transition-delay: 0.4s;
}

.text-reveal span:nth-child(6) {
  transition-delay: 0.5s;
}

/* ============== ENHANCED CARD ANIMATIONS ============== */
.location-card.gradient-border,
.feature-card.gradient-border {
  border-radius: 24px;
}

/* Responsive adjustments for floating elements */
@media (max-width: 1200px) {
  .hero__floating-bud {
    right: 2%;
    width: clamp(150px, 20vw, 250px);
  }
}

@media (max-width: 768px) {
  .hero__floating-bud {
    display: none;
  }

  .hero__floating-accent {
    display: none;
  }
}

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

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

/* ============== CUSTOM CURSOR ============== */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(212, 164, 58, 0.1);
}

/* ============== TYPOGRAPHY ============== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 40px var(--color-gold-glow);
}

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(var(--blur-md));
  border-bottom: var(--border-glass);
  padding: var(--space-md) 0;
}

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

.header__logo {
  display: flex;
  align-items: center;
}

/* Logo Image Styles */
.header__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header.scrolled .header__logo-img {
  height: 55px;
}

/* Footer Logo */
.footer__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

/* Age Modal Logo */
.age-modal__logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-lg);
}

/* Legacy text logo (kept for fallback) */
.header__logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-bg-dark);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: var(--space-sm) 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-smooth);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-text);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-gold);
  color: var(--color-bg-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px var(--color-gold-glow);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-gold-glow);
  color: var(--color-bg-dark);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-md);
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: all var(--transition-smooth);
}

.header__menu-btn:hover {
  background: rgba(212, 164, 58, 0.1);
}

.header__menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  border-radius: 2px;
  position: absolute;
}

.header__menu-btn span:nth-child(1) {
  transform: translateY(-8px);
}

.header__menu-btn span:nth-child(2) {
  transform: translateY(0);
}

.header__menu-btn span:nth-child(3) {
  transform: translateY(8px);
}

/* Animated X when menu is open */
.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(0);
  background: var(--color-gold);
}

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

.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(0);
  background: var(--color-gold);
}

.header__menu-btn.active {
  background: rgba(212, 164, 58, 0.15);
}

/* ============== NAV DROPDOWN ============== */
.header__nav-item {
  position: relative;
}

.header__nav-item>.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header__nav-item>.header__nav-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.header__nav-item:hover>.header__nav-link svg {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  z-index: 1001;
}

.header__nav-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: 10px;
  transition: all var(--transition-fast);
  color: var(--color-text-muted);
}

.header__dropdown-link:hover {
  background: rgba(212, 164, 58, 0.1);
  color: var(--color-text);
}

.header__dropdown-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.header__dropdown-link span {
  display: flex;
  flex-direction: column;
}

.header__dropdown-link .location-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.header__dropdown-link .location-area {
  font-size: 0.75rem;
  opacity: 0.7;
}

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

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

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 164, 58, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 50%, var(--color-bg-darker) 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  50% {
    transform: translateY(-100vh) rotate(720deg);
  }
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-bg-glass);
  border: var(--border-glass);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(var(--blur-sm));
  animation: fadeInUp 1s ease forwards;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero__title-line {
  display: block;
}

.hero__title-line:last-child {
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

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

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

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-2xl);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--color-bg-dark);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--color-gold-glow);
}

.btn--glass {
  background: var(--color-bg-glass);
  color: var(--color-text);
  border: var(--border-glass);
  backdrop-filter: blur(var(--blur-sm));
}

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

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

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

/* ============== SCROLL INDICATOR ============== */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.scroll-indicator__mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 15px;
  position: relative;
}

.scroll-indicator__wheel {
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

.scroll-indicator__text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============== LOCATIONS SECTION ============== */
.locations {
  background: var(--gradient-dark);
  position: relative;
}

.locations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--color-bg-darker) 0%, transparent 100%);
  pointer-events: none;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

.section__subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

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

/* ============== LOCATION CARDS ============== */
.location-card {
  background: var(--color-bg-glass);
  border: var(--border-glass);
  border-radius: 24px;
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(var(--blur-md));
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 164, 58, 0.3);
  box-shadow: var(--shadow-glow);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card__icon {
  width: 70px;
  height: 70px;
  background: var(--color-bg-glass);
  border: var(--border-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  transition: all var(--transition-smooth);
}

.location-card:hover .location-card__icon {
  background: var(--gradient-gold);
  border-color: transparent;
}

.location-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-gold);
  transition: fill var(--transition-smooth);
}

.location-card:hover .location-card__icon svg {
  fill: var(--color-bg-dark);
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.location-card__address {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.location-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: var(--border-glass);
  margin-bottom: var(--space-xl);
}

.location-card__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.location-card__info-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.location-card__cta {
  width: 100%;
}

/* ============== FEATURES SECTION ============== */
.features {
  background: var(--color-bg-darker);
  position: relative;
  overflow: hidden;
}

.features__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
}

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

.feature-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg-glass);
  border: var(--border-glass);
  border-radius: 20px;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 164, 58, 0.2);
}

.feature-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-md);
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ============== CTA SECTION ============== */
.cta-section {
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
}

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

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

.cta-section__text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

/* ============== FOOTER ============== */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #020202 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0 0;
}

/* Giant background text */
.footer__bg-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 164, 58, 0.08);
  text-stroke: 1px rgba(212, 164, 58, 0.08);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Newsletter Section */
.footer__newsletter {
  background: linear-gradient(135deg, rgba(212, 164, 58, 0.1) 0%, rgba(212, 164, 58, 0.03) 100%);
  border: 1px solid rgba(212, 164, 58, 0.2);
  border-radius: 32px;
  padding: var(--space-3xl);
  margin-bottom: var(--space-4xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer__newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 164, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer__newsletter-content {
  flex: 1;
  max-width: 500px;
}

.footer__newsletter-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 164, 58, 0.15);
  border: 1px solid rgba(212, 164, 58, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer__newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.footer__newsletter-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__newsletter-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-md);
  flex: 1;
  max-width: 450px;
}

.footer__newsletter-input {
  flex: 1;
  padding: var(--space-md) var(--space-xl);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, 0.6);
}

.footer__newsletter-btn {
  padding: var(--space-md) var(--space-2xl);
  background: var(--gradient-gold);
  color: var(--color-bg-dark);
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer__newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 164, 58, 0.4);
}

.footer__newsletter-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Locations Section */
.footer__locations {
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.footer__locations-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.footer__locations-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.footer__locations-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__locations-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

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

/* Location Cards */
.footer__location-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: var(--space-2xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.footer__location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 164, 58, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer__location-card:hover {
  border-color: rgba(212, 164, 58, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 164, 58, 0.15);
}

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

.footer__location-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 164, 58, 0.15) 0%, rgba(212, 164, 58, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.footer__location-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold);
}

.footer__location-info h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.footer__location-tag {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__location-details {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__location-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__location-detail svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.footer__location-arrow {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 32px;
  height: 32px;
  background: rgba(212, 164, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.footer__location-card:hover .footer__location-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer__location-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

/* Bottom Bar */
.footer__bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer__brand-section {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer__brand-section .footer__logo-img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(212, 164, 58, 0.2));
}

.footer__brand-section p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 250px;
}

.footer__links {
  display: flex;
  gap: var(--space-2xl);
}

.footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__social-section {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer__social-link:hover {
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 164, 58, 0.3);
}

.footer__social-link:hover::before {
  opacity: 1;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text);
  position: relative;
  z-index: 1;
  transition: fill 0.4s ease;
}

.footer__social-link:hover svg {
  fill: var(--color-bg-dark);
}

/* Copyright Bar */
.footer__copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.footer__copyright-bar p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer__badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, rgba(45, 206, 137, 0.12) 0%, rgba(45, 206, 137, 0.05) 100%);
  border: 1px solid rgba(45, 206, 137, 0.25);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.footer__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 206, 137, 0.2);
}

.footer__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-green);
}

.footer__badge span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
  .footer__newsletter {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2xl);
  }

  .footer__newsletter-content {
    max-width: 100%;
  }

  .footer__newsletter-form {
    max-width: 100%;
  }

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

  .footer__bottom-bar {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer__brand-section {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 600px) {
  .footer__newsletter-form {
    flex-direction: column;
  }

  .footer__newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .footer__copyright-bar {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer__bg-text {
    font-size: 80px;
  }
}

/* ============== AGE VERIFICATION ============== */
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(var(--blur-lg));
}

.age-modal.hidden {
  display: none;
}

.age-modal__content {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 32px;
  padding: var(--space-3xl);
  text-align: center;
  max-width: 480px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.age-modal__content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--color-gold-glow), transparent 30%);
  animation: rotate 4s linear infinite;
  opacity: 0.5;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.age-modal__inner {
  position: relative;
  z-index: 1;
}

.age-modal__logo {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-weight: 700;
  color: var(--color-bg-dark);
  font-size: 0.9rem;
}

.age-modal__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.age-modal__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.age-modal__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.age-modal__btn {
  min-width: 140px;
}

/* ============== MOBILE MENU ============== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(var(--blur-lg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

/* Decorative background glow */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 164, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-text);
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

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

/* Staggered animation for links */
.mobile-menu.active .mobile-menu__nav .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu__nav .mobile-menu__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu__nav .mobile-menu__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu__nav .mobile-menu__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu__nav .mobile-menu__link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: var(--gradient-gold);
  transition: transform 0.3s ease;
}

.mobile-menu__link:hover {
  color: var(--color-gold);
}

.mobile-menu__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Mobile menu divider and CTA */
.mobile-menu__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 164, 58, 0.5), transparent);
  margin: var(--space-lg) 0;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.4s ease 0.35s;
}

.mobile-menu.active .mobile-menu__divider {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu__cta {
  display: flex;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.4s;
}

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

.mobile-menu__cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.mobile-menu__cta-btn--primary {
  background: var(--gradient-gold);
  color: var(--color-bg-dark);
}

.mobile-menu__cta-btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu__cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .locations__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

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

  .footer__cta {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .footer__cta-content h3 {
    font-size: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    max-width: none;
    margin: 0 auto;
  }

  .footer__column-title::before {
    display: none;
  }

  .footer__column-title {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.8rem;
  }
}

/* ============== ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============== VIBE FINDER QUIZ ============== */
.vibe-finder {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0f0f0f 50%, var(--color-bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.vibe-finder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 164, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vibe-finder__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.vibe-finder__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  color: #a78bfa;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.vibe-finder__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.vibe-finder__title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vibe-finder__subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.vibe-finder__container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: var(--space-2xl);
  backdrop-filter: blur(var(--blur-md));
}

.vibe-finder__quiz {
  transition: all 0.3s ease;
}

.vibe-finder__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.vibe-finder__progress-bar {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.vibe-finder__question-number {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.vibe-finder__question {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-xl);
  line-height: 1.4;
}

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

.vibe-finder__option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--color-text);
  text-align: left;
}

.vibe-finder__option:hover {
  background: rgba(212, 164, 58, 0.1);
  border-color: rgba(212, 164, 58, 0.4);
  transform: translateX(8px);
}

.vibe-finder__option:active {
  transform: translateX(8px) scale(0.98);
}

.vibe-finder__option-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.vibe-finder__option-text {
  font-size: 1rem;
  font-weight: 500;
}

/* Vibe Finder Result */
.vibe-finder__result {
  display: none;
  text-align: center;
}

.vibe-finder__result-card {
  padding: var(--space-2xl);
  border-radius: 16px;
  margin-bottom: var(--space-xl);
}

.vibe-finder__result-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  animation: bounce 1s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.vibe-finder__result-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vibe-finder__result-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.vibe-finder__result-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.vibe-finder__result-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.vibe-finder__restart {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.8rem 1.5rem;
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vibe-finder__restart:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Responsive Vibe Finder */
@media (max-width: 768px) {
  .vibe-finder__container {
    padding: var(--space-xl);
    margin: 0 var(--space-md);
    border-radius: 16px;
  }

  .vibe-finder__question {
    font-size: 1.25rem;
  }

  .vibe-finder__option {
    padding: var(--space-md) var(--space-lg);
  }

  .vibe-finder__option-emoji {
    font-size: 1.5rem;
  }

  .vibe-finder__result-icon {
    font-size: 3rem;
  }

  .vibe-finder__result-title {
    font-size: 1.5rem;
  }
}

/* ============================================================================
   MOBILE-FIRST OPTIMIZATIONS
   Priority: Touch devices and mobile viewports
   ============================================================================ */

/* Reduced Motion - Respect user preferences */
@media (prefers-reduced-motion: reduce) {

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

  .particle,
  .floating-3d,
  .hero__glow,
  .smoke-container,
  .leaves-container {
    display: none !important;
  }
}

/* Touch Device Optimizations - Disable hover-only features */
@media (hover: none) and (pointer: coarse) {

  /* Hide custom cursor on touch devices */
  .cursor,
  .cursor-dot {
    display: none !important;
  }

  /* Disable hover transforms that cause issues on touch */
  .btn--primary:hover,
  .btn--glass:hover,
  .location-card:hover,
  .feature-card:hover {
    transform: none;
  }

  /* Keep visual feedback but remove translate effects */
  .location-card:active {
    border-color: rgba(212, 164, 58, 0.3);
  }

  .btn--primary:active {
    opacity: 0.9;
  }
}

/* Safe Area Support for Notched Devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(var(--space-2xl) + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .quick-float {
    bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ============== MOBILE VIEWPORT OPTIMIZATIONS ============== */

/* Small Mobile (iPhone SE, older devices) */
@media (max-width: 375px) {
  :root {
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.8rem;
  }
}

/* Enhanced Mobile Touch Targets (< 480px) */
@media (max-width: 480px) {

  /* Minimum touch target sizes (44-48px as per Apple/Google guidelines) */
  .btn {
    min-height: 48px;
    padding: var(--space-md) var(--space-xl);
  }

  .header__menu-btn {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .header__menu-btn span {
    width: 24px;
  }

  /* Larger mobile menu links */
  .mobile-menu__link {
    font-size: 2rem;
    padding: var(--space-md) 0;
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  /* More space for location cards */
  .location-card {
    padding: var(--space-xl);
  }

  .location-card__icon {
    width: 56px;
    height: 56px;
  }

  .location-card__cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero optimizations */
  .hero {
    min-height: 85vh;
  }

  .hero__content {
    padding: var(--space-lg);
  }

  .hero__badge {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.7rem;
  }

  .hero__cta-group {
    gap: var(--space-md);
  }

  .hero__cta-group .btn {
    width: 100%;
  }

  /* Hide scroll indicator on small screens */
  .scroll-indicator {
    display: none;
  }

  /* Feature cards */
  .feature-card {
    padding: var(--space-xl);
  }

  .feature-card__number {
    font-size: 2.5rem;
  }

  /* Form improvements */
  .form-input,
  .form-textarea,
  .form-select {
    min-height: 48px;
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: var(--space-md);
  }

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

  /* Quick float buttons */
  .quick-float {
    bottom: 1rem;
    right: 1rem;
  }

  .quick-float__btn {
    width: 52px;
    height: 52px;
  }

  /* Footer newsletter */
  .footer__newsletter {
    padding: var(--space-xl);
    border-radius: 20px;
  }

  .footer__newsletter-title {
    font-size: 1.5rem;
  }

  /* Vibe finder quiz */
  .vibe-finder__option {
    min-height: 56px;
  }
}

/* ============== MOBILE STICKY CTA ============== */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 20%);
    padding: var(--space-lg) var(--space-xl);
    padding-top: var(--space-2xl);
    gap: var(--space-md);
  }

  .mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
  }

  /* Add bottom padding to body to account for sticky CTA */
  body.has-sticky-cta {
    padding-bottom: 80px;
  }

  /* Hide sticky CTA when on shop pages (they have their own quick float) */
  .shop-page .mobile-sticky-cta {
    display: none;
  }
}

/* ============== IMPROVED MOBILE HEADER ============== */
@media (max-width: 768px) {
  .header {
    padding: var(--space-md) 0;
  }

  .header__logo-img {
    height: 50px;
  }

  .header.scrolled .header__logo-img {
    height: 45px;
  }
}

/* ============== SHOP PAGE MOBILE OPTIMIZATIONS ============== */
@media (max-width: 768px) {
  .shop-hero {
    min-height: 75vh;
    max-height: none;
  }

  .shop-hero__content {
    padding: 100px 1rem 2rem;
  }

  .shop-hero__title {
    font-size: 2rem;
  }

  .shop-hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .shop-hero__info {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .shop-hero__info-item {
    font-size: 0.9rem;
  }

  /* Dutchie menu optimization */
  .dutchie-embed {
    height: calc(100vh - 80px);
    min-height: 500px;
  }

  /* Menu section header */
  .menu-section__header {
    padding: 2rem 0 1.5rem;
  }

  .menu-section__title {
    font-size: 1.8rem;
  }
}

/* ============== PERFORMANCE - DISABLE HEAVY EFFECTS ON MOBILE ============== */
@media (max-width: 768px) {

  /* Simplify particle effects */
  .particle {
    display: none;
  }

  /* Reduce glow complexity */
  .hero__glow {
    width: 300px;
    height: 300px;
    animation: none;
    opacity: 0.3;
  }

  /* Simplify location card hover effects */
  .location-card::before {
    display: none;
  }

  /* Disable gradient border animations */
  .gradient-border::after {
    display: none;
  }
}

/* ============== LANDSCAPE MOBILE OPTIMIZATION ============== */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    margin-bottom: var(--space-lg);
  }

  .shop-hero {
    min-height: 100vh;
  }

  .shop-hero__content {
    padding-top: 80px;
  }

  /* Two-column CTA in landscape */
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .hero__cta-group .btn {
    width: auto;
  }
}

/* ============== AGE MODAL MOBILE IMPROVEMENTS ============== */
@media (max-width: 480px) {
  .age-modal__content {
    padding: var(--space-xl);
    width: 95%;
    border-radius: 24px;
  }

  .age-modal__logo-img {
    height: 70px;
  }

  .age-modal__title {
    font-size: 1.5rem;
  }

  .age-modal__text {
    font-size: 0.9rem;
  }

  .age-modal__buttons {
    flex-direction: column;
    gap: var(--space-md);
  }

  .age-modal__btn {
    width: 100%;
    min-height: 48px;
  }
}