/* --- BASE --- */
:root {
  --bg: #0B0B0B;
  --bg-2: #111111;
  --bg-3: #181818;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --text: #F5F0E8;
  --text-dim: rgba(245, 240, 232, 0.5);
  --text-dimmer: rgba(245, 240, 232, 0.25);
  --red-accent: #8B1A1A;
  --red-dim: rgba(139, 26, 26, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 48px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 420px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  width: fit-content;
  border-radius: 2px;
}

/* --- BAG MOCKUP (CSS) --- */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bag-mockup {
  position: relative;
  width: 240px;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.15));
}

.bag-body {
  background: linear-gradient(160deg, #1a1a2e 0%, #0d0d1a 40%, #0a0a12 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px 6px 8px 8px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.bag-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%);
}

.bag-top-seal {
  height: 20px;
  background: linear-gradient(90deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.bag-top-seal::before {
  content: 'NOIRVAULT';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(201,168,76,0.5);
}

.bag-content {
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.bag-logo-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  line-height: 1;
}

.bag-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--text);
  opacity: 0.7;
}

.bag-product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--text);
  text-align: center;
  margin-top: 4px;
}

.bag-subtext {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.bag-drip {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  border-radius: 1px;
  margin-top: 8px;
  position: relative;
}

.bag-drip::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

.bag-bottom {
  padding: 10px 16px 14px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin: 0 12px;
}

.bag-thc {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.8;
}

.bag-batch {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
}

/* --- MANIFESTO --- */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.manifesto-text {
  font-size: 18px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
}

.manifesto-text.accent {
  color: var(--text);
  font-weight: 400;
}

.manifesto-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 48px 0;
}

/* --- SERVICES --- */
.services {
  padding: 100px 48px;
}

.services-header { margin-bottom: 64px; }

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.services-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}

.service-card:hover { background: var(--bg-2); }

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

/* --- SHOWCASE --- */
.showcase {
  padding: 100px 48px;
  background: var(--bg-2);
}

.showcase-header { margin-bottom: 56px; }

.showcase-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  aspect-ratio: 3/4;
}

.showcase-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

/* Candy Vault mockup */
.cv-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 24px;
}

.cv-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(201,168,76,0.03) 8px, rgba(201,168,76,0.03) 9px);
}

.cv-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--text);
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.cv-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
}

.cv-drips {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(0deg, var(--gold) 0%, transparent 100%);
  opacity: 0.15;
}

.cv-neon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px var(--gold);
}

/* Ashborn mockup */
.as-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1210 0%, #2d1f1a 50%, #0a0806 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  position: relative;
}

.as-texture {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.as-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.15em;
  color: #d4a96a;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.as-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Neon mockup */
.neon-mockup {
  width: 100%;
  height: 100%;
  background: #050508;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.neon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
}

.neon-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: #C9A84C;
  text-shadow: 0 0 10px #C9A84C, 0 0 20px rgba(201,168,76,0.5);
  position: relative;
  z-index: 1;
}

.neon-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.neon-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-dimmer);
}

/* Streetwear mockup */
.sw-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.sw-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, rgba(201,168,76,0.05) 45%, rgba(201,168,76,0.05) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(201,168,76,0.05) 45%, rgba(201,168,76,0.05) 55%, transparent 55%);
  background-size: 20px 20px;
}

