/* ===== GLOBAL ===== */
body{
  font-family: Inter, system-ui, -apple-system;
  color:#000;
  background:#fff;
}

/* ===== HERO ===== */
.hero{
  background:#000;
  color:#fff;
  min-height:90vh;
  display:flex;
  align-items:center;
}

.hero-inner{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

.hero h1{
  font-size:72px;
  font-weight:800;
  line-height:1.05;
  max-width:800px;
}

.hero p{
  margin-top:28px;
  font-size:20px;
  color:#d1d1d1;
  max-width:600px;
}

.hero a{
  display:inline-block;
  margin-top:48px;
  padding:16px 48px;
  border:1px solid #fff;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
}

/* ===== SECTIONS ===== */
.section{
  max-width:1320px;
  margin:auto;
  padding:120px 24px;
}

/* ===== TILES ===== */
.tiles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.tile{
  height:360px;
  background:#f2f2f2;
  display:flex;
  align-items:flex-end;
  padding:32px;
  font-size:26px;
  font-weight:600;
}

/* ===== COLLECTIONS ===== */
.collections{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.collection{
  height:260px;
  background:#f2f2f2;
  display:flex;
  align-items:flex-end;
  padding:24px;
  font-size:18px;
}

/* ===== BRAND TEXT ===== */
.brand-text{
  font-size:36px;
  line-height:1.4;
  max-width:900px;
}

/* ===== CTA ===== */
.cta{
  background:#000;
  color:#fff;
  text-align:center;
  padding:120px 24px;
}

.cta h2{
  font-size:52px;
  margin-bottom:32px;
}

.cta a{
  padding:18px 52px;
  border:1px solid #fff;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .tiles{grid-template-columns:1fr}
  .collections{grid-template-columns:1fr 1fr}
  .hero h1{font-size:48px}
}
