/* ============================================
   Amy Eventsängerin – V2 2026 Premium Design
   Cinematic · Smooth · GSAP-inspired Animations
   ============================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --bg-primary: #08090d;
  --bg-secondary: #0e1018;
  --bg-elevated: #13151c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(96, 165, 250, 0.3);
  
  --text-primary: #f0f0f5;
  --text-secondary: #9498a8;
  --text-tertiary: #6b6f80;
  --text-accent: #60a5fa;
  
  --accent-primary: #60a5fa;
  --accent-secondary: #3b82f6;
  --accent-warm: #93c5fd;
  --accent-gold: #fbbf24;
  --accent-glow: rgba(96, 165, 250, 0.15);
  
  --gradient-primary: linear-gradient(135deg, #60a5fa, #3b82f6);
  --gradient-warm: linear-gradient(135deg, #60a5fa, #93c5fd);
  --gradient-text: linear-gradient(135deg, #dbeafe, #60a5fa);
  
  --font-display: 'Instrument Serif', serif;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-primary);
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-primary); }
html::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 3px; }

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

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ══════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.preloader-waveform {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 24px;
  height: 40px;
  align-items: center;
}

.preloader-waveform span {
  display: block;
  width: 4px;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: preloader-wave 1s ease-in-out infinite;
}

.preloader-waveform span:nth-child(1) { animation-delay: 0s; }
.preloader-waveform span:nth-child(2) { animation-delay: 0.1s; }
.preloader-waveform span:nth-child(3) { animation-delay: 0.2s; }
.preloader-waveform span:nth-child(4) { animation-delay: 0.3s; }
.preloader-waveform span:nth-child(5) { animation-delay: 0.4s; }

@keyframes preloader-wave {
  0%, 100% { height: 10px; }
  50% { height: 36px; }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* ══════════════════════════════════════════════
   CUSTOM CURSOR
   ══════════════════════════════════════════════ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99997;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.cursor-outer {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.custom-cursor.hovering .cursor-inner {
  width: 4px;
  height: 4px;
}

.custom-cursor.hovering .cursor-outer {
  width: 56px;
  height: 56px;
  border-color: var(--accent-primary);
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-out-expo);
  border-radius: 1px;
}

.nav-links a:not(.nav-cta):hover { color: var(--text-primary); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: var(--bg-primary) !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger.active .hamburger-line:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.hamburger.active .hamburger-line:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.mobile-menu-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: inline-block;
  transform: translateY(30px);
  opacity: 0;
}

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

.mobile-menu.active .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }

.mobile-nav-links a:hover {
  color: var(--accent-primary);
}

.mobile-nav-cta {
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

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

/* Ambient gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-primary), transparent 70%);
  top: -20%; left: -10%;
  animation: orb-drift-1 45s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  bottom: -10%; right: -5%;
  animation: orb-drift-2 55s ease-in-out infinite alternate;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
  top: 40%; right: 20%;
  animation: orb-drift-3 50s ease-in-out infinite alternate;
  opacity: 0.12;
}

@keyframes orb-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, 20px) scale(1.04); }
}

@keyframes orb-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, -15px) scale(1.03); }
}

@keyframes orb-drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15px, -18px) scale(0.96); }
}

/* Grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

/* Hero image */
.hero-image-wrapper {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  height: 85%;
  pointer-events: none;
  z-index: 0;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.35;
  transition: transform 8s ease;
  will-change: transform;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 9, 13, 0.6), transparent 60%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  margin-left: 5%;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
}

.hero-label-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-word {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(100%);
  animation: hero-title-reveal 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-title-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 1s;
}

@keyframes hero-title-reveal {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 44px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.8s var(--ease-out-expo) 1.2s forwards;
}

@keyframes hero-fade-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.8s var(--ease-out-expo) 1.4s forwards;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); opacity: 0.5; }
  50% { opacity: 0.8; }
  100% { transform: translateX(200%); opacity: 0.5; }
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.45);
}

.hero-btn-primary svg { transition: transform 0.3s ease; }
.hero-btn-primary:hover svg { transform: translateX(4px); }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s var(--ease-out-expo);
}

.hero-btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--accent-primary);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hero-fade-in 0.8s var(--ease-out-expo) 2s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--border-medium);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 3.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════ */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  background: var(--bg-secondary);
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-tertiary);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--accent-primary) !important;
  font-size: 0.6rem !important;
}

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

/* ══════════════════════════════════════════════
   SECTION HEADER (reusable)
   ══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 20px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  background: var(--accent-glow);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-heading em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.anim-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.anim-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════ */
.about {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

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

/* Image column */
.about-image-col { position: relative; }

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

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

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-image-card:hover .about-image-frame img {
  transform: scale(1.05);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: all 0.5s ease;
}

.about-image-card:hover .about-image-accent {
  top: 12px;
  left: 12px;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  padding: 14px 20px;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  animation: badge-float 8s ease-in-out infinite;
}

.floating-badge-1 {
  bottom: 10%;
  left: -15%;
  animation-delay: 0s;
}

.floating-badge-2 {
  top: 8%;
  right: -12%;
  animation-delay: 2s;
}

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

.floating-badge-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-badge-icon {
  font-size: 1.5rem;
}

.floating-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text column */
.about-lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about-features {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
  flex: 1;
}

.about-feature:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bg-primary);
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* Tags */
.about-tags-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-group {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
}

.tag-group:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.tag-group-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: default;
}

