:root {
  --bg: #faf8f3;
  --bg-alt: #f0ede4;
  --fg: #1a1a2e;
  --fg-muted: #5c5c6b;
  --accent: #2d6a4f;
  --accent-warm: #e76f51;
  --accent-soft: #d4a373;
  --blob-1: #e9c46a;
  --blob-2: #2a9d8f;
  --blob-3: #e76f51;
  --radius: 14px;
  --radius-lg: 24px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 600;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45,106,79,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--blob-1);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--blob-2);
  bottom: -50px; left: -150px;
}
.blob-3 {
  width: 400px; height: 400px;
  background: var(--accent-warm);
  top: 40%; left: 30%;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(45, 106, 79, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(45,106,79,0.2);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(45,106,79,0.08);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 600;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(45,106,79,0.15);
}

/* PROOF */
.proof {
  background: var(--accent);
  padding: 48px 40px;
}
.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.proof-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 48px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.proof-stat:last-child { border-right: none; }
.proof-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}
.proof-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 600;
}

/* PILLARS */
.pillars {
  padding: 100px 40px;
  background: var(--bg);
}
.pillars-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.pillars-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.pillar {
  background: white;
  padding: 48px 40px;
}
.pillar-icon {
  margin-bottom: 20px;
}
.pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pillar-desc {
  font-family: 'Lora', serif;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* SHOWCASE */
.showcase {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.showcase-text { }
.showcase-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
}
.showcase-desc {
  font-family: 'Lora', serif;
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.product-swatch {
  height: 120px;
}
.swatch-1 { background: linear-gradient(135deg, #e9c46a 0%, #f4a261 100%); }
.swatch-2 { background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%); }
.swatch-3 { background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%); }
.swatch-4 { background: linear-gradient(135deg, #457b9d 0%, #a8dadc 100%); }
.product-info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--fg);
}
.product-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 600;
}
.product-price {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 4px;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  padding: 100px 40px;
  text-align: center;
}
.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  color: #e9c46a;
  line-height: 1.3;
  margin-bottom: 16px;
}
.manifesto-attr {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
.manifesto-body {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tag {
  background: white;
  border: 1px solid rgba(45,106,79,0.15);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  padding: 48px 40px;
  border-top: 1px solid rgba(45,106,79,0.1);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}
.footer-slug {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { gap: 0; }
  .proof-stat { padding: 12px 24px; }
  .nav { padding: 0 24px; }
}
@media (max-width: 480px) {
  .product-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-headline { font-size: 2.6rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}