:root {
  --bg: #FDF6EE;
  --bg-warm: #F5E6D3;
  --fg: #2D1B0E;
  --fg-muted: #6B5341;
  --accent: #E8734A;
  --accent-light: #FFECD2;
  --teal: #2A9D8F;
  --teal-light: #D4F1EC;
  --cream: #FFF8F0;
  --border: #E5D5C3;
  --shadow: rgba(45, 27, 14, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 40%, var(--accent-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.12) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* STORY SECTION */
.story {
  padding: 6rem 2rem;
  background: var(--cream);
}

.story-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.story-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
}

.story-card:nth-child(2) {
  transform: translateY(1.5rem);
}

.story-card:nth-child(2):hover {
  transform: translateY(calc(1.5rem - 4px));
}

.story-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.story-card .card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.story-card .card-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* PRODUCTS SECTION */
.products {
  padding: 6rem 2rem;
  background: var(--bg);
}

.products-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.products h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.products-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 550px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:nth-child(2)::before {
  background: var(--teal);
}

.product-card:nth-child(3)::before {
  background: #C17B4A;
}

.product-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.product-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.product-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-light);
  color: var(--accent);
}

.product-card:nth-child(2) .product-tag {
  background: var(--teal-light);
  color: var(--teal);
}

.product-card:nth-child(3) .product-tag {
  background: #F5E0CC;
  color: #9A6334;
}

/* HOW IT WORKS */
.process {
  padding: 6rem 2rem;
  background: var(--fg);
  color: var(--cream);
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process .section-label {
  color: var(--accent);
}

.process h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.step {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.step p {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.65);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 2.5rem 2rem;
  background: var(--fg);
  text-align: center;
  color: rgba(255, 248, 240, 0.45);
  font-size: 0.85rem;
}

footer .brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-visual {
    order: -1;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 80vh;
  }

  .story-card:nth-child(2) {
    transform: none;
  }
  .story-card:nth-child(2):hover {
    transform: translateY(-4px);
  }
}