/* ==========================================================================
   EREKE EVACUATOR ALMATY — FESTIVAL EXPERIENCE DESIGN SYSTEM
   Theme: Matte Obsidian / Safety Amber / Telemetry Cyan / Liquid Glass
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-deep: #050608;
  --bg-surface: #0a0c10;
  --bg-surface-elevated: #10141c;
  --bg-glass: rgba(14, 18, 26, 0.7);
  --bg-glass-heavy: rgba(10, 12, 16, 0.88);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(255, 107, 0, 0.4);
  --border-cyan: rgba(0, 240, 255, 0.35);

  /* Primary Brand Neon */
  --amber-primary: #ff6b00;
  --amber-bright: #ff851b;
  --amber-glow: rgba(255, 107, 0, 0.45);
  --gold-accent: #ffb800;

  /* Secondary Cyberspace */
  --cyan-accent: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  --danger-red: #ff2d55;
  --success-green: #00ff88;

  /* Typography */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Text Colors */
  --text-primary: #f5f6f8;
  --text-secondary: #9ea5b3;
  --text-muted: #5e6676;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Blur & Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --backdrop-blur: blur(20px);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  cursor: default;
}

/* Custom Selection */
::selection {
  background: var(--amber-primary);
  color: #000;
}

/* Background Atmosphere & Grid */
.ambient-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 80% 10%, rgba(255, 107, 0, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 10% 40%, rgba(0, 240, 255, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255, 184, 0, 0.06) 0%, transparent 60%);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--amber-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.15s ease;
  box-shadow: 0 0 10px var(--amber-primary);
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 107, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

body.cursor-hover .custom-cursor-follower {
  width: 64px;
  height: 64px;
  border-color: var(--amber-bright);
  background-color: rgba(255, 107, 0, 0.12);
  backdrop-filter: blur(2px);
}

@media (pointer: coarse) {
  .custom-cursor-dot, .custom-cursor-follower {
    display: none !important;
  }
}

/* App Container */
.page-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.75rem 2rem;
  background: var(--bg-glass-heavy);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.2));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #a1a8b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-primary);
}

/* Live Operational Badge */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #a8ffd2;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success-green);
  box-shadow: 0 0 10px var(--success-green);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Compact Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--amber-primary);
  box-shadow: 0 0 8px var(--amber-primary);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  color: #fff;
}

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

/* Audio Toggle & Quick Call Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.audio-btn:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--border-active);
  color: var(--text-primary);
}

.audio-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.audio-bars span {
  width: 2px;
  height: 3px;
  background: var(--amber-primary);
  border-radius: 1px;
  transition: height 0.2s;
}

.audio-btn.playing .audio-bars span:nth-child(1) { animation: soundBar 0.8s ease-in-out infinite alternate; }
.audio-btn.playing .audio-bars span:nth-child(2) { animation: soundBar 1.1s ease-in-out 0.2s infinite alternate; }
.audio-btn.playing .audio-bars span:nth-child(3) { animation: soundBar 0.7s ease-in-out 0.4s infinite alternate; }

@keyframes soundBar {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Direct Phone Nav CTA */
.btn-emergency-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--amber-primary), #e65100);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-emergency-nav::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s;
}

.btn-emergency-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.55);
}

.btn-emergency-nav:hover::before {
  transform: rotate(45deg) translateY(100%);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

/* Container Utility */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5.5rem;
  overflow: hidden;
}

/* 3D WebGL Canvas Stage */
.webgl-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  cursor: grab;
}

.webgl-container:active {
  cursor: grabbing;
}

#canvas-3d {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* 3D Stage Interactive Floating Controls */
.webgl-controls-hud {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  background: var(--bg-glass-heavy);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.hud-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--cyan-accent);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hud-buttons {
  display: flex;
  gap: 0.5rem;
}

.hud-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
}

.hud-btn:hover, .hud-btn.active {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--amber-primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.hud-hint {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Hero Content Area */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 0;
  pointer-events: auto;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-chip.urgent {
  background: rgba(255, 45, 85, 0.12);
  border: 1px solid rgba(255, 45, 85, 0.3);
  color: #ff5e7e;
}

.hero-chip.location {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: var(--amber-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title .highlight-gradient {
  background: linear-gradient(135deg, #fff 20%, var(--amber-primary) 65%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  background: linear-gradient(135deg, var(--amber-primary), #ff3d00);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.45);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.65);
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Quick Metrics Row */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.metric-val span {
  color: var(--amber-primary);
}

.metric-lbl {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

/* Marquee Infinite Ticker */
.marquee-band {
  width: 100%;
  background: var(--amber-primary);
  color: #000;
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
  transform: rotate(-0.5deg) scale(1.01);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.marquee-item::after {
  content: '★';
  font-size: 0.9rem;
  opacity: 0.7;
}

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

/* Section Common Styles */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--amber-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-tag::before {
  content: '//';
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 750px;
}

.section-title span {
  color: var(--amber-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-top: 1rem;
}

/* Footer Styling */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 1.25rem 0;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--amber-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  color: var(--amber-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive Media Queries & Mobile Polish */
@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding-top: 6.5rem;
    min-height: auto;
  }
  .webgl-container {
    position: relative;
    width: 100%;
    height: 440px;
  }
  .webgl-controls-hud {
    bottom: 1rem;
    right: 1rem;
  }
  .hero-content {
    max-width: 100%;
    padding: 2rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links, .status-pill {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
  }
  .site-header {
    padding: 0.75rem 1rem;
  }
  .container {
    padding: 0 1.15rem;
  }
  .hero-title {
    font-size: clamp(2.1rem, 7.5vw, 2.9rem);
    line-height: 1.1;
  }
  .webgl-container {
    height: 350px;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-glow, .btn-secondary-glass {
    width: 100%;
    text-align: center;
  }
  .webgl-controls-hud {
    right: 0.5rem;
    left: 0.5rem;
    bottom: 0.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
  }
  .hud-buttons {
    width: 100%;
    justify-content: center;
  }
  .hud-btn {
    flex: 1;
    justify-content: center;
  }
  .hud-hint {
    display: none;
  }
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 15, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 10000;
  flex-direction: column;
  padding: 2rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mobile-drawer-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
}

.mobile-drawer-link:hover {
  color: var(--amber-primary);
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
