/* ============================================
   OMF GEOMETRY — Premium Redesign v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --bg: #04080f;
  --bg-elevated: #0c0c0c;
  --bg-card: #080f1a;
  --bg-card-hover: #141414;
  --gold: #00BFFF;
  --gold-light: #40D4FF;
  --gold-dim: #0080CC;
  --gold-glow: rgba(0, 191, 255, 0.15);
  --gold-glow-strong: rgba(0, 191, 255, 0.4);
  --text: #d4d4d4;
  --text-muted: #777777;
  --text-soft: #999999;
  --white: #f5f5f5;
  --pure-white: #ffffff;
  --border: rgba(0, 191, 255, 0.15);
  --border-hover: rgba(0, 191, 255, 0.6);
  --border-strong: rgba(0, 191, 255, 0.8);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--white);
  line-height: 1.15;
  font-weight: 400;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

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

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--white);
  font-weight: 300;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: color var(--transition);
  position: relative;
  font-family: var(--sans);
}

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

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 32px 80px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 191, 255, 0.03) 0%, transparent 70%);
}

.hero-bg {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  opacity: 0.04;
  z-index: 0;
  animation: heroRotate 120s linear infinite;
}

@keyframes heroRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.07; }
}

.hero-bg-pulse {
  animation: heroPulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 40px;
  font-family: var(--sans);
  background: rgba(0, 191, 255, 0.03);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-tag-cta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}
.hero-tag-cta strong { color: var(--cyan); font-weight: 600; }

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-follower-count {
  margin-top: 48px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-family: var(--sans);
}

.hero-follower-count strong {
  color: var(--gold);
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.3);
}

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

.btn-secondary:hover {
  background: rgba(0, 191, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(0, 191, 255, 0.08);
  color: var(--gold-light);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.8rem;
}

/* --- Stats Bar --- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 32px;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  font-family: var(--sans);
}

/* --- Section --- */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* --- Featured Artist Cards (Magazine Style) --- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  aspect-ratio: 3/4;
  background: var(--bg-card);
}

.artist-card:hover {
  border-color: var(--gold-glow-strong);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
              0 0 60px rgba(0, 191, 255, 0.08);
}

.artist-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
  filter: brightness(0.85) saturate(0.9);
}

.artist-card:hover .artist-card-image {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(1);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 6, 0.95) 0%,
    rgba(6, 6, 6, 0.5) 35%,
    transparent 65%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* Always show a subtle bottom gradient */
.artist-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.8) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity var(--transition);
}

.artist-card:hover::after {
  opacity: 0;
}

.artist-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 2;
}

.artist-card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--pure-white);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.artist-card-handle {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.artist-card-location {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 4px;
  font-weight: 400;
}

.artist-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

/* Legacy card body for non-overlay cards */
.artist-card-body {
  padding: 20px;
}

/* --- Tags --- */
.tag {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(0, 191, 255, 0.1);
  color: var(--gold);
  border: 1px solid rgba(0, 191, 255, 0.2);
}

/* --- Latest Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
}

.feature-card-body {
  padding: 20px;
}

.feature-card-handle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.feature-card-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Instagram CTA Section --- */
.ig-cta {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ig-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 191, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ig-cta-handle {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.ig-cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
}

.ig-cta .btn {
  position: relative;
}

/* --- Filter Bar (Pill Buttons) --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  align-items: center;
  justify-content: center;
}

.filter-bar label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-right: 8px;
  font-family: var(--sans);
}

.filter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0, 191, 255, 0.08);
}

.filter-pill.active {
  background: rgba(0, 191, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

/* Keep select as fallback for style filter */
.filter-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  appearance: none;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300BFFF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  min-width: 160px;
  transition: all var(--transition);
}

.filter-select:hover {
  border-color: var(--gold);
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

/* --- Directory Count Badge --- */
.directory-count {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(0, 191, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  margin-top: 16px;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-date {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 400;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Blog Post --- */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 80px;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-post-date {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.blog-post-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 400;
}

.blog-post-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  border: 1px solid var(--border);
}

.blog-post-content {
  font-size: 1.05rem;
  line-height: 1.9;
}

.blog-post-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 20px;
}

.blog-post-content h3 {
  font-size: 1.3rem;
  margin: 36px 0 16px;
}

.blog-post-content p { margin-bottom: 20px; }

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-post-content li { margin-bottom: 8px; }

.blog-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 28px;
  margin: 32px 0;
  background: rgba(0, 191, 255, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-soft);
}

/* --- Artist Profile --- */
.profile-hero {
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.profile-info { flex: 1; min-width: 280px; }

.profile-info h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.profile-handle {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.profile-location {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.profile-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.profile-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.gallery-item:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Newsletter --- */
.newsletter {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  flex: 1;
  min-width: 240px;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

/* --- Submit Form --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
}

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

.submit-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 48px;
  text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--sans);
}

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

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.footer-copy a {
  color: var(--text-muted);
}

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

/* --- Geometric Decorations --- */
.geo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.geo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 32px;
}

.geo-divider::before,
.geo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}

.geo-divider::after {
  background: linear-gradient(90deg, var(--border), transparent);
}

.geo-divider-icon {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid--featured {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }

  .hero { min-height: 85vh; padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .stats-inner {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }
  .stat-item {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .artists-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .artists-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }
  .artist-card {
    aspect-ratio: 4/5;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .feature-card-body { padding: 10px; }
  .feature-card-caption { display: none; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .profile-hero { flex-direction: column; text-align: center; }
  .profile-image { width: 200px; height: 200px; }
  .profile-tags { justify-content: center; }

  .blog-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 48px 24px; }
  .submit-form { padding: 32px 20px; }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .ig-cta { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid--featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .artists-grid--featured .artist-card-info {
    padding: 14px 12px;
  }
  .artists-grid--featured .artist-card-name {
    font-size: 0.95rem;
  }
  .artists-grid--featured .artist-card-handle,
  .artists-grid--featured .artist-card-location {
    font-size: 0.65rem;
  }
  .artist-card-name {
    font-size: 1.2rem;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .feature-card-body { padding: 8px; }
  .feature-card-caption { display: none; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn { width: 100%; justify-content: center; }
}

/* --- Blue Neon Theme Additions --- */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 191, 255, 0.6));
  animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(0, 191, 255, 0.6)); }
  50% { filter: drop-shadow(0 0 70px rgba(0, 191, 255, 0.9)) drop-shadow(0 0 120px rgba(0, 191, 255, 0.3)); }
}
#constellation-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.nav, .hero, section, footer { position: relative; z-index: 1; }
