/* Super Growers — site styles */
:root {
  --green-900: #16351f;
  --green-700: #1f5c31;
  --green-600: #2a7a41;
  --green-500: #3a9c55;
  --green-100: #e7f4ea;
  --cream: #fbfaf6;
  --ink: #1d241f;
  --muted: #5c6b60;
  --line: #e3e8e3;
  --radius: 14px;
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--green-600); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.logo img { height: 34px; display: block; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.active { color: var(--green-600); border-bottom-color: var(--green-500); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink); }
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 14px 20px; gap: 12px; align-items: flex-start;
  }
  .nav.open { display: flex; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff; padding: 72px 0 64px;
}
.hero h1 { font-size: clamp(30px, 4.5vw, 48px); line-height: 1.15; margin: 0 0 16px; }
.hero .accent { color: #a8e6b8; }
.hero p.lead { font-size: 19px; max-width: 640px; color: #dcefe0; margin: 0 0 28px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 700; text-decoration: none; font-size: 15px; border: 2px solid transparent;
  cursor: pointer; transition: all .15s ease;
}
.btn-primary { background: #fff; color: var(--green-700); }
.btn-primary:hover { background: var(--green-100); }
.btn-outline { border-color: #ffffff88; color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; }
.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); }

/* Sections */
section { padding: 56px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2.section-title { font-size: clamp(24px, 3vw, 34px); margin: 0 0 10px; color: var(--green-900); }
p.section-sub { color: var(--muted); max-width: 700px; margin: 0 0 34px; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center; box-shadow: 0 2px 10px rgba(22,53,31,.05);
  display: flex; flex-direction: column;
}
.product-card img.bottle { max-height: 300px; width: auto; margin: 0 auto 18px; object-fit: contain; }
.product-card h3 { margin: 0 0 6px; font-size: 20px; color: var(--green-900); }
.product-card .price { font-size: 22px; font-weight: 800; color: var(--green-600); margin: 4px 0 4px; }
.product-card .price small { font-weight: 500; color: var(--muted); font-size: 13px; }
.product-card .desc { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.product-card .buy-area { margin-top: auto; }

/* Feature blocks */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.feature h4 { margin: 0 0 8px; color: var(--green-700); font-size: 17px; }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 7px 0 7px 30px; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--green-500); font-weight: 800;
}
.banner-img { border-radius: var(--radius); display: block; width: 100%; object-fit: cover; }

/* Product detail page */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 820px) { .product-detail { grid-template-columns: 1fr; } }
.product-detail .photo {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; text-align: center;
}
.product-detail .photo img { max-height: 460px; width: auto; object-fit: contain; }
.product-detail h1 { margin: 0 0 8px; color: var(--green-900); font-size: 30px; }
.product-detail .price { font-size: 26px; font-weight: 800; color: var(--green-600); }
.variant-select { margin: 18px 0; }
.variant-select label { font-weight: 700; display: block; margin-bottom: 6px; }
.variant-select select {
  width: 100%; max-width: 380px; padding: 11px 12px; border-radius: 10px;
  border: 1px solid var(--line); font-size: 15px; background: #fff;
}
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.badge {
  background: var(--green-100); color: var(--green-700); border-radius: 999px;
  font-size: 12.5px; font-weight: 700; padding: 5px 12px;
}
.dilution-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; }
.dilution-table th, .dilution-table td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.dilution-table th { background: var(--green-100); color: var(--green-900); }

/* Stores */
.state-block { margin-bottom: 34px; }
.state-block h3 {
  color: #fff; background: var(--green-700); display: inline-block;
  padding: 6px 18px; border-radius: 999px; font-size: 16px; letter-spacing: 1px;
}
.store-list { list-style: none; padding: 0; margin: 10px 0 0; }
.store-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.store-list li strong { color: var(--green-900); }
.store-list li span.tel { color: var(--muted); }

/* Media */
.press-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 40px; }
.press-featured a {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px;
  transition: box-shadow .15s;
}
.press-featured a:hover { box-shadow: 0 4px 14px rgba(22,53,31,.1); }
.press-featured a small { display: block; color: var(--green-600); font-weight: 700; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.press-all { columns: 1; font-size: 13px; }
.press-all a {
  display: block; padding: 4px 0; color: var(--muted); text-decoration: none;
  overflow-wrap: anywhere; border-bottom: 1px dotted var(--line);
}
.press-all a:hover { color: var(--green-600); }
details.press-archive summary {
  cursor: pointer; font-weight: 700; color: var(--green-700); font-size: 16px; padding: 10px 0;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.contact-card .icon { font-size: 30px; margin-bottom: 10px; }
.contact-card h3 { margin: 0 0 6px; color: var(--green-900); }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { font-weight: 700; }

/* Footer */
.site-footer { background: var(--green-900); color: #cfe2d4; padding: 52px 0 30px; margin-top: 30px; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.site-footer h5 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.site-footer a { color: #a8e6b8; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .logo-foot img { height: 30px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.site-footer .fine {
  border-top: 1px solid #ffffff22; margin-top: 34px; padding-top: 18px;
  font-size: 12.5px; color: #9db8a5;
}
.page-title { background: var(--green-100); padding: 44px 0 36px; }
.page-title h1 { margin: 0; color: var(--green-900); font-size: clamp(28px, 4vw, 40px); }
.page-title p { margin: 8px 0 0; color: var(--muted); }
