:root {
  --bg: #FDF6EE;
  --bg-warm: #F5E6D3;
  --bg-dark: #2C1810;
  --fg: #3D2B1F;
  --fg-light: #6B5744;
  --fg-muted: #9C8978;
  --accent: #8B3A2F;
  --accent-light: #C46B5A;
  --accent-warm: #D4956B;
  --green: #4A6741;
  --green-light: #6B8F60;
  --cream: #FFF8F0;
  --border: rgba(61, 43, 31, 0.1);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--accent);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 50%, #E8D0B8 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(139, 58, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 58, 47, 0.06) 0%, rgba(212, 149, 107, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  padding: 120px 40px 100px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  background: rgba(74, 103, 65, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-light);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* STORY */
.story {
  padding: 120px 40px;
  background: var(--bg);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.story-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bg-dark);
  margin-bottom: 24px;
}

.story-text p {
  color: var(--fg-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 16px;
}

.stat {
  border-left: 3px solid var(--accent-warm);
  padding-left: 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* PRODUCTS */
.products {
  padding: 100px 40px 120px;
  background: var(--bg-dark);
  color: var(--cream);
}

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

.products-header {
  margin-bottom: 60px;
}

.products .story-label {
  color: var(--accent-warm);
}

.products-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background: rgba(255, 248, 240, 0.06);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 16px;
  padding: 44px 36px;
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: rgba(255, 248, 240, 0.15);
}

.product-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(139, 58, 47, 0.15) 0%, rgba(255, 248, 240, 0.04) 100%);
  border-color: rgba(196, 107, 90, 0.2);
}

.product-icon {
  font-size: 1.4rem;
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.product-card p {
  color: rgba(255, 248, 240, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-detail {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
}

/* Product cards as clickable links */
.product-card-link {
  text-decoration: none;
  cursor: pointer;
}

.product-card-link:hover {
  border-color: rgba(212, 149, 107, 0.3);
  transform: translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card-link h3,
.product-card-link p {
  color: inherit;
}

/* WHY */
.why {
  padding: 120px 40px;
  background: var(--bg);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bg-dark);
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-warm);
  margin-bottom: 12px;
}

.why-item h4 {
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 10px;
}

.why-item p {
  color: var(--fg-light);
  font-size: 0.95rem;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  background: linear-gradient(175deg, var(--bg-warm) 0%, #E8D0B8 100%);
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--bg-dark);
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.closing-channels {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel strong {
  font-size: 1rem;
  color: var(--bg-dark);
}

.channel span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* FOOTER */
.site-footer {
  padding: 60px 40px;
  background: var(--bg-dark);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 4px;
}

.footer-detail {
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    padding: 100px 24px 80px;
  }
  
  .story, .why, .closing {
    padding: 80px 24px;
  }

  .products {
    padding: 80px 24px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .closing-channels {
    flex-direction: column;
    gap: 24px;
  }

  .hero-texture {
    width: 200px;
    height: 200px;
    top: 5%;
    right: -5%;
  }

  .product-card {
    padding: 32px 24px;
  }

  .site-footer {
    padding: 48px 24px;
  }
}