/* LIMIT X — Theme CSS */

:root {
  --bg: #0D0D0D;
  --bg-2: #1A1A1A;
  --fg: #F5F5F5;
  --fg-muted: #888888;
  --accent: #DC143C;
  --accent-dim: rgba(220, 20, 60, 0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(220, 20, 60, 0.12) 0%, transparent 60%),
              linear-gradient(135deg, #0D0D0D 0%, #111111 100%);
}

.hero-geo {
  position: absolute;
  border: 1px solid rgba(220, 20, 60, 0.15);
}

.geo-1 {
  width: 400px; height: 400px;
  border-radius: 50%;
  right: -100px; top: 10%;
}

.geo-2 {
  width: 200px; height: 200px;
  border-radius: 50%;
  right: 15%; top: 5%;
  border-color: rgba(220, 20, 60, 0.25);
}

.geo-3 {
  width: 600px; height: 600px;
  border-radius: 50%;
  right: -200px; bottom: -100px;
  border-color: rgba(220, 20, 60, 0.07);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-accent-line {
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.hero-corner-text {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.15);
  writing-mode: vertical-rl;
  z-index: 2;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-2);
  padding: 8rem 4rem;
}

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

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 3rem;
  max-width: 700px;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.manifesto-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* CATEGORIES */
.categories {
  padding: 8rem 4rem;
  background: var(--bg);
}

.categories-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.categories-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 0.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.cat-visual {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.cat-mens .cat-visual {
  background: linear-gradient(160deg, #1a1a1a 0%, #2a0a0a 100%);
}

.cat-womens .cat-visual {
  background: linear-gradient(160deg, #1a0a1a 0%, #0a0a2a 100%);
}

.cat-mens .cat-visual::before,
.cat-womens .cat-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(220,20,60,0.2) 0%, transparent 70%);
}

.category-card:hover .cat-visual { transform: scale(1.03); }

.cat-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.cat-label {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.cat-cta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.categories-footer {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.pill {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

/* QUALITY */
.quality {
  background: var(--bg-2);
  padding: 8rem 4rem;
}

.quality-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
}

.quality-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.quality-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quality-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.q-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(220,20,60,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.quality-list strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.quality-list p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.quality-visual {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 360px;
}

.qv-block {
  border-radius: 2px;
}

.qv-1 {
  background: linear-gradient(135deg, #2a0505 0%, #0d0d0d 100%);
  border: 1px solid rgba(220,20,60,0.2);
}

.qv-2 {
  background: linear-gradient(135deg, #05050d 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.05);
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 10rem 4rem;
  text-align: center;
}

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

.closing-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin: 0 auto 3rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

.closing-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.2);
}

/* FOOTER */
.footer {
  background: #080808;
  padding: 3rem 4rem;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-links span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem; }
  .hero-corner-text { display: none; }
  
  .manifesto { padding: 5rem 1.5rem; }
  .manifesto-body { grid-template-columns: 1fr; }
  .manifesto-stats { gap: 1.5rem; }
  
  .categories { padding: 5rem 1.5rem; }
  .category-grid { grid-template-columns: 1fr; }
  
  .quality { padding: 5rem 1.5rem; }
  .quality-inner { grid-template-columns: 1fr; }
  .quality-visual { display: none; }
  
  .closing { padding: 6rem 1.5rem; }
  
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
