:root {
  --cream: #FAF5EC;
  --cream-2: #F1E6D2;
  --brown-dark: #3E2B1C;
  --brown: #6B4423;
  --brown-light: #96693E;
  --gold: #C9971F;
  --gold-light: #E7C873;
  --navy: #1E3A5F;
  --text: #3A2E22;
  --text-muted: #7A6A57;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(62, 43, 28, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2, h3, .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brown-dark);
  margin: 0 0 0.5em;
}

h1 { font-size: 44px; font-weight: 700; }
h2 { font-size: 32px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }

p { color: var(--text); }
a { color: var(--navy); text-decoration: none; }

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

/* Header */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 56px; width: auto; }

.brand-text { line-height: 1.2; }
.brand-text .name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--brown-dark); font-size: 18px; }
.brand-text .sub { font-size: 11px; letter-spacing: 2px; color: var(--gold); font-weight: 600; }

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--brown-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--brown-dark); cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s, color 0.2s;
}

.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--brown-dark); color: var(--brown-dark); }
.btn-outline:hover { background: var(--brown-dark); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  padding: 90px 0 70px;
}

.hero-inner {
  display: block;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero p.lead { font-size: 18px; color: var(--text-muted); max-width: 480px; }

.hero-actions { display: flex; gap: 16px; margin-top: 30px; }

.hero-badge {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

.hero-badge img { width: 190px; height: auto; margin-bottom: 10px; }
.hero-badge .cap { font-size: 13px; color: var(--text-muted); }

/* Sections */
section { padding: 70px 0; }
.section-alt { background: var(--cream-2); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .eyebrow { display: block; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(107,68,35,0.06);
}

.icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.product-card { text-align: left; display: flex; flex-direction: column; height: 100%; }
.product-card .tag {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  background: var(--cream-2);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.product-card p { color: var(--text-muted); font-size: 14.5px; flex-grow: 1; }
.product-card .region { font-size: 13px; color: var(--brown); font-weight: 600; margin-top: 10px; }

.cta-banner {
  background: var(--brown-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #E9DCC9; }
.cta-banner .btn-primary { background: var(--gold); }

/* Tables */
table.info-table { width: 100%; border-collapse: collapse; }
table.info-table td { padding: 14px 12px; border-bottom: 1px solid var(--cream-2); font-size: 15px; }
table.info-table td:first-child { color: var(--text-muted); width: 220px; font-weight: 600; }

/* Product catalog */
.catalog-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(107,68,35,0.06); }
.catalog-category {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  color: #fff;
  background: var(--brown-dark);
  padding: 14px 26px;
}
table.catalog-table { width: 100%; border-collapse: collapse; }
table.catalog-table tr { border-bottom: 1px solid var(--cream-2); }
table.catalog-table tr:last-child { border-bottom: none; }
table.catalog-table td { padding: 18px 26px; vertical-align: middle; }
table.catalog-table td:first-child {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--brown-dark);
  width: 45%;
}
.nut-row { display: flex; align-items: center; gap: 16px; }
.nut-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nut-icon svg { width: 32px; height: 32px; }

/* Product photo grid */
.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-photo-card {
  background: #fff;
  border: 1px solid var(--cream-2);
  border-radius: 12px;
  padding: 28px 20px 26px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-photo-card .img-wrap {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.product-photo-card .img-wrap svg { width: 100%; height: 100%; max-width: 200px; }
.product-photo-card .img-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.product-photo-card h3 { margin: 0 0 12px; font-size: 19px; }
.product-photo-card .pills { display: flex; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
  .product-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-photo-grid { grid-template-columns: 1fr; }
}
.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 2px 6px 2px 0;
}
.pill-inshell { background: var(--cream-2); color: var(--brown); border: 1px solid var(--brown-light); }
.pill-kernel { background: var(--gold-light); color: var(--brown-dark); border: 1px solid var(--gold); }

/* Certification placeholder */
.cert-card {
  border: 2px dashed var(--gold-light);
  background: var(--cream-2);
  text-align: center;
}
.cert-card .status {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--brown);
  background: #fff;
  border-radius: 999px;
  padding: 4px 12px;
}

/* Contact */
.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--cream-2);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; display: block; }

.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail .icon-circle { flex-shrink: 0; margin-bottom: 0; width: 44px; height: 44px; font-size: 18px; }
.contact-detail .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-detail .value { font-weight: 600; color: var(--brown-dark); }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: none; width: 100%; height: 320px; }

/* Footer */
footer.site-footer {
  background: var(--brown-dark);
  color: #E9DCC9;
  padding: 56px 0 26px;
  margin-top: 40px;
}
footer .grid-4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-family: 'Playfair Display', serif; }
footer a { color: #E9DCC9; }
footer a:hover { color: var(--gold-light); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; font-size: 14px; }
footer .brand-text .name { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px;
  padding-top: 22px;
  font-size: 12.5px;
  color: #C9B79A;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page header (inner pages) */
.page-hero {
  background: var(--brown-dark);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #E9DCC9; max-width: 560px; margin: 10px auto 0; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
  footer .grid-4 { grid-template-columns: 1fr 1fr; }
  nav ul { display: none; }
  .nav-toggle { display: block; }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--cream-2);
  }
}

@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}
