:root{
  --cream:#f7ead3;
  --paper:#fffaf1;
  --gold:#b8872f;
  --brown:#1f1209;
  --dark:#080604;
  --burgundy:#4a1515;
  --muted:#cdbb97;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--dark);
  color:var(--cream);
  font-family:Georgia, 'Times New Roman', serif;
}
a{text-decoration:none;color:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px clamp(20px,5vw,70px);
  background:rgba(8,6,4,.92);
  border-bottom:1px solid rgba(184,135,47,.35);
  backdrop-filter:blur(8px);
}
.brand img{
  width:92px;
  height:92px;
  object-fit:contain;
  border-radius:50%;
  background:white;
}
nav{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  font-weight:bold;
}

.hero,.merch-hero{
  min-height:calc(100vh - 121px);
  padding:clamp(60px,10vw,120px) clamp(22px,5vw,70px);
  display:flex;
  align-items:center;
}
.hero{
  background:linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),url('assets/hero-products.png') center right/cover no-repeat;
}
.merch-hero{
  background:linear-gradient(90deg,rgba(0,0,0,.84),rgba(0,0,0,.3)),url('assets/tshirt.png') center/cover no-repeat;
}
.hero-copy{max-width:760px}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:13px;
  font-weight:bold;
}
h1{
  font-size:clamp(54px,8vw,110px);
  line-height:.88;
  margin:14px 0;
  text-shadow:0 8px 30px rgba(0,0,0,.65);
}
h2{
  font-size:clamp(36px,5vw,64px);
  line-height:1;
  margin:10px 0 30px;
}
h3{font-size:29px;margin:18px 0 8px}
p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.button-row{display:flex;gap:14px;flex-wrap:wrap}
.button{
  display:inline-block;
  margin-top:20px;
  padding:15px 24px;
  border:1px solid var(--gold);
  background:linear-gradient(135deg,var(--gold),#6f4717);
  color:#fff4d9;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:13px;
  font-weight:bold;
}
.button.ghost{background:rgba(0,0,0,.35)}
.button.small{padding:12px 18px;font-size:12px}

.section{
  padding:88px clamp(22px,5vw,70px);
  background:radial-gradient(circle at top,rgba(184,135,47,.12),transparent 35%),#100b07;
}
.product-grid,.merch-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.card,.shop-card{
  background:#170f0a;
  border:1px solid rgba(184,135,47,.32);
  box-shadow:0 25px 70px rgba(0,0,0,.4);
  overflow:hidden;
}
.card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.card h3,.card p,.shop-info{padding-left:22px;padding-right:22px}
.card p{padding-bottom:22px;font-size:16px}

.split{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
  align-items:center;
  padding:90px clamp(22px,5vw,70px);
  background:#070403;
}
.split img{
  width:100%;
  border:1px solid rgba(184,135,47,.35);
  box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.shop-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.shop-info{padding-bottom:26px}
.price{
  font-size:25px;
  color:var(--cream);
  font-weight:bold;
}
.hat-mockup{
  min-height:310px;
  background:radial-gradient(circle at center,#312016,#070403);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.hat-mockup img{
  width:170px;
  height:170px;
  object-fit:contain;
  border-radius:50%;
  background:white;
}
.hat-mockup span{
  color:var(--gold);
  font-size:28px;
  font-weight:bold;
  letter-spacing:.08em;
}

footer{
  padding:60px 24px;
  text-align:center;
  background:var(--burgundy);
}
footer img{
  width:125px;
  border-radius:50%;
  background:white;
}
.fine{
  max-width:760px;
  margin:12px auto 0;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

@media(max-width:1100px){
  .product-grid,.merch-grid{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
}
@media(max-width:700px){
  .site-header{align-items:flex-start}
  .brand img{width:72px;height:72px}
  nav{flex-direction:column;gap:9px;font-size:11px}
  .product-grid,.merch-grid{grid-template-columns:1fr}
  .hero,.merch-hero{background-position:center}
}
