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

:root {
  --bg: #111111;
  --bg-2: #0a0a0a;
  --bg-card: #181818;
  --bg-card-2: #141414;
  --fg: #F0EBE3;
  --fg-muted: #8A8478;
  --fg-dim: #5A5650;
  --accent: #C96A1E;
  --accent-dim: #8B4D14;
  --olive: #4A5240;
  --olive-mid: #6B7360;
  --stripe: #C96A1E;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

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

.brand-mark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 2px;
}

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

.nav-tagline {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero-text {
  padding: 80px 64px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 88px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Atmospheric shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 380px;
  height: 380px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, var(--olive) 0%, transparent 70%);
  opacity: 0.4;
}

.shape-2 {
  width: 200px;
  height: 200px;
  right: 60px;
  top: 25%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  opacity: 0.3;
}

.shape-3 {
  width: 500px;
  height: 500px;
  right: -150px;
  bottom: -100px;
  background: radial-gradient(circle, var(--olive-mid) 0%, transparent 70%);
  opacity: 0.2;
}

.hero-badge {
  position: relative;
  z-index: 3;
  border: 1.5px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
}

.badge-top {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}

.badge-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--fg-dim);
  margin-top: 4px;
}

.hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0.6;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 64px;
  align-items: start;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-dim);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding-top: 4px;
}

.philosophy-content {
  max-width: 680px;
}

.philosophy-statement {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 60px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.philosophy-body p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

.philosophy-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
}

.stat {}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ===== COLLECTION ===== */
.collection {
  padding: 100px 64px;
  background: var(--bg);
}

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

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1.1;
  color: var(--fg);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0.4;
}

.card-visual {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.tshirt-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

.hat-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #1d2218 100%);
}

.card-icon {
  color: var(--fg-muted);
}

.card-icon svg {
  width: 56px;
  height: 56px;
}

.card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0 40px;
}

.card-line {
  height: 1.5px;
  background: rgba(255,255,255,0.08);
  width: 100%;
}

.card-line-short {
  width: 60%;
}

.card-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,106,30,0.1);
  padding: 6px 12px;
  border-radius: 2px;
}

/* ===== ARMORY ===== */
.armory {
  padding: 100px 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.armory-visual {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.armory-badge {
  position: relative;
  z-index: 2;
}

.badge-outer {
  width: 160px;
  height: 160px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  animation: rotate-slow 30s linear infinite;
}

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

.badge-inner {
  width: 120px;
  height: 120px;
  border: 1.5px solid var(--fg-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.35em;
  color: var(--fg);
}

.armory-stripes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.armory-stripe {
  position: absolute;
  width: 2px;
  height: 240px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.15;
}

.armory-stripe:nth-child(1) { transform: rotate(45deg); }
.armory-stripe:nth-child(2) { transform: rotate(90deg); }
.armory-stripe:nth-child(3) { transform: rotate(135deg); }

.armory-content {
  max-width: 560px;
}

.armory-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  margin-top: 16px;
}

.armory-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.armory-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,106,30,0.15);
  border: 1px solid rgba(201,106,30,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.pillar-icon svg {
  width: 16px;
  height: 16px;
}

.pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.pillar span {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 64px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.closing-tag {
  font-family: var(--font-display);
  font-size: 80px;
  letter-spacing: 0.2em;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: -10px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.closing-stripe {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 64px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-2);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-mark {
  font-family: var(--font-display);
  font-size: 20px;
  background: var(--accent);
  color: var(--bg);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

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

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.footer-links {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.2em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .hero-text { padding: 60px 24px; }
  
  .philosophy {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 32px;
  }
  .philosophy-label { writing-mode: horizontal-tb; transform: none; }
  .philosophy-stats { flex-direction: row; text-align: left; gap: 24px; }
  .stat-num { font-size: 40px; }
  
  .collection { padding: 60px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  
  .armory {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .armory-visual { width: 160px; height: 160px; margin: 0 auto; }
  .badge-outer { width: 110px; height: 110px; }
  .badge-inner { width: 80px; height: 80px; }
  
  .closing { padding: 60px 24px; }
  .closing-tag { font-size: 48px; }
  
  .site-footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 42px; }
  .philosophy-stats { flex-wrap: wrap; }
}
