/* Vinmar Solutions LLC — site styles */
:root {
  --green-900: #12401d;
  --green-800: #19542a;
  --green-700: #227038;
  --green-600: #2e8b46;
  --green-500: #43a860;
  --green-400: #6cc584;
  --green-50: #eef7f0;
  --earth: #6b4f2a;
  --gold: #d9a441;
  --ink: #1c2320;
  --muted: #566159;
  --bg: #f6faf5;
  --card: #ffffff;
  --border: #dde9de;
  --shadow: 0 2px 10px rgba(18, 64, 29, .07);
  --shadow-lg: 0 14px 40px rgba(18, 64, 29, .16);
  --radius: 16px;
  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Poppins", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand .name { font-family: var(--display); letter-spacing: -.01em; }
a { color: var(--green-700); }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  transform: translateY(-160%); padding: 10px 14px; border-radius: 8px;
  background: #fff; color: var(--green-900); font-weight: 700; box-shadow: var(--shadow-lg);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, summary):focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 11px 20px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .logo { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 2px 6px rgba(18,64,29,.25)); }
.brand .name { font-weight: 800; font-size: 1.08rem; }
.brand .tag { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); font-family: var(--font); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: 8px 15px; border-radius: 999px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--green-50); color: var(--green-800); }
.nav-links a.active { background: var(--green-700); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px; cursor: pointer; color: var(--ink); font-weight: 600;
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; border-bottom: 1px solid var(--border); padding: 14px 12px 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 16px; border-radius: 11px; font-size: 1.02rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  padding: 104px 20px 128px;
  background: var(--green-800);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(15,52,24,.66), rgba(18,64,29,.82)),
              url("../images/hero.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(15,52,24,.66), rgba(18,64,29,.82)),
              image-set(url("../images/hero.avif") type("image/avif"), url("../images/hero.jpg") type("image/jpeg")) center/cover no-repeat;
  transform: scale(1.05); z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.availability-status {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 0 18px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.45);
  color: #fff; font-size: .88rem; font-weight: 700; letter-spacing: .01em;
  backdrop-filter: blur(5px);
}
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); margin: 0 0 16px; line-height: 1.08; font-weight: 800; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero p.lede { font-size: clamp(1.05rem, 2.2vw, 1.32rem); max-width: 720px; margin: 0 auto 12px; opacity: .97; }
.hero .quote { font-style: italic; opacity: .92; margin-top: 20px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.badge {
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.3);
  padding: 8px 15px; border-radius: 999px; font-size: .9rem; font-weight: 600; backdrop-filter: blur(4px);
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-weight: 700; padding: 14px 26px; border-radius: 999px; transition: transform .12s, box-shadow .12s;
  font-family: var(--display);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: #fff; color: var(--green-800); box-shadow: var(--shadow-lg); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }

@media (max-width: 560px) {
  .hero { padding: 62px 18px 92px; }
  .hero h1 { font-size: 2.25rem; }
  .hero p.lede { font-size: 1rem; line-height: 1.55; }
  .hero p.lede + p.lede { margin-top: 8px; }
  .availability-status { font-size: .78rem; line-height: 1.35; margin-bottom: 15px; }
  .badges { margin-top: 20px; gap: 8px; }
  .badge { padding: 7px 11px; font-size: .8rem; }
  .badge:nth-child(n+4) { display: none; }
  .cta-row { margin-top: 24px; }
  .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero .quote { display: none; }
}

/* Curved divider */
.divider { display: block; width: 100%; height: 60px; margin: 0; line-height: 0; }
.divider svg { display: block; width: 100%; height: 100%; }
.hero-divider { position: absolute; bottom: -1px; left: 0; z-index: 1; height: 70px; }

/* ---------- Sections ---------- */
main { padding: 60px 0; }
.section { padding: 22px 0 48px; }
.section h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.2rem); margin: 0 0 8px; color: var(--green-900); font-weight: 800;
}
.section .kicker {
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem;
  font-weight: 800; color: var(--green-600); margin: 0 0 8px; font-family: var(--font);
}
.section .sub { color: var(--muted); max-width: 700px; margin: 0 0 28px; }

