:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --accent: #f9a825;
  --bg: #ffffff;
  --surface: #f4f8f1;
  --text: #22301c;
  --text-light: #55624c;
  --border: #dde6d4;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

.skip-link {
  position: absolute;
  right: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 0 8px;
}
.skip-link:focus {
  right: 0;
}

a, button, input, textarea, [tabindex] {
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--surface), #fff);
  padding: 100px 0 70px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}
.hero .eyebrow {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 6px;
}

section { padding: 64px 0; }
section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

/* About */
.about { background: #fff; }
.about .container { max-width: 820px; text-align: center; }
.about p { margin-bottom: 14px; font-size: 1.08rem; color: var(--text); }
.about .founder { font-weight: 700; color: var(--primary-dark); margin-top: 20px; }

/* Growing sections */
.grow-section { background: var(--surface); }
.grow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.grow-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.grow-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.grow-card figcaption {
  padding: 10px 14px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
}

/* Product gallery */
.products { background: #fff; }
.products h1 {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--primary-dark);
  margin-bottom: 30px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.gallery figure {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery img:hover { transform: scale(1.06); }

/* Visit us */
.visit { background: var(--surface); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .visit-grid { grid-template-columns: 1fr; }
}
.visit-info { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.visit-info h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 1.1rem; }
.visit-info p { margin-bottom: 6px; }
.visit-info .phones a { color: var(--primary-dark); font-weight: 700; text-decoration: none; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* Contact form */
.contact-form { margin-top: 30px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--primary-dark); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}
.contact-form button:hover { background: var(--primary-dark); }

/* Footer */
footer {
  background: var(--primary-dark);
  color: #eaf3e6;
  text-align: center;
  padding: 34px 0;
  font-size: .95rem;
}
footer a { color: #fff; }

/* ===== FAB buttons (bottom-left, agency standard) ===== */
.fab-container {
  position: fixed;
  bottom: 20px;
  inset-inline-start: 20px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.32); }
.fab svg { width: 28px; height: 28px; fill: currentColor; }
.fab.facebook { background: #1877f2; }
.fab.home { background: #455a64; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }

/* ===== Accessibility widget (agency standard) ===== */
#a11y-toggle {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 2147483000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
#a11y-toggle:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.3); }
#a11y-toggle svg { width: 26px; height: 26px; }
#a11y-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  color: var(--text);
  z-index: 2147483001;
  box-shadow: -4px 0 20px rgba(0,0,0,.2);
  overflow-y: auto;
  transition: right .25s ease;
  padding: 20px;
  direction: rtl;
  text-align: right;
}
#a11y-panel.open { right: 0; }
#a11y-panel h2 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 16px; }
#a11y-panel .a11y-close {
  position: absolute; top: 14px; left: 14px;
  background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text);
}
.a11y-btn {
  display: block;
  width: 100%;
  text-align: right;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
}
.a11y-btn:hover { background: #eaf1e4; }
.a11y-report {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-light);
}
.a11y-report strong { color: var(--text); }

/* Accessibility state classes applied to <html> */
html.a11y-contrast { filter: contrast(1.3); }
html.a11y-invert { filter: invert(1) hue-rotate(180deg); }
html.a11y-grayscale img { filter: grayscale(1); }
html.a11y-underline a { text-decoration: underline !important; }
html.a11y-no-anim * { animation: none !important; transition: none !important; }
html.a11y-readable body { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: .3px; }
