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

:root {
  --primary: #8B7355;
  --primary-light: #F5EFE7;
  --primary-dark: #6B5444;
  --accent: #E8A35D;
  --accent-light: #F9E8D8;
  --accent-dark: #D48C3F;
  --green: #7A8E5A;
  --green-light: #EEF3E5;
  --green-dark: #5A6D42;
  --wa: #25D366;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: rgba(0,0,0,0.08);
  --bg: #fff;
  --bg-soft: #F5EFE7;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 0px; font-weight: 600;
  color: var(--text); text-decoration: none;
}
.logo img { height: 50px; width: auto; }
.logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 14px; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
.nav-toggle { display: none; background: none; border: none; font-size: 20px; cursor: pointer; }

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.hero-content {
  padding: 5rem 3rem;
  background: var(--bg-soft);
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.25rem;
}
.hero-tag {
  display: inline-block;
  background: var(--primary-light); color: var(--primary-dark);
  font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 999px;
  width: fit-content; letter-spacing: 0.5px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 600;
  line-height: 1.15; color: var(--text);
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 400px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 0.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--accent-light); }

.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(4px);
}
.badge-leaf { font-size: 26px; }
.badge-label { font-size: 11px; color: var(--text-muted); }
.badge-val { font-size: 13px; font-weight: 500; color: var(--text); }

/* SECTIONS */
.section { padding: 4rem 2rem; }
.section-header { margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600; margin-bottom: 6px;
}
.section-header p { font-size: 14px; color: var(--text-muted); }

/* PRODUCTS */
.categories { display: flex; flex-direction: column; gap: 3rem; }
.cat-block {}
.cat-title {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 10px; margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cat-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
}
.cat-count {
  font-size: 12px; color: var(--text-muted);
  background: #f0f0f0; padding: 2px 10px;
  border-radius: 999px;
}
.sub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.sub-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sub-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.sub-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.sub-card-body { padding: 12px 14px; flex: 1; }

.type-badge {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 6px; letter-spacing: 0.3px;
}
.type-badge.fresh { background: var(--green-light); color: var(--green-dark); }
.type-badge.nfc { background: var(--accent-light); color: var(--accent-dark); }
.type-badge.frozen { background: #D5E8E8; color: #4A7A7E; }
.type-badge.pure { background: #F0D5E8; color: #6B4A7E; }

.sub-card-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.sub-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.enquire-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: 0 14px 14px;
  padding: 9px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent; color: var(--text-muted);
  font-size: 13px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.enquire-btn:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

/* WHATSAPP STRIP */
.wa-strip {
  margin: 0 2rem 3rem;
  background: var(--green-light);
  border: 0.5px solid #C0DD97;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.wa-text h3 { font-size: 16px; font-weight: 500; color: var(--green-dark); margin-bottom: 4px; }
.wa-text p { font-size: 13px; color: #3B6D11; }
.wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; text-decoration: none;
  white-space: nowrap; transition: opacity 0.2s;
}
.wa-btn:hover { opacity: 0.9; }

/* ABOUT */
.about-section { background: var(--bg-soft); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto;
}
.about-img img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 360px; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600; margin-bottom: 1rem;
}
.about-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }

/* HOW TO ORDER */
.steps {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
}
.step {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-soft); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  flex: 1; min-width: 200px; max-width: 260px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 16px; flex-shrink: 0;
}
.step-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.step-text p { font-size: 12px; color: var(--text-muted); }
.step-arrow { font-size: 20px; color: var(--text-muted); }

/* CONTACT */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; max-width: 700px;
}
.contact-card {
  background: var(--bg-soft); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center;
}
.contact-icon { font-size: 28px; margin-bottom: 8px; }
.contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.contact-card a { color: var(--accent); text-decoration: none; font-size: 14px; }
.contact-card a:hover { text-decoration: underline; }
.contact-card span { font-size: 14px; }

/* FOOTER */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem; text-align: center;
  color: var(--text-muted); font-size: 13px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.footer-logo span { color: var(--green); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 1rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 280px; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-title { font-size: 30px; }
  .about-inner { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .wa-strip { margin: 0 1.25rem 2rem; }
  .step-arrow { display: none; }
}
