:root {
  --g50: #EAF3DE;
  --g100: #C0DD97;
  --g200: #97C459;
  --g400: #639922;
  --g600: #3B6D11;
  --g800: #27500A;
  --g900: #173404;
  --b100: #e8d5b7;
  --b200: #c9a96e;
  --b400: #8B6914;
  --b600: #5c4209;
  --cream: #f9f6f0;
  --ff: 'DM Sans', sans-serif;
  --ffd: 'Playfair Display', serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  background: var(--cream);
  color: var(--g900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--ff); border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--b400); font-weight: 500; margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--ffd); font-size: 34px;
  color: var(--g900); margin-bottom: 0.5rem; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--g600); }
.section-sub { font-size: 15px; color: var(--g600); font-weight: 300; margin-bottom: 2.5rem; }

/* BUTTONS */
.btn-primary {
  background: var(--g600); color: #fff; border: none;
  padding: 0.75rem 1.8rem; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--g800); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 14px; }

.btn-secondary {
  background: transparent; color: var(--g600); border: 1.5px solid var(--g200);
  padding: 0.75rem 1.8rem; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--g600); }

.btn-ghost {
  background: var(--g50); color: var(--g800); border: 1px solid var(--g100);
  padding: 0.6rem 1.4rem; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.btn-ghost:hover { background: var(--g600); color: #fff; border-color: var(--g600); }
.btn-full { width: 100%; text-align: center; }

.badge {
  font-size: 10px; padding: 3px 10px; border-radius: var(--radius-pill);
  font-weight: 500; text-transform: uppercase; letter-spacing: 1px; display: inline-block;
}
.badge-brown { background: var(--b100); color: var(--b600); }
.badge-green { background: var(--g50); color: var(--g800); border: 1px solid var(--g100); }

.section { padding: 4.5rem 0; }

/* ============ NAV ============ */
.nav { position: sticky; top: 0; z-index: 200; background: #fff; border-bottom: 1px solid var(--g50); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo { font-family: var(--ffd); font-size: 22px; color: var(--g800); flex-shrink: 0; }
.logo span { color: var(--b400); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 14px; color: var(--g600); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--g900); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--g800); border-radius: 2px; }

.mobile-menu {
  display: none; flex-direction: column; padding: 1rem 2rem 1.5rem;
  background: #fff; border-top: 1px solid var(--g50);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.75rem 0; font-size: 16px; color: var(--g600); border-bottom: 1px solid var(--g50); }

/* ============ HERO ============ */
.hero { background: linear-gradient(160deg, var(--cream) 55%, var(--g50) 100%); padding: 5rem 0 4rem; }
.hero-inner { display: grid; grid-template-columns: 1fr 400px; align-items: center; gap: 3rem; }
.hero-content { display: flex; flex-direction: column; gap: 1.2rem; }
.eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--b400); font-weight: 500; }
.hero-title { font-family: var(--ffd); font-size: 52px; line-height: 1.1; color: var(--g900); font-weight: 600; }
.hero-title em { font-style: italic; color: var(--g600); }
.hero-sub { font-size: 16px; color: var(--g600); line-height: 1.8; font-weight: 300; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: #fff; border-radius: 20px; border: 1px solid var(--g50);
  padding: 2rem; box-shadow: 0 4px 32px rgba(59,109,17,0.08);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.hero-card-icon { font-size: 48px; text-align: center; }
.hero-card h3 { font-family: var(--ffd); font-size: 20px; color: var(--g900); text-align: center; }
.hero-card p { font-size: 13px; color: var(--g600); text-align: center; font-weight: 300; }
.hero-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hero-card-price { font-size: 22px; font-weight: 500; color: var(--g800); text-align: center; }
.hero-card-price span { font-size: 13px; color: var(--g400); font-weight: 400; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--g800); color: var(--g50); display: flex; justify-content: center;
  align-items: center; gap: 1.5rem; padding: 1rem 2rem; font-size: 13px; flex-wrap: wrap;
}
.dot { color: var(--g400); }

