/* =========================
   Ohio Valley Extracts - Global Styles
   Farmer-first, modern, trustworthy
   ========================= */

/* Base / Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  background:
    radial-gradient(1200px 700px at 15% 15%, rgba(87, 214, 154, 0.18), transparent 60%),
    radial-gradient(900px 600px at 85% 25%, rgba(90, 160, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #060a0f 0%, #070c12 40%, #05070b 100%);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
small { color: rgba(255,255,255,0.72); }

/* Layout */
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section.tight { padding: 48px 0; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid.two, .grid.three { grid-template-columns: 1fr; }
}

/* Header / Nav */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 15, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.5px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.menu { display: flex; align-items: center; gap: 18px; }
.menu a { color: rgba(255,255,255,0.84); font-weight: 600; font-size: 14px; }
.menu a.active { color: #ffffff; text-decoration: underline; text-underline-offset: 6px; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.88);
  margin: 4px auto;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .menu { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
}

/* Mobile drawer */
.drawer {
  display: none;
  position: fixed; inset: 0;
  z-index: 80;
  background: rgba(0,0,0,0.58);
}
.drawer.open { display: block; }
.drawerPanel {
  position: absolute; top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: rgba(7, 10, 15, 0.95);
  border-left: 1px solid rgba(255,255,255,0.10);
  padding: 16px;
}
.drawerTop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.drawerNav { display: grid; gap: 10px; padding: 10px 0; }
.drawerNav a {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(
