/* =============================================
   PROTAGONIST ART — Premier NFT & Digital Art Gallery
   Dark museum mode. Pure black canvas. Editorial type.
   Single neon cyan accent. Art does the heavy lifting.
   ============================================= */

:root {
  --void:         #000000;
  --void-2:       #08080C;
  --void-3:       #11111A;
  --ink:          #FFFFFF;
  --ink-dim:      rgba(255,255,255,0.72);
  --ink-faint:    rgba(255,255,255,0.46);
  --ink-line:     rgba(255,255,255,0.09);
  --ink-line-2:   rgba(255,255,255,0.16);
  --neon:         #00FFE0;       /* electric cyan — digital accent */
  --neon-2:       #00C8B4;
  --neon-soft:    rgba(0,255,224,0.18);
  --neon-glow:    rgba(0,255,224,0.55);
  --magenta:      #FF00CC;       /* secondary digital accent for GIF tag */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: var(--void);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Subtle film-grain texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.7) 0.4px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.5) 0.4px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: screen;
}

main, .nav, .footer { position: relative; z-index: 1; }

.wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.wrap.narrow { max-width: 980px; }

/* ============== TYPE ============== */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--ink);
}
h1 {
  font-size: clamp(3.5rem, 11vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  margin-bottom: 0.4em;
  font-weight: 800;
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 0.4em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }

.serif {
  font-family: 'Instrument Serif', 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: none;
}

.neon-mark {
  color: var(--neon);
  text-shadow: 0 0 10px var(--neon-glow), 0 0 28px var(--neon-soft);
}

p {
  font-size: 1.08rem;
  color: var(--ink-dim);
  margin-bottom: 1em;
  line-height: 1.65;
  max-width: 60ch;
}

a { color: var(--ink); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--neon); }
::selection { background: var(--neon); color: var(--void); }

.mono {
  font-family: 'JetBrains Mono', 'Source Code Pro', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Chapter / eyebrow */
.chapter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chapter::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}
.chapter .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow);
  animation: pulse 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: 1480px;
  margin: 0 auto;
}
.brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.brand .dot {
  width: 10px;
  height: 10px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-glow);
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
.brand .art-w {
  font-weight: 400;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  color: var(--ink-dim);
  text-transform: none;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon-glow);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--neon); }

/* ============== BUTTONS ============== */
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  background: var(--ink);
  color: var(--void) !important;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  line-height: 1.1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
a.btn::after,
button.btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.25s;
}
a.btn:hover,
button.btn:hover {
  background: var(--neon);
  color: var(--void) !important;
  border-color: var(--neon);
  box-shadow: 0 0 0 6px rgba(0,255,224,0.18), 0 0 32px var(--neon-soft);
}
a.btn:hover::after,
button.btn:hover::after { transform: translateX(4px); }

a.btn-ghost,
button.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink-line-2);
}
a.btn-ghost:hover,
button.btn-ghost:hover {
  background: var(--ink);
  color: var(--void) !important;
  border-color: var(--ink);
}

a.btn-neon,
button.btn-neon {
  background: var(--neon);
  color: var(--void) !important;
  border-color: var(--neon);
  box-shadow: 0 0 24px var(--neon-soft);
}
a.btn-neon:hover,
button.btn-neon:hover {
  background: var(--ink);
  color: var(--void) !important;
  border-color: var(--ink);
  box-shadow: 0 0 32px rgba(255,255,255,0.4);
}

.cta-btn {
  padding: 11px 22px !important;
  font-size: 0.76rem !important;
}
.nav .cta-btn { background: var(--neon); color: var(--void) !important; border-color: var(--neon); }
.nav .cta-btn:hover { background: var(--ink); color: var(--void) !important; border-color: var(--ink); }

/* ============== HERO ============== */
.hero {
  padding: 90px 0 80px;
  position: relative;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-meta .left,
.hero-meta .right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-meta .right { text-align: right; }
.hero h1 {
  margin: 0 0 50px;
}
.hero .sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 60px;
}
.hero .sub {
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--ink-line);
  position: relative;
  margin: 70px 0 0;
}
.hero-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 90px;
  height: 3px;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon-glow);
}

/* ============== HERO ART REEL ============== */
.art-reel {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--ink-line);
  background: var(--void-2);
}
.art-reel-track {
  display: flex;
  gap: 14px;
  animation: reel-scroll 60s linear infinite;
  width: max-content;
}
.art-reel-track:hover { animation-play-state: paused; }
.art-reel img {
  height: 380px;
  width: auto;
  display: block;
  border-radius: 4px;
  flex-shrink: 0;
}
@keyframes reel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== FEATURED VIDEO / MOTION FRAME ============== */
.motion-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--void-2);
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  overflow: hidden;
}
.motion-frame video,
.motion-frame img,
.motion-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.motion-frame .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon);
  color: var(--neon);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  text-shadow: 0 0 8px var(--neon-glow);
}

