/* ============================================
   NATHAN EMOREY — VISUAL ARTS
   main.css | Royal Luxury Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Comforter+Brush&family=Manrope:wght@200;300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* ============ ROOT VARIABLES ============ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C87D;
  --gold-dim: #8A6F2E;
  --black: #050505;
  --black-rich: #0A0806;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --white: #FDFCFA;
  --gray-dark: #1A1714;
  --gray-mid: #3D3730;
  --gray-light: #9A9088;
  --platinum: linear-gradient(135deg, #8E8E8E 0%, #E8E8E8 45%, #B0B0B0 70%, #F5F5F5 100%);
  --font-display: 'Cinzel', serif;
  --font-signature: 'Comforter Brush', cursive;
  --font-editorial: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  --transition-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--gold); color: var(--black); }

html {
  overflow-y: scroll;
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ CUSTOM CURSOR ============ */
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition-smooth),
              height 0.3s var(--transition-smooth),
              opacity 0.3s,
              border-color 0.3s,
              background 0.3s;
  mix-blend-mode: normal;
}
#cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
body.cursor-hover #cursor-ring {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold-light);
}
body.cursor-link #cursor-ring {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-light);
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black-rich);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transition: opacity 0.8s var(--transition-smooth), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
  font-family: var(--font-signature);
  font-size: clamp(80px, 15vw, 180px);
  background: var(--platinum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderReveal 1s 0.3s var(--transition-smooth) forwards;
}
@keyframes preloaderReveal {
  to { opacity: 1; transform: translateY(0); }
}

.preloader-bar-wrap {
  width: min(300px, 60vw);
  height: 1px;
  background: var(--gray-mid);
  position: relative;
  overflow: hidden;
}
.preloader-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  width: 0;
  transition: width 2s var(--transition-smooth);
}
.preloader-count {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gray-light);
  text-transform: uppercase;
}

/* ============ NOISE GRAIN OVERLAY ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* ============ NAVIGATION ============ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--transition-smooth), background 0.5s;
}
#nav.scrolled {
  padding: 18px 48px;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.35em;
  color: rgba(245, 240, 232, 0.6);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition-smooth);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream);
  transition: all 0.4s var(--transition-smooth);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black-rich);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--transition-smooth), visibility 0.5s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
#mobile-menu a:hover { color: var(--gold); }

/* ============ GOLD DIVIDER ============ */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  flex: 1;
}
.gold-divider span {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ============ SECTION LABELS ============ */
.section-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--transition-smooth), transform 1s var(--transition-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--transition-smooth), transform 1s var(--transition-smooth);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--transition-smooth), transform 1s var(--transition-smooth);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ============ HERO ============ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px;
}

/* SLIDER */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s var(--transition-smooth), transform 6s var(--transition-smooth);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* HERO GRADIENT OVERLAYS */
.hero-slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 40%, transparent 70%),
    linear-gradient(to right, rgba(5,5,5,0.6) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-signature {
  font-family: var(--font-signature);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  color: rgba(245, 240, 232, 0.05);
  position: absolute;
  right: 0;
  bottom: 60px;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  text-shadow: none;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroReveal 1s 2.5s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s 2.7s forwards;
}
.hero-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-family: var(--font-editorial);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.6);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s 2.9s forwards;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s 3.1s forwards;
}
.btn-primary {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 60%, var(--gold));
  background-size: 200% 100%;
  padding: 18px 40px;
  text-decoration: none;
  display: inline-block;
  transition: background-position 0.5s, transform 0.3s var(--transition-smooth), box-shadow 0.3s;
  cursor: none;
}
.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.2);
  padding: 17px 40px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--transition-smooth);
  cursor: none;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Slide Indicators */
.hero-indicators {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: heroReveal 1s 3.3s forwards;
}
.hero-indicator {
  width: 1px;
  height: 32px;
  background: rgba(245, 240, 232, 0.2);
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.hero-indicator::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: var(--gold);
  transition: height 5s linear;
}
.hero-indicator.active::after { height: 100%; }