/* ============ PRODUCTS ============ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-card {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--g50);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s; scroll-margin-top: 90px;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(59,109,17,0.09); }
.product-icon { font-size: 40px; margin-bottom: 0.25rem; }
.product-card h3 { font-family: var(--ffd); font-size: 19px; color: var(--g900); }
.product-tagline { font-size: 12px; color: var(--g400); font-weight: 500; }
.product-desc { font-size: 13px; color: var(--g600); line-height: 1.7; font-weight: 300; flex: 1; }
.product-bottom { padding-top: 0.75rem; border-top: 1px solid var(--g50); margin-top: 0.25rem; }
.price { font-size: 18px; font-weight: 500; color: var(--g800); }
.price span { font-size: 12px; color: var(--g400); font-weight: 400; }

.bulk-card {
  background: var(--g800); border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; margin-top: 2.5rem;
}
.bulk-card h3 { font-family: var(--ffd); font-size: 24px; color: var(--g50); margin-bottom: 0.5rem; }
.bulk-card p { font-size: 14px; color: var(--g400); font-weight: 300; max-width: 500px; }
.bulk-card .section-label { color: var(--b200); }

/* ============ WHY ============ */
.why-section { background: var(--g50); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--g100); }
.why-icon { font-size: 28px; margin-bottom: 0.75rem; }
.why-card h4 { font-size: 15px; font-weight: 500; color: var(--g900); margin-bottom: 0.4rem; }
.why-card p { font-size: 13px; color: var(--g600); line-height: 1.7; font-weight: 300; }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1.5rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 22px; left: calc(16% + 22px); right: calc(16% + 22px);
  height: 1px; background: var(--g100);
}
.step { text-align: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--g800); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--ffd);
  font-size: 18px; margin: 0 auto 1rem; position: relative; z-index: 1;
}
.step h4 { font-size: 16px; font-weight: 500; color: var(--g900); margin-bottom: 0.4rem; }
.step p { font-size: 13px; color: var(--g600); line-height: 1.7; font-weight: 300; }

/* ============ STORY ============ */
.story-section { background: #fff; }
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-content p { font-size: 15px; color: var(--g600); line-height: 1.9; font-weight: 300; margin-bottom: 1.2rem; }
.story-content em { font-style: italic; color: var(--g800); font-weight: 400; }
.story-visual { display: flex; flex-direction: column; gap: 1rem; }
.story-card {
  background: var(--cream); border-radius: var(--radius-md); border: 1px solid var(--g100);
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
}
.story-emoji { font-size: 28px; flex-shrink: 0; }
.story-card h4 { font-size: 15px; font-weight: 500; color: var(--g900); margin-bottom: 3px; }
.story-card p { font-size: 13px; color: var(--g600); font-weight: 300; line-height: 1.6; }

/* ============ CTA BANNER ============ */
.cta-banner { background: var(--g900); padding: 4rem 0; text-align: center; }
.cta-banner h2 { font-family: var(--ffd); font-size: 32px; color: var(--g50); margin-bottom: 0.75rem; }
.cta-banner p { font-size: 15px; color: var(--g400); margin-bottom: 2rem; font-weight: 300; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-secondary { border-color: var(--g600); color: var(--g100); }
.cta-banner .btn-secondary:hover { border-color: var(--g100); }

/* ============ CONTACT ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.contact-form-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--g50); padding: 2rem; }
.contact-form-card h2 { font-family: var(--ffd); font-size: 22px; color: var(--g900); margin-bottom: 0.5rem; }
.contact-form-card > p { font-size: 14px; color: var(--g600); font-weight: 300; margin-bottom: 1.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.field label { font-size: 11px; color: var(--g600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; }
.field input, .field textarea {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--g100);
  background: var(--cream); font-size: 14px; font-family: var(--ff); color: var(--g900);
  outline: none; transition: border 0.15s; resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--g400); background: #fff; }

.contact-info-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--g50); padding: 1.5rem; }
.contact-info-card h3 { font-family: var(--ffd); font-size: 18px; color: var(--g900); margin-bottom: 1rem; }
.info-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px;
  border-radius: var(--radius-sm); border: 1px solid transparent; transition: all 0.15s; margin-bottom: 0.5rem;
}
a.info-item:hover { border-color: var(--g100); background: var(--g50); }
.info-item span { font-size: 20px; margin-top: 2px; }
.info-item strong { font-size: 13px; font-weight: 500; color: var(--g900); display: block; }
.info-item p { font-size: 13px; color: var(--g600); font-weight: 300; margin-top: 2px; }

/* ============ FOOTER ============ */
.footer { background: var(--g900); color: var(--g100); margin-top: 2rem; }
.footer-inner { padding: 3rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .logo { font-family: var(--ffd); font-size: 22px; color: var(--g50); margin-bottom: 0.75rem; }
.footer-brand .logo span { color: var(--b200); }
.footer-brand p { font-size: 13px; color: var(--g400); line-height: 1.7; font-weight: 300; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--g200); font-weight: 500; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: var(--g400); margin-bottom: 0.5rem; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--g100); }
.footer-bottom {
  border-top: 1px solid var(--g800); max-width: 1100px; margin: 0 auto; padding: 1.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--g600);
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); z-index: 150;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.08); }