/* ============== MARQUEE ============== */
.marquee {
  margin: 0;
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--void);
}
.marquee-row {
  display: flex;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  gap: 40px;
}
.marquee-row span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  text-transform: uppercase;
}
.marquee-row span.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--neon);
  text-transform: none;
  font-size: 1.75rem;
  text-shadow: 0 0 12px var(--neon-glow);
}
.marquee-row span::after {
  content: "◆";
  font-size: 0.5em;
  color: var(--neon);
  opacity: 0.7;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== SECTIONS ============== */
.section { padding: 130px 0; position: relative; }
.section.tight { padding: 70px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head h2 { margin-bottom: 0; }
.section-head .lead {
  font-size: 1.06rem;
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 500px;
}
.section-head .view-all {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--neon);
  padding-bottom: 4px;
  transition: all 0.2s;
}
.section-head .view-all::after { content: "→"; transition: transform 0.2s; }
.section-head .view-all:hover { color: var(--neon); }
.section-head .view-all:hover::after { transform: translateX(4px); }

/* ============== GALLERY ============== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-line);
  align-items: center;
}
.gallery-filter {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--ink-line-2);
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.gallery-filter.active {
  background: var(--neon);
  color: var(--void);
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-soft);
}
.gallery-count {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.gallery-count strong { color: var(--neon); font-weight: 700; }

.gallery {
  column-count: 4;
  column-gap: 14px;
}
.gallery-loading, .gallery-empty {
  column-span: all;
  text-align: center;
  padding: 100px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.gallery-item {
  display: block;
  margin: 0 0 14px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--void-2);
  border: 1px solid var(--ink-line);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), border-color 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 24px 60px rgba(0,255,224,0.15), 0 0 0 1px var(--neon-soft);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--neon);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--neon);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}
.gallery-item:hover .tag { opacity: 1; }
.gallery-item.is-gif .gif-marker {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--magenta);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--magenta);
  z-index: 3;
}

/* ============== STATS ============== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-line-2);
  border-bottom: 1px solid var(--ink-line-2);
  padding: 60px 0;
  margin: 40px 0;
}
.stat {
  padding: 0 30px;
  border-right: 1px solid var(--ink-line);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat .num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  color: var(--ink);
}
.stat .num .neon-mark { font-style: normal; }
.stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============== BIG TYPE CTA ============== */
.big-type-cta {
  padding: 130px 0;
  text-align: center;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  background: var(--void);
}
.big-type-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,255,224,0.10), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,0,204,0.06), transparent 60%);
  pointer-events: none;
}
.big-type-cta .wrap { position: relative; z-index: 1; }
.big-type-cta h2 {
  font-size: clamp(3rem, 11vw, 10rem);
  margin: 0 auto 36px;
  max-width: 1200px;
  line-height: 0.86;
  text-transform: uppercase;
}
.big-type-cta p {
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--ink-dim);
}
.big-type-cta .hero-cta { justify-content: center; }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 90px 0 60px;
  position: relative;
}
.page-header .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}
.page-header h1 {
  font-size: clamp(3rem, 9vw, 8.5rem);
  margin: 0 0 30px;
  line-height: 0.9;
  text-transform: uppercase;
}
.page-header .lead {
  font-size: 1.18rem;
  color: var(--ink-dim);
  max-width: 720px;
  line-height: 1.6;
}

/* ============== FORM ============== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid var(--ink-line);
}
.form-aside h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.form-aside p { font-size: 1rem; max-width: 100%; }
.form-aside ul { list-style: none; margin: 32px 0; }
.form-aside li {
  padding: 18px 0;
  border-top: 1px solid var(--ink-line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.form-aside li:last-child { border-bottom: 1px solid var(--ink-line); }
.form-aside li .li-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--neon);
  text-shadow: 0 0 6px var(--neon-glow);
  flex-shrink: 0;
  font-weight: 700;
  padding-top: 2px;
}
.form-aside li strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.form-aside li span {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gallery-form {
  background: var(--void-2);
  border: 1px solid var(--ink-line-2);
  border-radius: 8px;
  padding: 48px 44px;
  position: relative;
}
.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--ink-line-2);
  padding: 14px 16px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0,255,224,0.18);
}
.field select option { background: var(--void-2); color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.field .hint { font-size: 0.85rem; color: var(--ink-faint); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -10000px; }
.gallery-form button.btn { display: flex; width: 100%; margin-top: 12px; }

/* ============== EDITORIAL ============== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--ink-line);
}
.editorial .col-left .pull {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 20px;
}
.editorial .col-right p { font-size: 1.05rem; }
.editorial .col-right p:not(:last-child) { margin-bottom: 1.2em; }

/* ============== FOOTER ============== */
.footer {
  padding: 110px 0 36px;
  background: var(--void);
  border-top: 1px solid var(--ink-line);
}
.footer-big {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-big h2 {
  font-size: clamp(4rem, 16vw, 16rem);
  font-weight: 900;
  line-height: 0.84;
  margin: 0;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.footer-big h2 .neon-mark { font-style: normal; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer .brand { color: var(--ink); margin-bottom: 22px; }
.footer-brand p { font-size: 0.95rem; max-width: 380px; color: var(--ink-dim); }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 11px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--neon); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink-line-2);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.18s;
}
.socials a:hover {
  background: var(--neon);
  color: var(--void);
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-soft);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .gallery { column-count: 3; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat { border-right: none; padding: 0 30px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--ink-line); padding-left: 0; }
  .art-reel img { height: 280px; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 18px 22px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.cta-btn) { display: none; }
  .hero { padding: 60px 0; }
  .hero .sub-row { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
  .gallery { column-count: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .gallery-filters { gap: 8px; }
  .gallery-count { margin-left: 0; flex-basis: 100%; }
  .editorial { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-row { grid-template-columns: 1fr; padding: 36px 0; }
  .stat { padding: 18px 0 !important; border-right: none !important; border-bottom: 1px solid var(--ink-line); }
  .stat:last-child { border-bottom: none; }
  .art-reel img { height: 220px; }
}
@media (max-width: 480px) {
  .gallery { column-count: 1; }
  .footer-top { grid-template-columns: 1fr; }
}