.page-head {
  position: relative; overflow: hidden;
  background: var(--green-800); color: #fff;
  padding: 62px 0 76px;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(15,52,24,.72), rgba(18,64,29,.86)),
              url("../images/turf.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(15,52,24,.72), rgba(18,64,29,.86)),
              image-set(url("../images/turf.avif") type("image/avif"), url("../images/turf.jpg") type("image/jpeg")) center/cover no-repeat; z-index: 0;
}
.page-head > .container { position: relative; z-index: 1; }
.page-head h1 { margin: 0 0 10px; font-size: clamp(1.9rem, 4vw, 2.7rem); color: #fff; font-weight: 800; }
.page-head p { margin: 0; color: rgba(255,255,255,.9); max-width: 720px; }
.page-head .hero-divider { height: 56px; }

/* ---------- Stats band ---------- */
.stats-band {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: 54px 20px; background: var(--green-800);
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(18,64,29,.86), rgba(18,64,29,.9)),
              url("../images/turf.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(18,64,29,.86), rgba(18,64,29,.9)),
              image-set(url("../images/turf.avif") type("image/avif"), url("../images/turf.jpg") type("image/jpeg")) center/cover no-repeat; z-index: 0;
}
.stats-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; }
.stat .num small { font-size: .55em; }
.stat .lbl { margin-top: 8px; font-size: .92rem; opacity: .9; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.card.lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card h3 { margin: 0 0 8px; color: var(--green-800); font-size: 1.18rem; }
.card ul { margin: 10px 0 0; padding-left: 20px; }
.card li { margin: 6px 0; }
.card .ico-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700); margin-bottom: 14px;
}
.card .ico-badge svg { width: 28px; height: 28px; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px; background: var(--card);
  border: 1px solid var(--border); border-radius: 12px; padding: 13px 16px; box-shadow: var(--shadow);
  font-weight: 600;
}
.feature-list li svg { width: 20px; height: 20px; color: var(--green-600); flex: none; }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ---------- Notice ---------- */
.notice {
  border-radius: var(--radius); padding: 24px 26px; margin: 8px 0 0;
  border: 1px solid #f0d9b5; background: #fff8ec;
}
.notice.warning { border-color: #f2c9c0; background: #fdf0ee; }
.notice h3 { margin: 0 0 8px; color: #9a3412; display: flex; align-items: center; gap: 10px; font-size: 1.15rem; }
.notice h3 svg { width: 22px; height: 22px; flex: none; }
.notice p { margin: 6px 0; }
.notice strong { color: #7c2d12; }
.notice summary {
  cursor: pointer; color: #9a3412; font-family: var(--display); font-weight: 700;
}
.notice summary + p { margin-top: 12px; }

/* ---------- Q&A / Lawn talk ---------- */
.qa { display: grid; gap: 14px; }
.qa details {
  background: var(--card); border: 1px solid var(--border); border-radius: 13px;
  padding: 4px 22px; box-shadow: var(--shadow); transition: box-shadow .15s;
}
.qa details[open] { box-shadow: var(--shadow-lg); }
.qa summary {
  cursor: pointer; font-weight: 700; color: var(--green-800); padding: 15px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--display);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-size: 1.5rem; color: var(--green-500); font-weight: 400; transition: transform .2s; }
.qa details[open] summary::after { content: "–"; }
.qa details > *:not(summary) { padding-bottom: 16px; }
.qa p { margin: 4px 0 10px; }

.topic-block { margin-bottom: 40px; }
.topic-block > h2 { display: flex; align-items: center; gap: 12px; }
.topic-icon {
  width: 44px; height: 44px; border-radius: 12px; display: inline-grid; place-items: center; flex: none;
  background: var(--green-50); color: var(--green-700);
}
.topic-icon svg { width: 24px; height: 24px; }

/* ---------- PDF / product list ---------- */
.pdf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .pdf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pdf-grid { grid-template-columns: 1fr; } }
.pdf-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--card); border: 1px solid var(--border); border-radius: 13px;
  padding: 16px; color: var(--ink); box-shadow: var(--shadow);
  border-left: 5px solid var(--green-500);
  transition: transform .12s, box-shadow .12s;
}
.pdf-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pdf-card .pdf-ico {
  flex: none; width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700);
}
.pdf-card .pdf-ico svg { width: 24px; height: 24px; }
.pdf-card .pdf-name { font-weight: 700; line-height: 1.25; }

/* category accent colors */
.cat-pre     .pdf-card { border-left-color: #43a860; }
.cat-post    .pdf-card { border-left-color: #7cae2e; }
.cat-nonsel  .pdf-card { border-left-color: #d9a441; }
.cat-insect  .pdf-card { border-left-color: #b5651d; }
.cat-fungi   .pdf-card { border-left-color: #8a6bb0; }

.cat-label {
  display: flex; align-items: center; gap: 10px;
  margin: 34px 0 14px; font-size: 1.05rem; font-weight: 800;
  color: var(--green-900); font-family: var(--display);
}
.cat-label svg { width: 24px; height: 24px; color: var(--green-600); }
.cat-label:first-of-type { margin-top: 6px; }

/* ---------- Contact strip ---------- */
.contact-strip {
  background: linear-gradient(135deg, var(--green-800), var(--green-700)); color: #fff; border-radius: var(--radius);
  padding: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 620px) { .contact-strip { grid-template-columns: 1fr; } }
.contact-strip a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-strip .ico { width: 34px; height: 34px; margin: 0 auto 8px; opacity: .9; }
.contact-strip .label { font-size: .76rem; text-transform: uppercase; letter-spacing: 1px; opacity: .75; }
.contact-strip .big { font-size: 1.12rem; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900); color: #cfe6d4; padding: 46px 20px 28px; margin-top: 48px;
}
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; max-width: var(--maxw); margin: 0 auto; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 1.05rem; }
.site-footer a { color: #cfe6d4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.site-footer .brand-foot { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.site-footer .brand-foot svg { width: 38px; height: 38px; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.15); margin-top: 30px; padding-top: 18px;
  text-align: center; font-size: .82rem; opacity: .8; max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
