/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --off-white: #F5F3EE;
  --cream: #EDE9E0;
  --gold: #B8933F;
  --gold-light: #D4AF5A;
  --gold-dim: #8A6F2E;
  --text: #E8E4DC;
  --text-muted: #8A8680;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }

::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { font-family: var(--font-display); font-size: 28px; color: var(--off-white); letter-spacing: 0.05em; }
.nav-tagline { font-family: var(--font-body); font-size: 11px; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--black);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(184,147,63,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(184,147,63,0.04) 0%, transparent 60%),
    linear-gradient(135deg, var(--black) 0%, #0F0F0F 40%, #111008 70%, var(--black) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}
.hero-line-v {
  position: absolute; top: 0; bottom: 0; left: 33.333%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,147,63,0.15) 30%, rgba(184,147,63,0.15) 70%, transparent);
}
.hero-line-h {
  position: absolute; left: 0; right: 0; top: 33.333%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,147,63,0.1) 30%, rgba(184,147,63,0.1) 70%, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 60px 80px;
  max-width: 1100px;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.hero-brand {
  font-family: var(--font-display); font-size: clamp(72px, 14vw, 180px);
  line-height: 0.88; letter-spacing: 0.02em; color: var(--off-white);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--text-muted);
  max-width: 480px; margin-bottom: 48px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid rgba(184,147,63,0.3);
  color: var(--gold-light); background: rgba(184,147,63,0.05);
}
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.scroll-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-dim), transparent); }

/* === MANIFESTO === */
.manifesto { padding: 120px 60px; background: var(--ink); border-top: 1px solid rgba(184,147,63,0.12); }
.manifesto-inner { max-width: 900px; }
.manifesto-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.manifesto-text { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); line-height: 1.1; color: var(--off-white); margin-bottom: 32px; }
.manifesto-body { font-size: 16px; font-weight: 300; color: var(--text-muted); max-width: 600px; line-height: 1.8; margin-bottom: 64px; }
.manifesto-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 1px solid rgba(184,147,63,0.15); padding-top: 48px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 56px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12px; font-weight: 300; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }

/* === PRODUCTS === */
.products { padding: 120px 60px; background: var(--black); }
.products-header { margin-bottom: 64px; }
.section-label { display: block; font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.section-title { font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px); line-height: 1; color: var(--off-white); }
.services-title { color: var(--off-white); }

