
:root {
  --ivory: #f6f1ea;
  --sand: #e8dfd2;
  --stone: #c9bba8;
  --espresso: #2c241c;
  --ink: #1a1612;
  --gold: #b8924a;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--ivory); color: var(--ink); }
body { font-family: Outfit, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; border-bottom: 1px solid rgba(44,36,28,.08);
  background: var(--ivory); position: sticky; top: 0; z-index: 10;
}
.top nav { display: flex; gap: 28px; font-size: 14px; }
.mark { font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; }
.bag { font-size: 14px; }
.hero {
  position: relative; min-height: 78vh; color: var(--ivory);
  display: flex; align-items: flex-end; padding: 80px 40px;
  background: #2c241c center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,.15), rgba(26,22,18,.55));
}
.hero .inner { position: relative; z-index: 1; max-width: 720px; }
.kicker { letter-spacing: .28em; text-transform: uppercase; font-size: 11px; opacity: .7; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 84px); line-height: .95; margin-top: 16px; }
.lede { margin-top: 20px; max-width: 520px; opacity: .85; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; background: var(--ivory); color: var(--espresso);
  padding: 12px 22px; font-size: 14px; border: 0; cursor: pointer;
}
.btn.dark { background: var(--espresso); color: var(--ivory); width: 100%; justify-content: center; letter-spacing: .14em; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 48px 40px 80px; }
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.cat {
  border: 1px solid rgba(44,36,28,.12); background: rgba(232,223,210,.4);
  padding: 24px; min-height: 160px;
}
.cat .kicker { color: rgba(44,36,28,.45); }
.cat h2 { font-size: 32px; margin-top: 12px; }
.cat p { color: rgba(44,36,28,.7); font-size: 14px; }
.row { display: flex; justify-content: space-between; align-items: end; margin: 24px 0 16px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card img { width: 100%; height: 280px; object-fit: cover; background: var(--sand); }
.card .meta { display: flex; justify-content: space-between; margin-top: 10px; font-size: 13px; color: rgba(44,36,28,.55); }
.card h3 { font-size: 22px; margin-top: 6px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 40px 0 10px; }
.pillars p { color: rgba(44,36,28,.7); font-size: 14px; line-height: 1.6; }
.filters { display: flex; gap: 10px; margin: 18px 0 28px; flex-wrap: wrap; }
select, input[type=text] { background: var(--ivory); border: 1px solid rgba(44,36,28,.2); padding: 8px 10px; font: inherit; }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pdp img.main { width: 100%; height: 560px; object-fit: cover; background: var(--sand); }
.thumbs { display: flex; gap: 8px; margin-top: 8px; }
.thumbs img { width: 72px; height: 72px; object-fit: cover; }
.price { font-size: 22px; margin: 16px 0 8px; }
.compare { color: rgba(44,36,28,.4); text-decoration: line-through; margin-left: 8px; font-size: 16px; }
.stock { font-size: 13px; color: rgba(44,36,28,.55); }
.body { font-size: 15px; line-height: 1.7; color: rgba(44,36,28,.8); }
.note { font-size: 12px; color: rgba(44,36,28,.5); margin-top: 8px; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 20px; font-size: 14px; }
.specs dt { color: rgba(44,36,28,.45); }
.checkout { max-width: 720px; }
.line { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(44,36,28,.1); }
.foot {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px;
  padding: 48px 40px 24px; background: #efe7db; font-size: 14px;
}
.foot a, .foot .muted { display: block; color: rgba(44,36,28,.7); margin: 4px 0; }
.lbl { letter-spacing: .2em; text-transform: uppercase; font-size: 11px; color: rgba(44,36,28,.45); }
.copy { grid-column: 1 / -1; text-align: center; color: rgba(44,36,28,.45); font-size: 12px; }
@media (max-width: 900px) {
  .top { padding: 14px 16px; }
  .top nav { display: none; }
  .cats, .grid, .pdp, .pillars, .foot { grid-template-columns: 1fr; }
  .wrap, .hero { padding-left: 16px; padding-right: 16px; }
  .pdp img.main { height: 320px; }
}
