:root {
  --green-top: #73ae6b;
  --green-bottom: #458a4a;
  --green-deep: #2d4a2f;
  --cream: #f0e8d6;
  --accent: #ebae2e;
  --text: #1f2918;
  --text-muted: #3d4f38;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 50px rgba(20, 40, 22, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(165deg, var(--green-top) 0%, var(--green-bottom) 55%, var(--green-deep) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--green-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: #1a3320;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 1.25rem 0 0.5rem;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 1.25rem;
  opacity: 0.92;
}

.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  padding: 2.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #3a2808;
  font-weight: 800;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  color: #2a1c05;
}

.btn-secondary {
  background: var(--cream);
  margin-left: 0.75rem;
}

.hero-art {
  text-align: center;
}

.hero-art img {
  width: min(320px, 78vw);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section {
  padding: 1rem 0 3rem;
}

.card {
  background: var(--card);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.card h2 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.card h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--text);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  background: #f7faf5;
  border: 1px solid #dfead9;
  border-radius: 16px;
  padding: 1.1rem;
}

.feature strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}

.food-table,
.bee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.food-table th,
.food-table td,
.bee-table th,
.bee-table td {
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid #e2ebdd;
}

.food-table th,
.bee-table th {
  color: var(--green-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer a {
  color: white;
}

.legal-page {
  padding: 2rem 0 3rem;
}

.legal-page .card {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: 0.35rem;
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--green-deep);
  margin: 1.75rem 0 0.65rem;
}

.legal-page p,
.legal-page li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges,
  .hero-cta {
    justify-content: center;
  }

  .hero-badges {
    display: flex;
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav a {
    margin-left: 0.75rem;
    font-size: 0.85rem;
  }
}
