:root {
  --bg: #0F0D0B;
  --surface: #1A1714;
  --surface-2: #252118;
  --fg: #F2EBD9;
  --fg-muted: #8C8274;
  --accent: #C9A84C;
  --accent-dim: #7A6330;
  --poverty: #B87333;
  --disabled: #5B8A72;
  --mothers: #8B4F7A;
  --youth: #4A6B8A;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::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: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 6rem 8rem 6rem 8rem;
  gap: 4rem;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at 80% 50%, #2a1f0e 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  position: absolute;
  top: 2.5rem;
  left: 8rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-body);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 6ch;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  margin-top: 2.5rem;
  max-width: 42ch;
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.hero-mark {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}
.mark-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  animation: spin-slow 20s linear infinite;
}
.mark-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.mark-core {
  position: absolute;
  inset: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--bg);
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* MISSION */
.mission {
  background: var(--surface);
  padding: 8rem 8rem;
}
.mission-inner {
  max-width: 800px;
}
.mission-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}
.mission-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 55ch;
  margin-left: 2.5rem;
  line-height: 1.8;
}

/* COLLECTIONS */
.collections {
  padding: 8rem 8rem;
  background: var(--bg);
}
.collections-header {
  margin-bottom: 4rem;
}
.collections-header h2 {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--fg);
}
.collections-header p {
  color: var(--fg-muted);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.item-card {
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--surface-2);
}
.item-visual {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
}
.item-shape {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-shape.ts { border-color: #6b5a3a; }
.item-shape.hoodie { border-color: #4a6b3a; }
.item-shape.crew { border-color: #3a4a6b; }
.item-mark {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
}
.item-info {
  padding: 1.5rem 1.75rem 2rem;
}
.item-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.item-info p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SYMBOL */
.symbol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--surface);
}
.symbol-left {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.symbol-mark {
  position: relative;
  width: 300px;
  height: 300px;
}
.sm-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.sm-ring-1 { width: 300px; height: 300px; border-color: var(--poverty); opacity: 0.8; }
.sm-ring-2 { width: 220px; height: 220px; border-color: var(--disabled); opacity: 0.8; }
.sm-ring-3 { width: 140px; height: 140px; border-color: var(--mothers); opacity: 0.8; }
.sm-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bg);
  z-index: 2;
}
.symbol-right {
  padding: 6rem 5rem 6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.symbol-right h2 {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.symbol-tagline {
  font-size: 1.2rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 2rem;
}
.symbol-right > p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 44ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.symbol-legends {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg);
}
.leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.leg-dot.poverty { background: var(--poverty); }
.leg-dot.disabled { background: var(--disabled); }
.leg-dot.mothers { background: var(--mothers); }
.leg-dot.youth { background: var(--youth); }

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 8rem 8rem;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--fg);
}
.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}
.closing-last {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--accent) !important;
  margin-top: 3rem;
}

/* FOOTER */
.site-footer {
  background: var(--surface);
  padding: 4rem 8rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--surface-2);
}
.footer-mark {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-info span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-info span:first-child {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--fg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 2.5rem 5rem;
    min-height: auto;
    padding-top: 8rem;
    gap: 3rem;
  }
  .hero-eyebrow { left: 2.5rem; }
  .hero-mark { display: none; }
  .items-grid { grid-template-columns: 1fr; }
  .symbol { grid-template-columns: 1fr; }
  .symbol-left { min-height: 300px; }
  .symbol-right { padding: 4rem 2.5rem; }
  .mission, .collections, .closing, .site-footer { padding: 5rem 2.5rem; }
}