@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-50: #F7F4EF;
  --brand-100: #EDE4D7;
  --brand-200: #DDC8A8;
  --brand-300: #C9A877;
  --brand-400: #B78D53;
  --brand-500: #A6763A;
  --brand-600: #875D2D;
  --brand-700: #6A4824;
  --brand-800: #4D351B;
  --brand-900: #2F2111;
  --neutral-0: #FFFFFF;
  --neutral-50: #FAFAFA;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  --bg-canvas: #F4F2EF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #777777;
  --border-card: #EEECE8;
  --font-display: 'Funnel Sans', sans-serif;
  --font-body: 'Geist', 'Manrope', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Geist Mono', monospace;
}

body {
  font-family: var(--font-body);
  background: var(--bg-canvas);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 9999px;
  background: var(--text-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}
.nav-cta:hover { background: #333; }
.cart-badge {
  display: none;
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cart-badge.show { display: flex; }

/* ===== HERO ===== */
.hero-section {
  padding: 80px 120px 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  background: #E9DBC7;
  padding: 36px 56px;
  border-radius: 0;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 540px;
  flex-shrink: 0;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #6B5845;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.02;
  color: #2D2117;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.hero-desc {
  font-size: 19px;
  line-height: 1.45;
  color: #4A3A2B;
}
.hero-cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 14px 24px;
  border-radius: 999px;
  background: #2B2118;
  color: #F8EFE2;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.17);
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover { background: #3D2F22; transform: translateY(-1px); }
.hero-visual {
  flex: 1;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(160deg, #D3B590, #C79A6C);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  top: 92px;
  left: 146px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,234,217,0.58), transparent);
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 84px;
  height: 84px;
  top: 266px;
  left: 292px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,247,234,0.72), transparent);
  filter: blur(2px);
}

/* ===== PROOF + CTA SECTION ===== */
.proof-section {
  background: var(--bg-canvas);
  padding: 40px 120px 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.trust-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}
.trust { display: flex; flex-direction: column; gap: 18px; }
.trust-row {
  display: flex;
  gap: 16px;
  height: 180px;
}
.trust-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}
.trust-card p {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* Proof row */
.proof-row {
  display: flex;
  gap: 16px;
  height: 193px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 824px;
  flex-shrink: 0;
}
.review-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-primary);
}
.review-card blockquote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.review-card .meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.metrics-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.metrics-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}
.metrics-card p {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* CTA banner */
.cta-banner {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner-text { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-primary);
}
.cta-banner-text p {
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 9999px;
  background: #C8B496;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.cta-banner-btn:hover { background: #b8a280; }

/* ===== PRODUCTS ===== */
.products-section {
  padding: 12px 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.products-head { display: flex; flex-direction: column; gap: 10px; }
.products-head h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
}
.products-head p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #6C6253;
}
.products-row {
  display: flex;
  gap: 18px;
}
.product-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.product-card .product-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  height: 34px;
  overflow: hidden;
}
.product-card .product-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--neutral-600);
  height: 60px;
  overflow: hidden;
}
.product-card .product-meta {
  font-size: 14px;
  line-height: 1.5;
  color: var(--neutral-500);
}
.product-card .product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-card .product-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}
.product-card .product-tag {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #B6872B;
}
.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--brand-500);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-cart:hover { background: var(--brand-600); }
.btn-cart:active { transform: scale(0.97); }
.btn-cart.added {
  background: #16A34A;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-section, .proof-section, .products-section { padding-left: 40px; padding-right: 40px; }
  .hero-headline { font-size: 44px; }
  .hero-left { width: auto; flex: 1; }
  .hero-visual { min-height: 300px; }
  .review-card { width: auto; flex: 1; }
}
@media (max-width: 768px) {
  .hero-section, .proof-section, .products-section { padding-left: 20px; padding-right: 20px; }
  .hero-body { flex-direction: column; padding: 24px; }
  .hero-left { width: 100%; }
  .hero-headline { font-size: 36px; }
  .hero-visual { min-height: 240px; width: 100%; }
  .trust-row, .proof-row, .products-row { flex-direction: column; height: auto; }
  .review-card { width: 100%; }
  .cta-banner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
}
