:root {
  --bg: #f7f9f4;
  --surface: #ffffff;
  --text: #203126;
  --muted: #5f6f64;
  --line: #d7e0d5;
  --brand: #2f7a38;
  --brand-strong: #215c29;
  --accent: #f3b547;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(33, 71, 40, 0.1);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(208, 232, 192, 0.35), transparent 45%),
    linear-gradient(180deg, #fbfcf8 0%, #f4f8ee 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 244, 0.86);
  border-bottom: 1px solid rgba(215, 224, 213, 0.8);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  width: 142px;
  height: auto;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.nav-links a {
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.wa-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecf8ee;
  border: 1px solid #b4dbb8;
  padding: 10px 14px;
  border-radius: 999px;
}

.wa-number {
  color: var(--brand-strong);
  font-weight: 700;
}

.wa-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.wa-icon svg {
  width: 100%;
  fill: #25d366;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #111111;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.5rem;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
}

.hero-text p {
  max-width: 60ch;
  color: #111111;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, #2f7a38, #2a6a32);
  box-shadow: 0 8px 20px rgba(38, 114, 52, 0.25);
}

.btn-outline {
  border: 1px solid var(--brand);
  color: var(--brand-strong);
  background: #f3fbf3;
}

.btn-text {
  background: transparent;
  color: var(--brand-strong);
  padding-inline: 0;
}

.carousel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e8eee6;
  padding: 12px;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 380px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide.is-active {
  opacity: 1;
  position: relative;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #bdcbbe;
  cursor: pointer;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--brand);
}

.about {
  background: linear-gradient(180deg, rgba(247, 251, 243, 0.9), rgba(240, 247, 236, 0.9));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
}

.about-logo-wrap {
  background: #fff;
  border: 1px solid #e4ece1;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-logo {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.section-head p {
  margin-top: 0;
}

.category-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.variety-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #e2ece0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(28, 57, 33, 0.08);
}

.variety-card {
  display: flex;
  flex-direction: column;
}

.category-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.variety-card img {
  width: 100%;
  height: clamp(220px, 26vw, 300px);
  object-fit: contain;
  background: #ffffff;
}

.card-body {
  padding: 16px;
}

.card-body h3,
.card-body h4 {
  margin: 0 0 8px;
}

.card-body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.varieties-panel {
  margin-top: 28px;
  background: #f8fcf7;
  border: 1px solid #d9e7d7;
  border-radius: var(--radius);
  padding: 20px;
}

.varieties-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.varieties-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.price {
  color: #7f560b;
  background: #ffecc8;
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact {
  background: linear-gradient(180deg, rgba(245, 249, 240, 0.95), rgba(239, 247, 233, 0.95));
}

.contact-card {
  background: #fff;
  border: 1px solid #e2ebe0;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 8px 0;
}

.contact-card a {
  color: var(--brand-strong);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid #dce7db;
  padding: 18px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-logo-wrap {
    max-width: 340px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .varieties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 4vw;
    top: 72px;
    width: min(420px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 12px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .wa-contact-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 60px 0;
  }

  .slide img,
  .carousel-track {
    min-height: 260px;
    height: 260px;
  }

  .category-grid,
  .varieties-grid {
    grid-template-columns: 1fr;
  }
}
