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

:root {
  --bg: #faf9f7;
  --fg: #0d0d0d;
  --accent: #e63329;
  --muted: #6b6b6b;
  --surface: #f0efed;
  --border: #d4d2ce;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ——— NAV ——— */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-mark { color: var(--accent); }

.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— HERO ——— */
.hero {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,51,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-headline .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  opacity: 0.6;
}

.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
}

.badge-tag {
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
}

.badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* ——— MANIFESTO ——— */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px;
  border-bottom: 1px solid #2a2a2a;
}

.manifesto-inner {
  max-width: 640px;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.manifesto-text {
  font-size: 20px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.manifesto-text:last-child { margin-bottom: 0; }

.manifesto-accent {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 22px;
}

/* ——— PRODUCTS ——— */
.products {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.products-header {
  margin-bottom: 48px;
}

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

.products-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-swatch {
  height: 140px;
  background: var(--fg);
  position: relative;
}

.product-swatch-2 { background: #1a1a2e; }
.product-swatch-3 { background: #2d1b0e; }
.product-swatch-4 { background: #0d1f0d; }

.product-swatch::after {
  content: 'T-SHIRT';
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}

.product-label {
  padding: 20px 20px 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.product-desc {
  padding: 0 20px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ——— CLOSING ——— */
.closing {
  padding: 100px 48px;
  background: var(--accent);
  color: white;
  text-align: center;
}

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

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4eff91;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ——— FOOTER ——— */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }

  .hero { padding: 60px 24px 72px; }
  .hero-headline { font-size: 42px; }
  .hero-sub { font-size: 17px; }

  .manifesto { padding: 60px 24px; }
  .manifesto-text { font-size: 17px; }

  .products { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr; }

  .closing { padding: 72px 24px; }

  .footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
}