/* ============================================
   EEMS RECORDS - Premium Record Label
   ============================================ */

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

:root {
  /* Colors */
  --midnight: #0a0a12;
  --deep-blue: #0f0f1a;
  --navy: #161625;
  --slate: #1e1e30;
  --gold: #d4a853;
  --gold-light: #e8c882;
  --gold-dark: #b8923f;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-100: rgba(255, 255, 255, 0.9);
  --gray-200: rgba(255, 255, 255, 0.7);
  --gray-300: rgba(255, 255, 255, 0.5);
  --gray-400: rgba(255, 255, 255, 0.3);
  --gray-500: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* Base */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  background: var(--midnight);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Noise Overlay - Subtle texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gray-500);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-200);
  letter-spacing: 0.4em;
  margin-top: 2px;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-200);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--gold);
  left: 0;
  transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--container-padding) var(--space-2xl);
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 168, 83, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 50%, var(--midnight) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-lines span {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--gray-500) 50%, transparent 100%);
  animation: lineFloat 8s var(--ease-in-out) infinite;
}

.hero-lines span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-lines span:nth-child(2) { left: 30%; animation-delay: 1.5s; }
.hero-lines span:nth-child(3) { left: 50%; animation-delay: 3s; }
.hero-lines span:nth-child(4) { left: 70%; animation-delay: 4.5s; }
.hero-lines span:nth-child(5) { left: 90%; animation-delay: 6s; }

@keyframes lineFloat {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.6; transform: scaleY(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-400);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--gray-200);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gray-300);
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--midnight);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
}

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

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-400);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.section-title.light {
  color: var(--white);
}

/* Mission Section */
.mission {
  padding: var(--space-3xl) 0;
  background: var(--deep-blue);
  text-align: center;
  position: relative;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-500), transparent);
}

.mission-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--gray-200);
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.value-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gray-500);
  transition: all 0.4s var(--ease-out);
}

.value-card:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.03);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  border: 1px solid var(--gray-400);
  color: var(--gold);
  transition: all 0.4s var(--ease-out);
}

.value-card:hover .value-icon {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-200);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, var(--navy) 50%, var(--midnight) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-2xl);
}

.cta-text p {
  font-size: 1.1rem;
  color: var(--gray-200);
  max-width: 500px;
  line-height: 1.8;
}

/* Verse Section */
.verse-section {
  padding: var(--space-2xl) 0;
  background: var(--deep-blue);
  border-top: 1px solid var(--gray-500);
  border-bottom: 1px solid var(--gray-500);
}

.verse {
  text-align: center;
}

.verse p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--gray-100);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.verse cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  background: var(--midnight);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--gray-500);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-sm);
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-200);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

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

.footer-bottom {
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-300);
}

/* ============================================
   PAGE HEADER (About, Contact)
   ============================================ */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--container-padding) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, var(--deep-blue) 100%);
}

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

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--gray-200);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  padding: var(--space-3xl) 0;
}

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

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.beliefs-list {
  list-style: none;
  margin: var(--space-lg) 0;
}

.beliefs-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-500);
}

.beliefs-list li:last-child {
  border-bottom: none;
}

.belief-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.beliefs-list span {
  font-size: 1rem;
  color: var(--gray-100);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-info > p {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gray-500);
  transition: all 0.3s var(--ease-out);
}

.contact-item:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.03);
}

.contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.contact-item a {
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

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

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-200);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-500);
  transition: all 0.3s var(--ease-out);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.artist-submit {
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.02) 100%);
  border: 1px solid var(--gold);
}

.artist-submit h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.artist-submit p {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.artist-submit a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s var(--ease-out);
}

.artist-submit a:hover {
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grid items */
.values-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.values-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.values-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .value-card {
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: var(--space-md);
    padding: var(--space-lg);
  }

  .value-icon {
    margin: 0;
  }

  .value-card h3 {
    margin-bottom: var(--space-xs);
  }

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

  .cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--midnight);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
  }

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

  .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
  }

  /* Hero Mobile */
  .hero {
    padding: var(--space-3xl) var(--container-padding) var(--space-xl);
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

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

  .hero-scroll {
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  /* Sections Mobile */
  .mission,
  .cta-section,
  .about-section,
  .contact-section {
    padding: var(--space-2xl) 0;
  }

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

  .value-icon {
    margin: 0 auto var(--space-md);
  }

  /* Footer Mobile */
  .footer-links {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .social-links {
    flex-wrap: wrap;
  }

  .social-link {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 1rem 1.75rem;
  }

  .value-card {
    padding: var(--space-md);
  }

  .contact-item {
    padding: var(--space-md);
  }

  .artist-submit {
    padding: var(--space-md);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
