/* ============================================
   PROVOCATEUR GALLERY — Dark Cinematic Luxury
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-surface: #1a1a1a;
  --dark-border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #d4b65a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-primary: #e8e4dc;
  --text-secondary: #9a958c;
  --text-muted: #6b6760;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   CUSTOM GOLD CURSOR
   ============================================ */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), background 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
  border: 1px solid var(--gold);
}

.cursor-trail {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--dark-border);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cream);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem !important;
  transition: all 0.3s var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-cta::after { display: none !important; }

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.nav-menu-btn span {
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s;
}

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

/* ============================================
   HERO SLIDESHOW
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide .ken-burns {
  position: absolute;
  inset: -10%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--dark-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }
.btn-lg { padding: 1.2rem 3rem; font-size: 0.75rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.7;
}

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

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   FEATURED ARTIST (Tyler Shields)
   ============================================ */
.featured-artist {
  padding: 8rem 0;
  background: var(--dark);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.featured-image {
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.6s;
}

.featured-image:hover img { filter: grayscale(0%); }

.featured-image-accent {
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--gold-dim);
  z-index: -1;
}

.featured-info {
  padding: 2rem 0;
}

.featured-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}

.featured-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 0.75rem;
}

.featured-bio {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.featured-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================
   WORKS MOSAIC GRID
   ============================================ */
.works-section {
  padding: 8rem 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-surface);
}

.work-card.tall {
  grid-row: span 2;
}

.work-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.work-card.tall .work-image {
  min-height: 100%;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition), filter 0.6s;
  filter: grayscale(30%) brightness(0.9);
}

.work-card:hover .work-image img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.work-card:hover .work-overlay { opacity: 1; }

.work-overlay-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.8rem 2rem;
  transition: all 0.3s;
}

.work-card:hover .work-overlay-text {
  background: var(--gold);
  color: var(--black);
}

.work-info {
  padding: 1rem 1.25rem;
}

.work-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.work-info p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   COLLECTIBLE ARTISTS
   ============================================ */
.artists-section {
  padding: 8rem 0;
  background: var(--dark);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-border);
}

.artist-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.artist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}

.artist-card:hover::before { width: 100%; }
.artist-card:hover { background: var(--dark-surface); }

.artist-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.artist-card:hover .artist-name { color: var(--gold); }

.artist-genre {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.artist-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--transition);
}

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

.artist-hover p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.artist-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   SOURCE CTA
   ============================================ */
.source-cta-section {
  padding: 6rem 0;
}

.source-cta {
  text-align: center;
  padding: 5rem 3rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
  position: relative;
}

.source-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.source-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.source-cta p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--dark-border);
}

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

.footer-brand .logo-text {
  font-size: 1.2rem;
}

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

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  padding: 3rem;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.4s var(--transition);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color 0.3s;
  line-height: 1;
}

.modal-close:hover { color: var(--cream); }

.modal-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================
   FORMS
   ============================================ */
.gallery-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  cursor: none;
}

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

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239a958c' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--dark);
  color: var(--text-primary);
}

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

.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
  text-align: center;
  min-height: 1.5rem;
}

.form-status.success { color: var(--gold); }
.form-status.error { color: #e74c3c; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

/* Staggered children */
.works-grid .work-card:nth-child(1) { transition-delay: 0.05s; }
.works-grid .work-card:nth-child(2) { transition-delay: 0.1s; }
.works-grid .work-card:nth-child(3) { transition-delay: 0.15s; }
.works-grid .work-card:nth-child(4) { transition-delay: 0.2s; }
.works-grid .work-card:nth-child(5) { transition-delay: 0.25s; }
.works-grid .work-card:nth-child(6) { transition-delay: 0.3s; }
.works-grid .work-card:nth-child(7) { transition-delay: 0.35s; }
.works-grid .work-card:nth-child(8) { transition-delay: 0.4s; }
.works-grid .work-card:nth-child(9) { transition-delay: 0.45s; }

.artists-grid .artist-card:nth-child(1) { transition-delay: 0.05s; }
.artists-grid .artist-card:nth-child(2) { transition-delay: 0.1s; }
.artists-grid .artist-card:nth-child(3) { transition-delay: 0.15s; }
.artists-grid .artist-card:nth-child(4) { transition-delay: 0.2s; }
.artists-grid .artist-card:nth-child(5) { transition-delay: 0.25s; }
.artists-grid .artist-card:nth-child(6) { transition-delay: 0.3s; }
.artists-grid .artist-card:nth-child(7) { transition-delay: 0.35s; }
.artists-grid .artist-card:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .featured-image img {
    height: 400px;
  }

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

  .work-card.tall {
    grid-row: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .gallery-form .form-row {
    grid-template-columns: 1fr;
  }

  .featured-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .source-cta {
    padding: 3rem 1.5rem;
  }

  /* Disable custom cursor on touch */
  .custom-cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
  a, button, input, select, textarea { cursor: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 2rem; }
  .featured-stats { gap: 1rem; }
  .stat-number { font-size: 1.5rem; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

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

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

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