/* ─── Variables ─── */
:root {
  --bg: #FFFBF5;
  --bg-alt: #FFF5EA;
  --surface: #FFFFFF;
  --fg: #0D0D1A;
  --fg-muted: #6B6B8A;
  --accent: #FF6B35;
  --accent-dark: #E5541E;
  --navy: #0D0D1A;
  --border: rgba(13,13,26,0.08);
  --radius: 12px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ─── Hero ─── */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
}
.trust-label { font-size: 12px; color: var(--fg-muted); font-weight: 500; }
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Product Stack */
.product-stack {
  position: relative;
  width: 100%;
  height: 400px;
}
.product-card {
  position: absolute;
  width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,13,26,0.08);
}
.card-swatch { height: 120px; }
.orange { background: #FF6B35; }
.cream { background: #FFF0D9; }
.navy { background: #0D0D1A; }
.card-body { padding: 14px 16px; }
.card-rank { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.card-name { font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.card-price { font-size: 12px; color: var(--fg-muted); }
.card-1 { top: 0; left: 20px; transform: rotate(-4deg); z-index: 3; }
.card-2 { top: 40px; left: 110px; transform: rotate(2deg); z-index: 2; }
.card-3 { top: 100px; left: 60px; transform: rotate(-1deg); z-index: 1; }
.trending-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

/* ─── Trending Section ─── */
.trending {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.trending-header, .categories-header, .prov-inner .prov-left { margin-bottom: 48px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg);
  letter-spacing: -0.5px;
}
.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.trend-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trend-rank {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  min-width: 32px;
}
.trend-info { flex: 1; }
.trend-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.trend-meta { font-size: 12px; color: var(--fg-muted); }
.trend-bar { width: 64px; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.w80 { width: 80%; }
.w65 { width: 65%; }
.w55 { width: 55%; }
.w45 { width: 45%; }
.w38 { width: 38%; }

/* ─── Categories ─── */
.categories {
  padding: 80px 48px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,13,26,0.1);
}
.cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-alt);
}
.cat-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.cat-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* ─── Provenance ─── */
.provenance {
  padding: 80px 48px;
  background: var(--navy);
}
.prov-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.prov-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.prov-list { display: flex; flex-direction: column; gap: 24px; }
.prov-item { display: flex; gap: 16px; align-items: flex-start; }
.prov-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,107,53,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.prov-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.prov-text strong { color: #fff; }

/* ─── Closing ─── */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg);
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── Footer ─── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 20px; margin-bottom: 6px; }
.footer-sub { font-size: 13px; color: var(--fg-muted); margin-bottom: 12px; }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-stack { height: 260px; }
  .product-card { width: 150px; }
  .card-1 { left: 0; }
  .card-2 { left: 80px; }
  .card-3 { left: 40px; top: 80px; }
  .trending, .categories, .provenance, .closing { padding: 60px 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prov-inner { grid-template-columns: 1fr; gap: 40px; }
  .trend-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
}