/* Slide Counter */
.hero-counter {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 10;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(245, 240, 232, 0.4);
  opacity: 0;
  animation: heroReveal 1s 3.3s forwards;
}
.hero-counter strong { color: var(--gold); }

/* Scroll Arrow */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  animation: heroReveal 1s 3.5s forwards;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============ MANIFESTO ============ */
#manifesto {
  padding: 160px 48px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#manifesto::before {
  content: '"';
  position: absolute;
  top: 60px;
  left: 30px;
  font-family: var(--font-editorial);
  font-size: 400px;
  line-height: 1;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  user-select: none;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto-quote {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 4vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 48px;
}
.manifesto-quote strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  display: inline;
}
.manifesto-attribution {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============ STATS BAR ============ */
#stats {
  padding: 60px 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.02);
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============ MURALS SECTION ============ */
#murals {
  padding: 140px 48px;
  background: var(--black);
  position: relative;
}
.section-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-title-block {}
.section-number {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
}
.section-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.3);
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.section-link {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: gap 0.3s var(--transition-smooth), border-color 0.3s;
  white-space: nowrap;
  margin-bottom: 8px;
}
.section-link:hover { gap: 20px; border-color: var(--gold); }

/* Mural Showcase — Big editorial layout */
.murals-featured {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mural-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.mural-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.mural-card.tall .mural-card-img { aspect-ratio: 3/4; }
.mural-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 1.2s var(--transition-smooth), filter 1s;
}
.mural-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(1); }
.mural-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth);
}
.mural-card:hover .mural-card-info { transform: translateY(0); opacity: 1; }
.mural-card-title {
  font-family: var(--font-editorial);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}
.mural-card-meta {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.mural-card-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(5,5,5,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

/* ============ FINE ART ============ */
#fineart {
  padding: 140px 48px;
  background: var(--cream);
  color: var(--black);
}
#fineart .section-title { color: var(--black); }
#fineart .section-title em { color: rgba(5,5,5,0.2); }
#fineart .section-number { color: var(--gold-dim); }
#fineart .section-link { color: var(--gold-dim); border-color: rgba(138,111,46,0.3); }

.fineart-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.art-card {
  cursor: none;
}
.art-card-frame {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.art-card-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1s var(--transition-smooth);
  display: block;
}
.art-card:hover .art-card-frame img { transform: scale(1.06); }
.art-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.art-card:hover .art-card-overlay { opacity: 1; }
.art-card-buy {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 14px 32px;
  cursor: none;
  transition: all 0.3s;
  background: transparent;
}
.art-card-buy:hover { background: var(--black); color: var(--cream); }
.art-card-title {
  font-family: var(--font-editorial);
  font-size: 26px;
  font-style: italic;
  color: var(--black);
  margin-bottom: 8px;
}
.art-card-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(5,5,5,0.1);
  padding-top: 12px;
  margin-top: 4px;
}
.art-card-size {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(5,5,5,0.5);
  letter-spacing: 0.1em;
}
.art-card-price {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.05em;
}

/* ============ SHOP ============ */
#shop {
  padding: 140px 48px;
  background: var(--black-rich);
  position: relative;
  overflow: hidden;
}
#shop::before {
  content: 'SHOP';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: min(30vw, 300px);
  font-weight: 900;
  color: rgba(201, 168, 76, 0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.shop-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.shop-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.5s var(--transition-smooth);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.shop-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
  transform: translateY(-4px);
}
.shop-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition-smooth), filter 0.5s;
  filter: brightness(0.8);
}
.shop-card:hover .shop-card-img img { transform: scale(1.06); filter: brightness(1); }
.shop-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 5px 10px;
}
.shop-card-body {
  padding: 28px;
}
.shop-card-cat {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.shop-card-title {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 6px;
}
.shop-card-desc {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 20px;
}
.shop-card-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
}
.shop-card-price small {
  font-size: 10px;
  color: var(--gray-light);
  font-weight: 300;
  margin-left: 4px;
}
.shop-add-btn {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 12px 20px;
  cursor: none;
  transition: background 0.3s;
}
.shop-add-btn:hover { background: var(--gold-light); }