/* ============ PRODUCT MODAL ============ */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(23,52,4,0.55);
  z-index: 300; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 480px; width: 100%;
  max-height: 88vh; overflow-y: auto; position: relative; padding: 2rem;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border-radius: 50%; background: var(--g50); color: var(--g800); font-size: 20px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.modal-close:hover { background: var(--g100); }

.modal-emoji { font-size: 60px; text-align: center; margin-bottom: 0.5rem; }
.modal-body h2 { font-family: var(--ffd); font-size: 26px; color: var(--g900); margin-bottom: 0.25rem; }
.modal-body .product-tagline { margin-bottom: 0.75rem; }
.modal-body .product-desc { margin-bottom: 1rem; flex: none; }
.modal-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 1rem; }
.modal-price-row .price-main { font-size: 26px; font-weight: 500; color: var(--g800); }
.modal-price-row .price-unit { font-size: 13px; color: var(--g400); }

.modal-option-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--g600); font-weight: 500; margin-bottom: 8px; }
.modal-size-row { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.size-btn {
  padding: 7px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--g100);
  background: #fff; color: var(--g800); font-family: var(--ff); font-size: 13px;
  font-weight: 500; display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.size-btn.active { border-color: var(--g600); background: var(--g50); }
.size-btn span { font-size: 11px; color: var(--g400); font-weight: 400; }

.modal-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.qty-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--g100);
  background: #fff; font-size: 18px; color: var(--g600); display: flex;
  align-items: center; justify-content: center;
}
.qty-num { font-size: 17px; font-weight: 500; min-width: 26px; text-align: center; }
.qty-total { font-size: 13px; color: var(--g400); }

.modal-wa-btn {
  width: 100%; padding: 0.85rem; border-radius: var(--radius-pill); background: var(--g600);
  color: #fff; font-size: 15px; font-weight: 500; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .nav-inner { padding: 0.9rem 1rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-primary { display: none; }

  .hero { padding: 2.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 34px; }
  .hero-card { max-width: 360px; margin: 0 auto; }

  .trust-bar { gap: 0.75rem; font-size: 12px; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 26px; }

  .products-grid { grid-template-columns: 1fr; }
  .bulk-card { flex-direction: column; text-align: center; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .story-layout { grid-template-columns: 1fr; gap: 2rem; }

  .contact-layout { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .float-wa { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .modal { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
}