.product-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2px; margin-bottom: 48px; }
.product-card { background: var(--ink); padding: 40px; display: flex; flex-direction: column; gap: 32px; transition: background 0.3s; }
.product-card:hover { background: #1E1E1E; }
.product-card--large { grid-row: span 2; }

/* Abstract product shape illustrations */
.product-shape { width: 100%; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; }
.product-shape--hoodie { }
.product-shape--tee { }
.product-shape--cap { }
.product-shape--tracksuit { }

.product-inner-shape {
  width: 70%; height: 80%;
  background: linear-gradient(135deg, #1C1C1C 0%, #252525 50%, #1C1C1C 100%);
  border: 1px solid rgba(184,147,63,0.2);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* Hoodie shape — oversized with hood indication */
.product-shape--hoodie .product-inner-shape {
  border-radius: 4px 4px 8px 8px;
  background: linear-gradient(180deg, #1C1C1C 0%, #222 60%, #1a1a1a 100%);
  box-shadow: inset 0 2px 0 rgba(184,147,63,0.1);
}
.product-shape--hoodie .product-inner-shape::before {
  content: ''; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 50%; height: 28px;
  background: var(--ink); border: 1px solid rgba(184,147,63,0.2);
  border-bottom: none; border-radius: 20px 20px 0 0;
}
/* Tee shape */
.product-shape--tee .product-inner-shape {
  border-radius: 2px;
  clip-path: polygon(30% 0%, 70% 0%, 70% 100%, 30% 100%, 20% 30%, 0% 40%, 0% 60%, 20% 70%, 80% 70%, 100% 60%, 100% 40%, 80% 30%);
}
/* Cap shape */
.product-shape--cap .product-inner-shape {
  border-radius: 50% 50% 2px 2px;
  height: 55%;
}
.product-shape--cap .product-inner-shape::before {
  content: ''; position: absolute; bottom: 5%; left: -15%; width: 55%; height: 18%;
  background: var(--ink); border: 1px solid rgba(184,147,63,0.15);
  border-radius: 2px 4px 4px 2px;
}
/* Tracksuit shape */
.product-shape--tracksuit .product-inner-shape {
  background: linear-gradient(180deg, #1a1a1a 55%, #141414 100%);
  clip-path: polygon(25% 0%, 75% 0%, 75% 55%, 100% 100%, 0% 100%, 0% 55%);
}

.product-info { display: flex; flex-direction: column; gap: 12px; }
.product-category { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.product-name { font-family: var(--font-display); font-size: 26px; color: var(--off-white); line-height: 1; }
.product-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

.products-note { text-align: center; padding-top: 40px; border-top: 1px solid rgba(184,147,63,0.1); }
.products-note p { font-size: 14px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.05em; }

/* === SERVICES === */
.services { padding: 120px 60px; background: var(--ink); border-top: 1px solid rgba(184,147,63,0.08); }
.services-inner { max-width: 900px; }
.services-body { font-size: 15px; font-weight: 300; color: var(--text-muted); max-width: 560px; line-height: 1.8; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 48px; }
.service-item { display: flex; flex-direction: column; gap: 16px; padding: 32px; background: rgba(10,10,10,0.5); border: 1px solid rgba(184,147,63,0.1); }
.service-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.service-name { font-family: var(--font-display); font-size: 22px; color: var(--off-white); letter-spacing: 0.05em; }
.service-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.services-cta { padding-top: 40px; border-top: 1px solid rgba(184,147,63,0.1); }
.cta-text { font-family: var(--font-display); font-size: 22px; color: var(--text); letter-spacing: 0.02em; }
.cta-text strong { color: var(--gold); }

/* === CLOSER === */
.closer { padding: 140px 60px; position: relative; overflow: hidden; }
.closer-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(184,147,63,0.04) 0%, var(--black) 70%);
}
.closer-inner { position: relative; z-index: 2; max-width: 900px; }
.closer-headline { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); line-height: 0.95; color: var(--off-white); margin-bottom: 40px; }
.closer-body { font-size: 16px; font-weight: 300; color: var(--text-muted); max-width: 540px; line-height: 1.8; margin-bottom: 64px; }
.closer-divider { width: 80px; height: 1px; background: var(--gold); margin-bottom: 64px; }
.closer-pillars { display: flex; flex-direction: column; gap: 40px; }
.pillar { display: flex; gap: 32px; align-items: flex-start; }
.pillar-mark { font-family: var(--font-display); font-size: 48px; color: var(--gold-dim); line-height: 1; flex-shrink: 0; }
.pillar-title { font-family: var(--font-display); font-size: 24px; color: var(--off-white); letter-spacing: 0.05em; margin-bottom: 8px; }
.pillar-text { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* === FOOTER === */
.footer { padding: 48px 60px; border-top: 1px solid rgba(184,147,63,0.1); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.1em; color: var(--off-white); }
.footer-sub { font-size: 11px; font-weight: 300; letter-spacing: 0.2em; color: var(--text-muted); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-tagline { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.15em; color: var(--gold); }
.footer-year { font-size: 11px; font-weight: 300; letter-spacing: 0.2em; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-brand { font-size: clamp(60px, 18vw, 100px); }
  .hero-scroll { display: none; }
  .manifesto { padding: 80px 24px; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }
  .products { padding: 80px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card--large { grid-row: auto; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .closer { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-meta { align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-content { padding: 90px 20px 50px; }
  .hero-brand { font-size: 56px; }
  .hero-sub { font-size: 14px; }
  .hero-tags { gap: 8px; }
  .tag { font-size: 10px; padding: 6px 12px; }
}