/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

/* TOKENS */
:root {
  --bg: #080808;
  --bg-alt: #0F0F0F;
  --bg-card: #141414;
  --fg: #F0EEE8;
  --fg-muted: #888;
  --gold: #D4AF37;
  --gold-dim: #8A7020;
  --silver: #A0A0A0;
  --blue-accent: #1A3A6B;
  --red-accent: #FF2D2D;
  --green-accent: #00E676;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --space-unit: 8px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 60px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(212,175,55,0.04) 0%, transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left { max-width: 600px; }

.brand-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.brand-rule {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-dim);
}

.brand-motto {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 420px;
  font-weight: 300;
  line-height: 1.7;
}

/* Hero emblem */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-emblem {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

.emblem-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.emblem-1 {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.emblem-of {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 2px 0;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  padding: 120px 60px;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 8px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.manifesto-body {
  max-width: 480px;
}

.manifesto-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.manifesto-body em {
  font-style: italic;
  color: var(--fg);
}

.manifesto-colors {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  grid-column: 1 / -1;
}

.color-chip {
  width: 32px;
  height: 32px;
  border-radius: 0;
  display: block;
}

.manifesto-palette-note {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-top: 8px;
  grid-column: 1 / -1;
}

/* CATEGORY SECTIONS */
.category {
  padding: 100px 60px;
  border-bottom: 1px solid #1A1A1A;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.cat-number {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.cat-divider {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-dim);
}

.cat-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.category-body {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.category-text h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}

.category-text p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 460px;
}

.cat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-features li {
  font-size: 13px;
  color: var(--silver);
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.05em;
}

.cat-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* Category visual — t-shirt silhouette */
.category-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tee-silhouette {
  position: relative;
  width: 240px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.silhouette-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1A1A1A 0%, #0C0C0C 50%, #141414 100%);
  clip-path: polygon(30% 0%, 70% 0%, 85% 8%, 85% 20%, 100% 25%, 100% 35%, 80% 38%, 78% 100%, 22% 100%, 20% 38%, 0% 35%, 0% 25%, 15% 20%, 15% 8%);
  border: 1px solid #2A2A2A;
}

.silhouette-mark {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.silhouette-mark span:nth-child(1) {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.silhouette-mark span:nth-child(2) {
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
}

.silhouette-mark span:nth-child(3) {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

/* Gear items */
.category--alt {
  background: var(--bg-alt);
}

.category-body--alt {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gear-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gear-item {
  background: var(--bg-card);
  border: 1px solid #222;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gear-icon {
  width: 80px;
  height: 50px;
}

.gear-icon svg {
  width: 100%;
  height: 100%;
}

.gear-label {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--fg);
}

.gear-sub {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 120px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 60%),
    var(--bg);
}

.closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.closing-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.closing-1 {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
}

.closing-of {
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: var(--gold-dim);
  margin: 0 auto 24px;
}

.closing-tagline {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  padding: 40px 60px;
  border-top: 1px solid #1A1A1A;
  background: var(--bg-alt);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer-motto {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.footer-colors span {
  font-size: 16px;
  display: inline-block;
  margin: 0 3px;
}

.footer-copy {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.1em;
}

/* NAV */
.store-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1A1A1A;
}

.store-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-nav-brand .brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}

.store-nav-brand .brand-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
}

.store-nav-brand .brand-motto {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.store-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.store-nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.store-nav-links a:hover {
  color: var(--fg);
}

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

.store-nav-cta {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 8px 20px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.store-nav-cta:hover {
  background: var(--gold-dim) !important;
  color: var(--bg) !important;
}

.store-nav-links a.store-nav-cta:hover {
  color: var(--bg) !important;
}

@media (max-width: 900px) {
  .store-nav { padding: 0 30px; }
  .store-nav-links a:not(.store-nav-cta) { display: none; }
}
@media (max-width: 900px) {
  .hero { padding: 60px 30px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-scroll-indicator { left: 30px; }
  .manifesto { padding: 80px 30px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-label { display: none; }
  .manifesto-colors { grid-column: 1; }
  .category { padding: 80px 30px; }
  .category-body { grid-template-columns: 1fr; gap: 48px; }
  .category-body--alt { grid-template-columns: 1fr; }
  .category-visual { order: -1; }
  .closing { padding: 80px 30px; }
  .footer { padding: 32px 30px; }
  .footer-grid { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 64px; }
  .manifesto-text { font-size: 48px; }
  .category-text h3 { font-size: 40px; }
}