.sw-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.sw-season {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* --- PRICING --- */
.pricing {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.pricing-header { text-align: center; margin-bottom: 64px; }

.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.pricing-sub {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-3);
  padding: 48px 36px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card--featured {
  background: linear-gradient(160deg, #1a1a0a 0%, #0d0d08 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.pricing-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.pricing-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

/* --- CLOSING --- */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 48px;
}

.closing-mark {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dimmer);
}

/* --- FOOTER --- */
.footer {
  padding: 40px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.6;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dimmer);
  text-transform: uppercase;
}

.footer-sep { opacity: 0.4; }

.footer-copy {
  font-size: 11px;
  color: var(--text-dimmer);
  max-width: 400px;
  line-height: 1.6;
}

/* --- NAV LINKS --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* --- ABOUT --- */
.about {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.about-inner { max-width: 900px; margin: 0 auto; }

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.about-text {
  font-size: 17px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 64px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 48px;
}

.about-stat { display: flex; flex-direction: column; gap: 8px; }

.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

/* --- PORTFOLIO --- */
.portfolio {
  padding: 100px 48px;
}

.portfolio-header { margin-bottom: 64px; }

.portfolio-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.portfolio-sub {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 300;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: default;
}

.portfolio-item:hover { border-color: rgba(201, 168, 76, 0.2); }
.portfolio-item--large { grid-column: span 2; }

.portfolio-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.portfolio-meta {
  padding: 24px 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portfolio-category {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.portfolio-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
}

.portfolio-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* Portfolio Visual Mockups */
.pv-candy {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 32px;
}
.pv-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(201,168,76,0.03) 8px, rgba(201,168,76,0.03) 9px);
}
.pv-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--text);
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}
.pv-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
  position: relative; z-index: 1;
}
.pv-drips {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(0deg, var(--gold) 0%, transparent 100%);
  opacity: 0.12;
}
.pv-neon {
  position: absolute;
  top: 16px; right: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px var(--gold);
}

.pv-ashborn {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1210 0%, #2d1f1a 50%, #0a0806 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  position: relative;
}
.pv-texture {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.pv-logo--warm { color: #d4a96a; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.pv-tag { font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }

.pv-neon-glow {
  width: 100%;
  height: 100%;
  background: #050508;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}
.pv-neon-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: #C9A84C;
  text-shadow: 0 0 10px #C9A84C, 0 0 20px rgba(201,168,76,0.5);
}
.pv-neon-line { width: 80px; height: 1px; background: var(--gold); opacity: 0.4; }
.pv-neon-sub { font-size: 9px; letter-spacing: 0.3em; color: var(--text-dimmer); }

.pv-streetwear {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.pv-swear-pattern {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 45%, rgba(201,168,76,0.05) 45%, rgba(201,168,76,0.05) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(201,168,76,0.05) 45%, rgba(201,168,76,0.05) 55%, transparent 55%);
  background-size: 20px 20px;
}
.pv-swear-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: var(--text);
  position: relative; z-index: 1;
}
.pv-swear-season {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  position: relative; z-index: 1;
}

.pv-midnight {
  width: 100%;
  height: 100%;
  background: #050507;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  position: relative;
}
.pv-mgold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 50%, transparent 100%);
  opacity: 0.6;
}
.pv-mlogo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.15em;
  color: #C9A84C;
  text-align: center;
  line-height: 1.15;
  text-shadow: 0 0 16px rgba(201,168,76,0.3);
}
.pv-mdivider { width: 60px; height: 1px; background: var(--gold); opacity: 0.3; }
.pv-mtag { font-size: 9px; letter-spacing: 0.25em; color: var(--text-dimmer); text-transform: uppercase; }

.pv-phantom {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  position: relative;
}
.pv-pmask {
  width: 60px;
  height: 80px;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50% 50% 40% 40%;
  position: relative;
}
.pv-pmask::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 8px;
  background: rgba(201,168,76,0.4);
  border-radius: 50%;
}
.pv-pmask::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.6) 0%, transparent 70%);
}
.pv-pname {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.25em;
  color: var(--text);
}
.pv-ptag { font-size: 9px; letter-spacing: 0.25em; color: var(--text-dimmer); text-transform: uppercase; }

/* --- CONTACT --- */
.contact {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.contact-inner { max-width: 700px; margin: 0 auto; }

.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 56px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item--large { grid-column: span 1; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .about-stat-num { font-size: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-headline { font-size: 56px; }
  .hero-right { display: none; }
  .about, .services, .portfolio, .contact { padding: 60px 24px; }
  .about-text { font-size: 15px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .about-stat-num { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item--large { grid-column: span 2; }
  .portfolio-meta { padding: 20px; }
  .footer { padding: 32px 24px; }
  .contact-item { padding: 20px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item--large { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr; gap: 32px; }
  .about-stat-num { font-size: 48px; }
}