* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; color: #111; background: #f7f4ef; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.site-header { min-height: 100vh; background: linear-gradient(135deg, #111 0%, #2a2a2a 50%, #c08b5c 100%); color: white; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 24px 8%; }
.logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 26px; font-weight: 600; }
.hero { display: flex; align-items: center; min-height: 80vh; padding: 0 8%; }
.hero-content { max-width: 780px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 800; color: #c08b5c; margin-bottom: 10px; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); line-height: 0.95; margin-bottom: 22px; }
.hero-text { max-width: 620px; font-size: 1.2rem; margin-bottom: 28px; color: #f1f1f1; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 22px; border-radius: 999px; font-weight: 800; }
.btn.primary { background: #c08b5c; color: #111; }
.btn.secondary { border: 2px solid white; color: white; }
.section { padding: 90px 8%; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section h2, .split-section h2, .cta h2 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; margin-bottom: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { background: white; border-radius: 24px; padding: 18px; box-shadow: 0 10px 35px rgba(0,0,0,0.08); }
.product-img { height: 260px; border-radius: 18px; display: grid; place-items: center; font-size: 2.4rem; font-weight: 900; color: white; margin-bottom: 18px; }
.hoodie { background: #222; }
.tee { background: #8b6f47; }
.cap { background: #4a4a4a; }
.product-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.product-card span { display: inline-block; margin-top: 12px; font-weight: 900; font-size: 1.2rem; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 90px 8%; background: #fff; }
.split-section p { margin-bottom: 14px; }
.dark { background: #111; color: white; }
.lookbook-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lookbook-grid div { min-height: 220px; border-radius: 22px; background: linear-gradient(135deg, #333, #c08b5c); display: grid; place-items: center; font-weight: 900; font-size: 1.25rem; }
.cta { padding: 100px 8%; text-align: center; background: #f7f4ef; }
.cta p { max-width: 640px; margin: 0 auto 24px; }
footer { padding: 28px 8%; text-align: center; background: #111; color: white; }
@media (max-width: 850px) {
  .navbar { align-items: flex-start; gap: 20px; flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 16px; }
  .product-grid, .split-section, .lookbook-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; padding-bottom: 80px; }
}
