:root {
  --bg: #FAF6F1;
  --bg-alt: #F0EAE2;
  --crimson: #C41E3A;
  --blue: #1564C0;
  --dark: #0D0D0D;
  --text: #1A1A1A;
  --text-muted: #6B6560;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--crimson);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  background: var(--crimson);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-icons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.icon-item svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }

/* ── Philosophy ── */
.philosophy {
  padding: 100px 32px;
  background: var(--bg);
}
.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
}
.philosophy-rule {
  width: 48px;
  height: 3px;
  background: var(--crimson);
  margin-bottom: 40px;
}
.philosophy-head {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.philosophy-cols {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
}
.philosophy-col { flex: 1; }
.philosophy-col-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  align-self: stretch;
}
.philosophy-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.philosophy-col-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.philosophy-statement {
  padding: 32px 40px;
  background: var(--crimson);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* ── Products ── */
.products {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.products-inner { max-width: 1100px; margin: 0 auto; }
.products-header { margin-bottom: 64px; }
.products-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.products-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.product-card-art { padding: 40px; min-height: 220px; display: flex; align-items: center; justify-content: center; }
.product-art-inner {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 3/4;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-art-hoodie { background: var(--crimson); flex-direction: column; }
.product-art-cross { position: relative; width: 40px; height: 60px; }
.cross-h { position: absolute; top: 50%; left: 0; right: 0; height: 6px; background: rgba(255,255,255,0.9); transform: translateY(-50%); border-radius: 3px; }
.cross-v { position: absolute; top: 0; bottom: 0; left: 50%; width: 6px; background: rgba(255,255,255,0.9); transform: translateX(-50%); border-radius: 3px; }

.product-art-tee { background: #FAF6F1; flex-direction: column; }
.product-art-flag { display: flex; width: 40px; height: 56px; border-radius: 2px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.flag-white { flex: 1; background: #fff; border-right: 4px solid #1564C0; }
.flag-blue { width: 24px; background: #1564C0; }
.flag-red { flex: 1; background: #C41E3A; }

.product-art-longsleeve { background: #1A1A1A; }
.product-art-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--crimson);
  letter-spacing: 0.05em;
}

.product-card-info { padding: 28px; }
.product-name { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.product-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.product-meta { font-size: 0.75rem; font-weight: 500; color: var(--crimson); letter-spacing: 0.05em; }

/* ── Manifesto ── */
.manifesto {
  padding: 100px 32px;
  background: var(--dark);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.manifesto-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ── Closing ── */
.closing {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--crimson);
  margin: 0 auto 48px;
}
.closing-head {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}
.closing-footer {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Footer ── */
.footer {
  padding: 48px 32px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--crimson);
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-colors {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .philosophy, .products, .manifesto, .closing { padding: 72px 24px; }
  .philosophy-cols { flex-direction: column; gap: 32px; }
  .philosophy-col-divider { display: none; }
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-colors { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero-icons { gap: 20px; }
  .hero-headline { font-size: 3rem; }
}