:root {
  --bg: #0a0a0a;
  --fg: #f0f0f0;
  --accent: #CE1141;
  --accent-blue: #007DC5;
  --accent-grey: #555;
  --muted: #888;
  --card-bg: #141414;
  --border: #222;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a0a0e 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* HERO CTA */
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta-primary:hover {
  background: #b01037;
  transform: translateY(-1px);
}

.hero-colorbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 4px;
}

.hero-colorbar .bar {
  flex: 1;
  transition: height 0.3s;
}

.bar-bred { background: #CE1141; }
.bar-chicago { background: #fff; }
.bar-royal { background: #007DC5; }
.bar-shadow { background: #555; }

/* COLORWAYS */
.colorways {
  padding: 6rem 2rem;
  background: var(--bg);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.colorway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.colorway-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.colorway-card:hover {
  transform: translateY(-4px);
}

.colorway-card.bred:hover { border-color: #CE1141; }
.colorway-card.chicago:hover { border-color: #CE1141; }
.colorway-card.royal:hover { border-color: #007DC5; }
.colorway-card.shadow:hover { border-color: #555; }

.colorway-swatch {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 1rem;
}

.swatch-block {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.colorway-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

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

/* PRODUCTS */
.products {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0e0e 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.product-item:hover {
  border-color: var(--accent);
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.product-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CULTURE */
.culture {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.culture-text {
  max-width: 700px;
}

.culture-statement {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.culture-detail {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.culture-closing {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  background: #050505;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.footer-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer-dot {
  width: 3px;
  height: 3px;
  background: var(--muted);
  border-radius: 50%;
  display: inline-block;
}

.footer-line {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .colorway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    min-height: 90vh;
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .colorway-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .colorway-card {
    padding: 1rem;
  }

  .product-item {
    padding: 1.5rem;
  }

  .footer-details {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-dot {
    display: none;
  }
}