/* Shop Modal */
#shop-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition-smooth);
}
#shop-modal.open { opacity: 1; visibility: visible; }
.shop-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.shop-modal-box {
  position: relative;
  z-index: 1;
  background: var(--gray-dark);
  border: 1px solid rgba(201, 168, 76, 0.2);
  max-width: 540px;
  width: 100%;
  padding: 48px;
  transform: translateY(20px);
  transition: transform 0.4s var(--transition-smooth);
}
#shop-modal.open .shop-modal-box { transform: translateY(0); }
.shop-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  cursor: none;
  background: none;
  border: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.shop-modal-close:hover { color: var(--cream); }
.shop-modal-title {
  font-family: var(--font-editorial);
  font-size: 32px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}
.shop-modal-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}
.shop-modal-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 24px;
}
.payment-label {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-btn {
  width: 100%;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.payment-btn.paystack {
  background: #0FA958;
  color: white;
}
.payment-btn.paystack:hover { background: #0d9049; }
.payment-btn.card {
  background: var(--gold);
  color: var(--black);
}
.payment-btn.card:hover { background: var(--gold-light); }
.payment-note {
  margin-top: 16px;
  font-size: 10px;
  color: var(--gray-light);
  text-align: center;
  font-style: italic;
}

/* ============ JOURNAL ============ */
#journal {
  padding: 140px 48px;
  background: var(--black);
}
.journal-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.journal-card {
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 0 0 28px;
  transition: border-color 0.4s;
  cursor: none;
}
.journal-card:hover { border-color: var(--gold); }
.journal-date {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.journal-title {
  font-family: var(--font-editorial);
  font-size: 26px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.3s;
}
.journal-card:hover .journal-title { color: var(--gold-light); }
.journal-excerpt {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.journal-read {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.journal-card:hover .journal-read { color: var(--gold); }

/* ============ LABS ============ */
#labs {
  padding: 140px 48px;
  background: #020309;
  position: relative;
  overflow: hidden;
}
#labs canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.labs-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.labs-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.labs-title span {
  display: block;
  color: rgba(255,255,255,0.08);
  -webkit-text-stroke: 1px rgba(59, 130, 246, 0.4);
  font-style: italic;
  font-family: var(--font-editorial);
  font-weight: 300;
  font-size: 0.6em;
  letter-spacing: 0.05em;
  margin-top: 4px;
  -webkit-text-stroke: none;
  color: rgba(59, 130, 246, 0.5);
}
.labs-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
}
.labs-btn {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 18px 40px;
  background: none;
  cursor: none;
  transition: all 0.4s;
}
.labs-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

/* ============ CONTACT ============ */
#contact {
  padding: 140px 48px;
  background: var(--black);
  position: relative;
}
.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Business Card */
.card-scene {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.7;
  perspective: 1200px;
  cursor: pointer;
  margin: 0 auto;
}
.card-object {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-style: preserve-3d;
}
.card-scene:hover .card-object,
.card-scene.flipped .card-object { transform: rotateY(180deg); }
.card-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--gray-dark);
  border: 1px solid rgba(201, 168, 76, 0.25);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.05);
}
.card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 45%, transparent 60%);
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-200%); }
  100% { transform: translateX(200%); }
}
.card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.card-back {
  transform: rotateY(180deg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-name {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--platinum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-role {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gray-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.card-contacts a {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 8px;
}
.card-contacts a:hover { color: var(--gold-light); }
.card-hint {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: center;
  margin-top: 24px;
  opacity: 0.5;
}

/* Contact Form */
.contact-form-title {
  font-family: var(--font-editorial);
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 48px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-input, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 232, 0.15);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.form-input:focus, .form-textarea:focus {
  border-bottom-color: var(--gold);
}
.form-textarea { resize: none; min-height: 100px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(245,240,232,0.2); }
.form-submit {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  padding: 20px 48px;
  cursor: none;
  transition: all 0.3s var(--transition-smooth);
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
}
.form-success.show { display: block; }
.form-success p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
}

/* ============ PAINT CANVAS ============ */
#paint-section {
  padding: 100px 48px;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.paint-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.paint-title {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 40px;
}
.easel-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.easel-leg-left, .easel-leg-right {
  position: absolute;
  bottom: -60px;
  width: 6px;
  height: 80px;
  background: linear-gradient(to bottom, #6B3F1F, #4A2C10);
  border-radius: 3px;
}
.easel-leg-left { left: 15%; transform: rotate(15deg); transform-origin: top center; }
.easel-leg-right { right: 15%; transform: rotate(-15deg); transform-origin: top center; }
.easel-crossbar {
  position: absolute;
  top: 30%;
  left: 8%;
  right: 8%;
  height: 8px;
  background: linear-gradient(to right, #6B3F1F, #8B5A2B, #6B3F1F);
  border-radius: 4px;
  z-index: 5;
}
#paint-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: 16px solid #4A2C10;
  box-shadow: 0 0 0 2px #2A1A0A, 0 40px 100px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  background: white;
}
.paint-reveal-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C9A84C 0%, #8B5E3C 30%, #6B2737 60%, #2E1B4E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.paint-reveal-bg h3 {
  font-family: var(--font-signature);
  font-size: clamp(36px, 6vw, 80px);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.paint-reveal-bg p {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
#paint-canvas-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.paint-hint {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============ FOOTER ============ */
#footer {
  padding: 80px 48px 40px;
  background: var(--black-rich);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}
/* Floating Elements */
#footer::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: -150px;
  left: 10%;
  animation: floatSlow 20s ease-in-out infinite;
  pointer-events: none;
}
#footer::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  bottom: -100px;
  right: 15%;
  animation: floatSlow 15s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand {}
.footer-brand-sig {
  font-family: var(--font-signature);
  font-size: 64px;
  line-height: 1;
  background: var(--platinum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: block;
}
.footer-brand-desc {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 13px;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact-item {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-copy {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.2);
}
.footer-locations {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.2);
}

/* ============ MODAL (LABS) ============ */
#labs-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
#labs-modal.open { opacity: 1; visibility: visible; }
.labs-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 9, 0.95);
  backdrop-filter: blur(16px);
}
.labs-modal-box {
  position: relative;
  z-index: 1;
  background: #0A0E1A;
  border: 1px solid rgba(59, 130, 246, 0.2);
  max-width: 480px;
  width: 100%;
  padding: 56px 48px;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.4s var(--transition-smooth);
}
#labs-modal.open .labs-modal-box { transform: scale(1); }
.labs-modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.labs-modal-sub {
  color: rgba(59, 130, 246, 0.7);
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.labs-modal-close {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  cursor: none;
  background: none;
  border: none;
  transition: color 0.3s;
}
.labs-modal-close:hover { color: white; }

/* ============ SCROLL PROGRESS ============ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold-light));
  z-index: 99999;
  transition: width 0.1s linear;
  width: 0%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .murals-featured { grid-template-columns: 1fr; }
  .fineart-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(201,168,76,0.1); }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .labs-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #nav { padding: 20px 24px; }
  #nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #hero { padding: 100px 24px 60px; }
  .hero-indicators { display: none; }
  .hero-scroll { display: none; }

  #manifesto, #murals, #fineart, #shop, #journal, #labs, #contact, #paint-section { padding: 80px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
  .fineart-grid, .shop-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  #cursor-ring, #cursor-dot { display: none; }
  body { cursor: auto; }
  .btn-primary, .btn-ghost, .nav-cta, .form-submit, .shop-add-btn, .payment-btn, .labs-btn { cursor: pointer; }
  .mural-card, .art-card, .shop-card, .journal-card, .card-scene { cursor: pointer; }
}
