/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #fdf6ec;
  --warm-50:  #fef9f0;
  --brown-100:#f5e6c8;
  --brown-300:#c8873a;
  --brown-500:#8b5e2a;
  --brown-700:#5c3a1e;
  --brown-900:#2d1a0a;
  --amber:    #d97706;
  --gold:     #f59e0b;
  --rust:     #b45309;
  --text:     #2d1a0a;
  --text-muted:#7c5838;
  --white:    #ffffff;
  --radius:   16px;
  --shadow:   0 4px 24px rgba(45,26,10,0.10);
  --shadow-lg:0 12px 48px rgba(45,26,10,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brown-100);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-700);
  letter-spacing: -0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown-700); }
.nav-cta {
  background: var(--brown-700) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 99px;
}
.nav-cta:hover { background: var(--brown-900) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1a0a 0%, #5c3a1e 40%, #8b5e2a 70%, #c8873a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,180,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(200,135,58,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fcd34d;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(253,246,236,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--brown-900);
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.5);
}
.btn-primary.large {
  font-size: 1.1rem;
  padding: 18px 40px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost.light {
  border-color: rgba(253,246,236,0.5);
  color: var(--cream);
}

/* Decorative pods */
.hero-pods {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.pod {
  position: absolute;
  font-size: 6rem;
  opacity: 0.07;
  filter: blur(1px);
  animation: float 8s ease-in-out infinite;
}
.pod-1 { top: 15%; left: 5%; font-size: 10rem; animation-delay: 0s; }
.pod-2 { bottom: 20%; right: 8%; font-size: 8rem; animation-delay: 3s; }
.pod-3 { top: 60%; left: 60%; font-size: 6rem; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-dark {
  background: linear-gradient(160deg, var(--brown-900) 0%, var(--brown-700) 100%);
}

.section-tag {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-tag.light { color: #fcd34d; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brown-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(253,246,236,0.75); }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--brown-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-700);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== VARIETIES ===== */
.varieties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.variety-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s;
}
.variety-card:hover { transform: translateY(-4px); }

.variety-header {
  padding: 32px 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.v1 { background: linear-gradient(135deg, #5c3a1e, #c8873a); }
.v2 { background: linear-gradient(135deg, #7c2d12, #b91c1c); }
.v3 { background: linear-gradient(135deg, #713f12, #d97706); }

.variety-emoji { font-size: 3rem; }
.variety-origin {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.2);
  padding: 4px 12px;
  border-radius: 99px;
  align-self: flex-start;
}

.variety-body { padding: 24px 28px 28px; }
.variety-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.variety-notes {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: #fcd34d;
  font-style: italic;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.variety-body > p {
  font-size: 0.9rem;
  color: rgba(253,246,236,0.75);
  margin-bottom: 20px;
  line-height: 1.65;
}

.flavor-bars { display: flex; flex-direction: column; gap: 10px; }
.flavor-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flavor-row span {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(253,246,236,0.6);
  width: 60px;
  flex-shrink: 0;
  text-align: right;
}
.bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 99px;
  transition: width 1s ease;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--brown-300), var(--amber));
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.stat-label {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--brown-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.step-num {
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-700);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--brown-300);
  margin-top: 44px;
  flex-shrink: 0;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1a0a 0%, #5c3a1e 50%, #8b5e2a 100%);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
  line-height: 1.15;
}
.cta-content > p {
  font-size: 1.1rem;
  color: rgba(253,246,236,0.78);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-note {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: rgba(253,246,236,0.5) !important;
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-900);
  padding: 48px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-inner p {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(253,246,236,0.55);
}
.footer-copy {
  font-size: 0.8rem !important;
  color: rgba(253,246,236,0.3) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: -4px auto; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
}
