:root {
  --bg: #FDF6EC;
  --fg: #2D1B12;
  --accent: #C4622D;
  --accent-light: #E8875A;
  --surface: #F5EDD8;
  --border: #E0C9A8;
  --text-muted: #7A5C44;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

* { 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;
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(160deg, #F0E2CC 0%, #E8D5B7 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-product {
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(45,27,18,0.12);
}
.card-tall { grid-row: span 2; }
.product-img {
  height: 120px;
}
.card-tall .product-img { height: 256px; }
.product-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(45,27,18,0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  letter-spacing: 0.05em;
}
.shared-cart-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(196,98,45,0.35);
}
.badge-icon { font-size: 24px; }
.shared-cart-badge strong { display: block; font-size: 14px; font-weight: 700; }
.shared-cart-badge span { display: block; font-size: 11px; opacity: 0.85; }
.hero-wave {
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* FEATURES */
.features {
  background: var(--surface);
  padding: 100px 0;
}
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-header { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--fg);
  max-width: 600px;
  line-height: 1.25;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,27,18,0.1);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--surface);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* CATEGORIES */
.categories {
  background: var(--bg);
  padding: 100px 0;
}
.categories-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.cat-tall { grid-row: span 2; }
.cat-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-col { display: flex; flex-direction: column; gap: 20px; }
.cat-content { padding: 24px; }
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cat-card p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 12px; }
.cat-count { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }

/* SOCIAL PROOF */
.socialproof {
  background: var(--surface);
  padding: 100px 0;
}
.socialproof-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 16px;
  border: 1px solid var(--border);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-body p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: italic;
}
.reviewer { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.brand-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.brand-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.brand-logos { display: flex; gap: 20px; flex-wrap: wrap; }
.brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.7;
}

/* MISSION */
.mission {
  background: var(--fg);
  color: #fff;
  padding: 100px 0;
}
.mission-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.mission-text blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-style: italic;
  line-height: 1.4;
  color: #F5E6C8;
  margin-bottom: 28px;
}
.mission-text p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.stat-row { display: flex; gap: 32px; }
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-light);
}
.stat span { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

/* FOOTER */
footer { background: #1E0F08; color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-links { display: flex; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 20px 40px;
  text-align: center;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-tall { grid-row: auto; }
  .mission-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-text h1 { font-size: 36px; }
  .hero-inner, .features-inner, .categories-inner, .socialproof-inner, .mission-inner { padding: 0 24px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .card-tall .product-img { height: 120px; }
  .card-tall { grid-row: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 24px; }
  .stat-row { justify-content: center; }
}