:root {
  --black: #0D0D0D;
  --white: #F2F0EB;
  --red: #FF2D20;
  --gray: #888;
  --gray-light: #444;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 64px;
  z-index: 2;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 380px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gray-light);
  padding: 8px 16px;
  display: inline-block;
}

.hero-visual {
  position: relative;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand-text {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  color: var(--red);
  opacity: 0.06;
  letter-spacing: 0.05em;
  user-select: none;
  line-height: 1;
  text-transform: uppercase;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255,45,32,0.15);
}

.shape-1 {
  width: 320px; height: 320px;
  border-radius: 50%;
  top: 15%; right: 10%;
}

.shape-2 {
  width: 180px; height: 180px;
  border-radius: 50%;
  bottom: 20%; right: 25%;
  border-color: rgba(255,45,32,0.08);
}

.shape-3 {
  width: 60px; height: 60px;
  background: var(--red);
  opacity: 0.12;
  top: 40%; right: 40%;
  border-radius: 4px;
  transform: rotate(45deg);
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  padding: 120px 64px;
  background: #0D0D0D;
  border-top: 1px solid #1a1a1a;
}

.philosophy-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 64px;
  text-transform: uppercase;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.philosophy-item { }

.philosophy-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--red);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.philosophy-item h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.philosophy-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── PRODUCTS ─── */
.products {
  padding: 120px 64px;
  background: #111;
}

.products-inner { max-width: 1100px; margin: 0 auto; }

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

.product-card {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-tall { }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.product-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  padding: 32px;
}

.product-art {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}

.art-tee {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.art-tee::after {
  content: '';
  position: absolute;
  width: 120px; height: 160px;
  background: var(--red);
  opacity: 0.08;
  top: -20px; right: -20px;
  border-radius: 2px;
  transform: rotate(15deg);
}

.art-hoodie {
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-graphic {
  background: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.product-desc {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-sale {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
}

.price-original {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
}

.products-cta {
  text-align: center;
  margin-top: 32px;
}

.products-link {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.2s;
}

.products-link:hover { color: var(--red); }

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 140px 64px;
  background: #0D0D0D;
  border-top: 1px solid #1a1a1a;
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  color: var(--red);
  line-height: 1;
  margin-bottom: 64px;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--red);
  padding-left: 40px;
}

.manifesto-quote p { text-transform: uppercase; }

.manifesto-body {
  max-width: 600px;
  margin-left: 43px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-body p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}

.manifesto-body em { color: var(--white); font-style: normal; font-weight: 500; }

/* ─── CLOSING ─── */
.closing {
  padding: 140px 64px;
  background: #111;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.closing-inner { }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.closing-body {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
}

/* ─── EMAIL CAPTURE ─── */
.email-section {
  padding: 120px 64px;
  background: #0D0D0D;
  border-top: 1px solid #1a1a1a;
}

.email-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.email-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 28px;
}

.email-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.email-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 48px;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.email-form input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.email-form input::placeholder { color: var(--gray); }

.email-form input:focus {
  border-color: var(--red);
}

.email-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.email-btn:hover { background: #e02518; }

.email-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.email-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4ade80;
  font-size: 15px;
  margin-bottom: 12px;
}

.success-icon {
  font-size: 20px;
  line-height: 1;
}

.email-error {
  color: var(--red);
  font-size: 13px;
  margin-bottom: 12px;
}

.email-fine-print {
  color: var(--gray);
  font-size: 12px;
  margin-top: 4px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 64px;
  background: #0D0D0D;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-meta p {
  color: var(--gray);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual { display: none; }

  .hero-inner {
    padding: 60px 24px 80px;
  }

  .hero-headline {
    font-size: clamp(56px, 15vw, 80px);
  }

  .philosophy, .products, .manifesto, .closing, .footer {
    padding: 80px 24px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-quote {
    padding-left: 20px;
    font-size: clamp(36px, 10vw, 64px);
  }

  .manifesto-body { margin-left: 20px; }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links { text-align: left; }
}