/* ===== VARIABLES ===== */
:root {
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --surface: #222222;
  --fg: #f5f0e8;
  --fg-muted: #a09888;
  --accent: #c0392b;
  --accent-light: #e74c3c;
  --border: #333333;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 100vh;
}

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

.hero-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.08) 8px,
    rgba(0,0,0,0.08) 10px
  );
}

.sidebar-top {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.sidebar-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}

.sidebar-cross {
  width: 40px;
  height: 40px;
  position: relative;
}

.sidebar-cross::before,
.sidebar-cross::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.9);
}

.sidebar-cross::before {
  width: 4px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}

.sidebar-cross::after {
  width: 100%; height: 4px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}

.sidebar-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.95);
}

.hero-body {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-content {
  flex: 1;
  padding: 80px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 0.92;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-rig {
  width: 80px;
}

.hero-rig svg {
  width: 100%;
  height: auto;
}

.hero-stripe {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 40px,
    var(--bg-alt) 40px,
    var(--bg-alt) 48px
  );
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-alt);
  padding: 100px 60px;
}

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

.manifesto h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--fg);
  margin-bottom: 32px;
}

.manifesto p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.manifesto p em {
  color: var(--fg);
  font-style: normal;
  font-weight: 700;
}

.manifesto-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.manifesto-divider span:not(.cross-icon) {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cross-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.manifesto-quote {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--fg-muted);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  line-height: 1.7;
}

.manifesto-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
}

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

.collection-header {
  margin-bottom: 60px;
}

.collection-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--fg);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.collection-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
}

.collection-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.collection-item:hover::before { height: 100%; }

.item-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.tees-visual { background: #1e1e1e; }
.hoodies-visual { background: #1a1a1a; }
.headwear-visual { background: #1e1e1e; }

.tee-silhouette,
.hoodie-silhouette,
.hat-silhouette {
  width: 80px;
}

.tee-silhouette svg,
.hoodie-silhouette svg,
.hat-silhouette svg {
  width: 100%;
}

.collection-item h3 {
  font-size: 1.6rem;
  color: var(--fg);
  margin-bottom: 12px;
}

.collection-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== VALUES ===== */
.values {
  padding: 100px 60px;
  background: var(--bg-alt);
}

.values-header {
  margin-bottom: 60px;
}

.values-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--fg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
}

.value-card {
  background: var(--bg-alt);
  padding: 48px 40px;
}

.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  opacity: 0.7;
}

.value-card h3 {
  font-size: 1.8rem;
  color: var(--fg);
  margin-bottom: 16px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

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

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

.closing-cross {
  width: 80px;
  margin: 0 auto 48px;
}

.closing-cross svg {
  width: 100%;
}

.closing h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--fg);
  margin-bottom: 28px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.closing-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem !important;
  color: var(--accent) !important;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 40px;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 60px 1fr;
  }

  .hero-content {
    padding: 60px 32px 40px;
  }

  .hero-headline {
    font-size: 3.5rem;
  }

  .manifesto,
  .collection,
  .values,
  .closing {
    padding: 80px 32px;
  }

  .footer {
    padding: 40px 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-divider { display: none; }
}

@media (max-width: 480px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-sidebar {
    height: 60px;
  }

  .sidebar-top {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    gap: 12px;
  }

  .sidebar-cross { display: none; }

  .sidebar-label, .sidebar-sub {
    font-size: 1rem;
  }

  .hero-stripe { display: none; }
}