.tag-pill:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════ */
.services {
  padding: 140px 0;
  position: relative;
  background: var(--bg-secondary);
}

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

.service-card {
  position: relative;
  padding: 44px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
  cursor: default;
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-glow), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover .service-card-glow { opacity: 1; }

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.08);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(96, 165, 250, 0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  transition: color 0.4s ease;
}

.service-card:hover .service-number {
  color: rgba(96, 165, 250, 0.12);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s var(--ease-spring);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.04) rotate(-2deg);
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--bg-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   BAND SECTION
   ══════════════════════════════════════════════ */
.band {
  padding: 140px 0;
  position: relative;
}

.band-intro {
  text-align: center;
  max-width: 700px;
  margin: -32px auto 64px;
}

.band-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.band-intro strong {
  color: var(--text-primary);
}

.instruments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.instrument-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
  cursor: default;
}

.instrument-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(96, 165, 250, 0.1);
}

.instrument-emoji {
  font-size: 2.4rem;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.instrument-card:hover .instrument-emoji {
  transform: scale(1.08) rotate(3deg);
}

.instrument-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.instrument-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) scale(0);
  transition: transform 0.5s var(--ease-spring), opacity 0.4s ease;
  opacity: 0;
}

.instrument-card:hover .instrument-ring {
  transform: translate(-50%, -60%) scale(1);
  opacity: 1;
}

/* ══════════════════════════════════════════════
   GALLERY SECTION
   ══════════════════════════════════════════════ */
.gallery {
  padding: 140px 0 100px;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  will-change: transform;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 9, 13, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}

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

.gallery-caption {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transform: translateY(10px) scale(0.8);
  transition: all 0.4s var(--ease-spring);
  opacity: 0;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-icon svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 9, 13, 0.96);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.lightbox.active img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
  z-index: 1;
}

.lightbox-close:hover {
  background: var(--bg-card-hover);
  transform: rotate(90deg);
  border-color: var(--accent-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
  z-index: 1;
}

.lightbox-nav:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-primary);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════════
   BOOKING SECTION
   ══════════════════════════════════════════════ */
.booking {
  padding: 140px 0;
  position: relative;
}

.booking-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
}

.booking-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.booking-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.booking-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: -50%;
  left: -15%;
  animation: orb-drift-1 10s ease-in-out infinite alternate;
}

.booking-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-warm);
  bottom: -40%;
  right: -10%;
  animation: orb-drift-2 12s ease-in-out infinite alternate;
}

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

.booking-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.3);
  animation: booking-pulse 3s ease-in-out infinite;
}

@keyframes booking-pulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(96, 165, 250, 0.3); }
  50% { box-shadow: 0 12px 40px rgba(96, 165, 250, 0.3), 0 0 0 12px rgba(96, 165, 250, 0.08), 0 0 0 24px rgba(96, 165, 250, 0.04); }
}

.booking-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--bg-primary);
}

.booking-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.booking-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.booking-notice svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.booking-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.booking-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.5);
}

.btn-glow svg { width: 20px; height: 20px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: var(--accent-glow);
  transform: translateY(-3px);
}

.btn-outline svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-social-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-spring);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.25);
}

.social-link:hover svg { color: var(--bg-primary); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 48px 0 28px;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-seo-links a {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.7;
  position: relative;
}

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

.footer-seo-links a:hover {
  color: var(--text-secondary);
  opacity: 1;
}

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

/* ══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .instruments-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-image-wrapper { width: 50%; opacity: 0.7; }
  .gallery-item { aspect-ratio: 3 / 4; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  
  .hero { padding-top: 100px; }
  
  .hero-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    opacity: 0.25;
  }
  
  .hero-content {
    margin-left: 0;
    text-align: center;
  }
  
  .hero-label { justify-content: center; }
  .hero-label-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    white-space: nowrap;
  }
  .hero-title-line { text-align: center; }
  .hero-cta-group { justify-content: center; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-image-col { max-width: 400px; margin: 0 auto; }
  
  .about-features { flex-direction: column; }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  
  .instruments-grid { grid-template-columns: repeat(2, 1fr); }
  
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .gallery-item {
    aspect-ratio: 3 / 4;
  }
  
  .booking-wrapper { padding: 48px 28px; }
  .booking-actions { flex-direction: column; align-items: center; }
  
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-social { align-items: center; }
  
  .custom-cursor { display: none; }
  
  .floating-badge {
    padding: 10px 16px;
    border-radius: var(--radius-md);
  }
  .floating-badge-1 { left: 0; bottom: 8%; }
  .floating-badge-2 { right: 0; top: 8%; }
}

@media (max-width: 480px) {
  .hero-title-word { font-size: 2.5rem; }
  .hero-label-text {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
  }
  .instruments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .instrument-card { padding: 28px 12px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 6px; }
  .gallery-item { aspect-ratio: 3 / 4; }
  .section-heading { font-size: 1.8rem; }
  .floating-badge {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
  }
  .floating-badge-number {
    font-size: 1.2rem;
  }
  .floating-badge-icon {
    font-size: 1.1rem;
  }
  .floating-badge-label {
    font-size: 0.65rem;
  }
  .floating-badge-1 { left: 4px; bottom: 6%; }
  .floating-badge-2 { right: 4px; top: 6%; }
}

/* ── Page transition ── */
.page-transition-enter {
  animation: page-enter 0.6s var(--ease-out-expo) forwards;
}

@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}
