:root {
  --g: #173d25;
  --g2: #2b6540;
  --lime: #c7df48;
  --ink: #101611;
  --muted: #687269;
  --cream: #f3f5ef;
  --line: #dce3db;
  --white: #fff;
  --bg2: #f3f5ef;
  --bg3: #eef2eb;
  --shadow: 0 12px 32px rgba(23, 61, 37, .1);
  --mbn-h: 68px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: clip;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1260px, 92%); margin: auto; max-width: 100%; }

/* ===== Top bar & Nav (sticky) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(23, 61, 37, .08);
}
.top { background: #0b2113; color: #dfe8e1; padding: 9px 0; font-size: 12px; }
.top .wrap { display: flex; justify-content: space-between; gap: 20px; }
nav.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.logo { font-size: 27px; font-weight: 950; letter-spacing: -1.5px; color: var(--g); }
.logo span { color: #91a92c; }
.links { display: flex; gap: 22px; font-size: 13px; font-weight: 850; align-items: center; }
.links a { position: relative; padding: 4px 0; transition: color .2s; }
.links a:hover { color: var(--g2); }
.links a.active {
  color: var(--g);
  border-bottom: 2px solid var(--lime);
}
.quote {
  background: var(--g);
  color: #fff;
  padding: 13px 19px;
  border-radius: 4px;
  font-weight: 900;
  white-space: nowrap;
}
.quote.active { outline: 2px solid var(--lime); outline-offset: 2px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--g);
}

/* ===== Hero ===== */
.hero {
  height: calc(100vh - 115px);
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: visible;
  background:
    linear-gradient(
      105deg,
      rgba(7, 23, 12, .94) 0%,
      rgba(7, 23, 12, .88) 38%,
      rgba(7, 23, 12, .62) 62%,
      rgba(7, 23, 12, .35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 23, 12, .45) 0%,
      rgba(7, 23, 12, .2) 45%,
      rgba(7, 23, 12, .55) 100%
    ),
    url("/assets/images/hero-home.jpg") right center / cover no-repeat;
  background-color: #07170c;
}
.hero .wrap {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: min(1260px, 92%);
}
.hero .eye {
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .55), 0 1px 2px rgba(0, 0, 0, .4);
}
.eye {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--lime);
}
.eye.g { color: var(--g2); }
h1 {
  font-size: clamp(42px, 6.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -3px;
  margin: 16px 0;
  max-width: 930px;
}
.hero p {
  font-size: 19px;
  line-height: 1.65;
  max-width: 640px;
  color: #f2f7f3;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .55), 0 1px 2px rgba(0, 0, 0, .35);
}
.btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 4px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.primary { background: var(--lime); color: #132216; }
.outline {
  border: 1px solid #fff;
  color: #fff;
  background: rgba(7, 23, 12, .35);
  backdrop-filter: blur(4px);
}
.outline:hover {
  background: rgba(7, 23, 12, .55);
}
.btn.goutline {
  border: 1.5px solid var(--g);
  color: var(--g);
  background: transparent;
  border-radius: 4px;
  font-weight: 900;
  padding: 12px 20px;
}
.btn.goutline:hover { background: rgba(23, 61, 37, .08); }

/* ===== Inner page heroes — unique image per page name ===== */
.page-hero,
.hero-page {
  --hero-img: url("/assets/images/hero-home.jpg");
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      105deg,
      rgba(7, 23, 12, .94) 0%,
      rgba(7, 23, 12, .88) 38%,
      rgba(7, 23, 12, .62) 62%,
      rgba(7, 23, 12, .35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 23, 12, .45) 0%,
      rgba(7, 23, 12, .2) 45%,
      rgba(7, 23, 12, .55) 100%
    ),
    var(--hero-img) center / cover no-repeat;
}
.page-hero .wrap,
.hero-page .wrap {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}
.page-hero .eye,
.hero-page .eye {
  color: var(--lime);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.page-hero h1,
.hero-page h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2.5px;
  margin: 12px 0 14px;
  max-width: 900px;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .55), 0 1px 2px rgba(0, 0, 0, .4);
}
.page-hero p,
.hero-page p {
  color: #f2f7f3;
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .55), 0 1px 2px rgba(0, 0, 0, .35);
}
.page-hero .btns,
.hero-page .btns { margin-top: 28px; }

/* Each page gets its own hero photo by name */
.page-hero.hero-about { --hero-img: url("/assets/images/hero-about.jpg"); }
.page-hero.hero-products { --hero-img: url("/assets/images/hero-products.jpg"); }
.page-hero.hero-vision { --hero-img: url("/assets/images/hero-vision.jpg"); }
.page-hero.hero-advantages { --hero-img: url("/assets/images/hero-advantages.jpg"); }
.page-hero.hero-markets { --hero-img: url("/assets/images/hero-markets.jpg"); }
.page-hero.hero-contact { --hero-img: url("/assets/images/hero-contact.jpg"); }
.page-hero.hero-gallery { --hero-img: url("/assets/images/hero-gallery.jpg"); }
.page-hero.hero-testimonials { --hero-img: url("/assets/images/hero-testimonials.jpg"); }

/* ===== Intro / About ===== */
.intro { padding: 90px 0; }
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: end; }
h2 { font-size: 50px; line-height: 1.02; letter-spacing: -2.5px; margin: 10px 0 20px; }
.copy { color: var(--muted); font-size: 17px; line-height: 1.75; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value { padding: 28px 20px; text-align: center; border-right: 1px solid var(--line); }
.value:last-child { border: 0; }
.value strong { display: block; font-size: 18px; color: var(--g); margin-bottom: 5px; }
.value span { font-size: 12px; color: var(--muted); }

/* ===== Products ===== */
.products { background: var(--cream); padding: 90px 0; }
.head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.head p { max-width: 560px; color: var(--muted); line-height: 1.6; margin: 0; }
.productgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.productgrid.featured { grid-template-columns: repeat(4, 1fr); }
.product {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
a.product,
a.product-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.product:hover,
a.product-card:hover,
a.product:focus-visible,
a.product-card:focus-visible {
  border-color: var(--g2);
  box-shadow: 0 10px 28px rgba(15, 47, 31, 0.12);
  transform: translateY(-2px);
  outline: none;
}
a.product:hover .link,
a.product-card:hover .link {
  color: var(--g);
}
.pic {
  height: 240px;
  background: linear-gradient(135deg, #d7e2d1, #74836d);
  display: flex;
  align-items: end;
  padding: 20px;
  background-position: center;
  background-size: cover;
}
.product .pic.tiller {
  background-image: linear-gradient(#0000, #0006), url("/assets/images/product-tiller.jpg");
}
.product .pic.seeder {
  background-image: linear-gradient(#0000, #0006), url("/assets/images/product-seeder.jpg");
}
.product .pic.mower {
  background-image: linear-gradient(#0000, #0006), url("/assets/images/product-mower.jpg");
}
.product .pic.slasher {
  background-image: linear-gradient(#0000, #0006), url("/assets/images/product-slasher.jpg");
}
.tag {
  background: var(--g);
  color: #fff;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
}
.body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.body h3 { font-size: 25px; margin: 0 0 9px; }
.body p { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1; }
.link {
  display: inline-block;
  margin-top: 15px;
  color: var(--g2);
  font-size: 12px;
  font-weight: 900;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}
.pill {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--g);
}
.products-cta {
  text-align: center;
  margin-top: 36px;
}
.products-page .productgrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.products-page .pic { height: 280px; }
.products-page .body { padding: 28px; }
.products-page .body h3 { font-size: 28px; }
.products-page .body p { font-size: 15px; line-height: 1.7; }

/* ===== Single product page ===== */
.page-hero.hero-product {
  background:
    linear-gradient(90deg, rgba(11, 36, 24, 0.88) 0%, rgba(11, 36, 24, 0.55) 55%, rgba(11, 36, 24, 0.35) 100%),
    var(--hero-img) center / cover no-repeat;
}
.product-breadcrumb {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.product-breadcrumb a { color: #fff; text-decoration: none; font-weight: 700; }
.product-breadcrumb span { margin: 0 8px; opacity: 0.6; }

.product-detail {
  padding: 90px 0;
  background: #fff;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.product-detail-pic {
  min-height: 420px;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
}
.product-detail-pic.tiller {
  background-image: linear-gradient(#0000, #0004), url("/assets/images/product-tiller.jpg");
}
.product-detail-pic.seeder {
  background-image: linear-gradient(#0000, #0004), url("/assets/images/product-seeder.jpg");
}
.product-detail-pic.mower {
  background-image: linear-gradient(#0000, #0004), url("/assets/images/product-mower.jpg");
}
.product-detail-pic.slasher {
  background-image: linear-gradient(#0000, #0004), url("/assets/images/product-slasher.jpg");
}
.product-detail-copy .copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 16px 0 22px;
}
.product-detail-copy .btn { margin-top: 18px; }
.product-features .whatgrid {
  grid-template-columns: repeat(2, 1fr);
}

.product-testimonials .product-review-block {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.product-testimonials .product-review-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.product-review-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.product-review-head h3 {
  margin: 8px 0 0;
  font-size: 28px;
}
.product-review-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== What / Story / Vision / Advantages / Markets ===== */
.what { padding: 90px 0; position: relative; z-index: 2; }
.whatgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.whatcard { border: 1px solid var(--line); padding: 30px; min-height: 250px; }
.whatcard .num { font-size: 12px; color: var(--g2); font-weight: 900; }
.whatcard h3 { font-size: 25px; margin: 14px 0 10px; }
.whatcard p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.story { background: var(--g); color: #fff; padding: 90px 0; }
.storygrid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story h2 { color: #fff; }
.story p { color: #dce6dd; line-height: 1.75; }
.storybox { background: #0f2f1f; border: 1px solid #ffffff25; padding: 38px; }
.storybox strong { display: block; color: var(--lime); font-size: 14px; margin-bottom: 8px; }
.storybox p { margin-top: 0; }

.vision { padding: 90px 0; }
.visiongrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.visioncard { background: var(--cream); padding: 38px; }
.visioncard h3 { font-size: 32px; margin: 8px 0 15px; }
.visioncard p { color: var(--muted); line-height: 1.75; }

.advantages { background: #f7f8f5; padding: 90px 0; }
.advgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.adv { background: #fff; border: 1px solid var(--line); padding: 28px; min-height: 260px; }
.adv .n { font-size: 40px; font-weight: 950; color: var(--lime); }
.adv h3 { font-size: 22px; }
.adv p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.markets { padding: 90px 0; position: relative; z-index: 2; }
.marketgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.market { border: 1px solid var(--line); padding: 35px; }
.market h3 { font-size: 30px; margin: 8px 0 14px; }
.market p { color: var(--muted); line-height: 1.65; }
.market strong { color: var(--g); }

/* ===== CTA ===== */
.cta { background: var(--lime); padding: 70px 0; }
.ctain { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.ctain h2 { margin: 0; color: #132316; }
.ctain p { color: #40503f; }
.ctabtn {
  background: var(--g);
  color: #fff;
  padding: 16px 23px;
  border-radius: 4px;
  font-weight: 900;
  white-space: nowrap;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 90px 0;
}
.contact-card {
  border: 1px solid var(--line);
  padding: 35px;
  background: #fff;
}
.contact-card h3 { font-size: 28px; margin: 8px 0 14px; }
.contact-card p { color: var(--muted); line-height: 1.7; }
.contact-card a { color: var(--g2); font-weight: 800; }
.contact-form {
  background: var(--cream);
  padding: 38px;
  border: 1px solid var(--line);
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--g);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { background: var(--g); color: #fff; }

/* Bottom snackbar (success / error after contact submit) */
.snackbar {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: min(520px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  background: #212121;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.snackbar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.snackbar.is-hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}
.snackbar-msg {
  flex: 1;
  color: #fff;
  font-weight: 500;
}
.snackbar-action {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #ff9f00;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}
.snackbar-action:hover { color: #ffb733; }
.snackbar.is-error .snackbar-action { color: #ff8a80; }
.snackbar.is-error .snackbar-action:hover { color: #ffab9d; }

@media (max-width: 1024px) {
  .snackbar {
    bottom: calc(var(--mbn-h) + var(--safe-bottom) + 16px);
  }
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Section heads (testimonials / gallery) ===== */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.sec-head h2 { margin: 10px 0 12px; }
.sec-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.sec-head-btn { margin-top: 18px; }

/* ===== Testimonials ===== */
.reviews {
  position: relative;
  z-index: 2;
  background: var(--bg2);
  padding: 92px 0;
}
.reviews > .wrap { position: relative; z-index: 1; }
.reviews::after {
  content: "";
  position: absolute;
  width: clamp(80px, 12vw, 160px);
  height: clamp(100px, 15vw, 200px);
  right: 4%;
  top: 40px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20120%20160%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M60%208C60%208%2018%2048%2018%2096c0%2028%2018%2048%2042%2052%2024-4%2042-24%2042-52C102%2048%2060%208%2060%208Z%22%20fill%3D%22%232b6540%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M60%208C60%208%2034%2052%2034%2096c0%2022%2010%2038%2026%2046V8Z%22%20fill%3D%22%23173d25%22%20opacity%3D%22.55%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M60%2022v118%22%20stroke%3D%22%230f2f1f%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M60%2048c-14%208-22%2020-26%2034M60%2072c14%208%2022%2018%2026%2030M60%2096c-12%206-18%2014-20%2024%22%20stroke%3D%22%230f2f1f%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.7%22%2F%3E%0A%3C%2Fsvg%3E") center / contain no-repeat;
  opacity: .28;
  pointer-events: none;
  z-index: 0;
}
.reviewrow { display: flex; align-items: center; gap: 14px; }
.reviewview { overflow: hidden; flex: 1; }
.reviewtrack {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.review {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  box-shadow: var(--shadow);
}
.quote-mark {
  font-size: 32px;
  line-height: 1;
  color: var(--g);
  margin-bottom: 8px;
}
.quote-mark .bi { font-size: 32px; line-height: 1; }
.stars {
  color: var(--g2);
  display: flex;
  gap: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}
.stars .bi { color: var(--g2); }
.review p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.review strong {
  display: block;
  color: var(--g);
  margin-top: 18px;
  font-size: 15px;
}
.review .who {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.revnav {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--g);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.revnav .bi { font-size: 20px; line-height: 1; }
.revnav:hover {
  background: var(--g);
  color: #fff;
  border-color: var(--g);
}
.revdots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.revdots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(23, 61, 37, .28);
  padding: 0;
  cursor: pointer;
}
.revdots button.on { background: var(--g2); }
.reviews-cta { text-align: center; margin-top: 28px; }

/* Testimonials page grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 40px;
}
.reviews-grid .review { min-height: auto; }

/* ===== Gallery ===== */
.gallery {
  padding: 92px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.galleryrow { display: flex; align-items: center; gap: 14px; }
.galleryview { overflow: hidden; flex: 1; }
.gallerytrack {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.galslide {
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  background: var(--bg3);
  cursor: zoom-in;
}
.galslide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .45s ease;
}
.galslide:hover img { transform: scale(1.06); }
.galdots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.galdots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(23, 61, 37, .28);
  padding: 0;
  cursor: pointer;
}
.galdots button.on { background: var(--g2); }

.gallery-all {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(11, 23, 14, .96);
  display: none;
  overflow: auto;
  padding: 28px 0 60px;
}
.gallery-all.is-open { display: block; }
.gallery-all-panel { width: min(1260px, 92%); margin: auto; }
.gallery-all-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  position: sticky;
  top: 0;
  background: rgba(11, 23, 14, .96);
  padding: 18px 0 12px;
  z-index: 1;
}
.gallery-all-head h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.8px;
  color: #fff;
}
.gallery-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-all-grid a {
  display: block;
  overflow: hidden;
  background: var(--bg3);
  cursor: zoom-in;
}
.gallery-all-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-all-grid a:hover img { transform: scale(1.05); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #07160ce8;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--bg3);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 223, 72, .45);
  background: var(--bg3);
  color: var(--g);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.lightbox-close { top: 18px; right: 18px; font-size: 22px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 0 40px;
}
.gallery-page-grid a {
  display: block;
  overflow: hidden;
  background: var(--bg3);
  cursor: zoom-in;
}
.gallery-page-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-page-grid a:hover img { transform: scale(1.05); }

/* ===== Footer ===== */
/* ===== Footer ===== */
footer {
  background: #0b170e;
  color: #cdd8cf;
  padding: 50px 0 25px;
}
.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
}
.foot > div:first-child .logo {
  display: inline-block;
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: #fff;
}
.foot > div:first-child .logo span {
  color: var(--lime);
}
.foot > div:first-child p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #aeb9af;
  max-width: 320px;
}
.foot h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.foot a {
  display: block;
  margin: 0;
  padding: 6px 0;
  color: #aeb9af;
  font-size: 13px;
  line-height: 1.4;
}
.foot a:hover { color: var(--lime); }
.copyright {
  border-top: 1px solid #273228;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 12px;
  color: #829085;
  text-align: left;
}

/* ===== App-style bottom navigation ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed !important;
  left: 0;
  right: 0;
  top: auto !important;
  bottom: 0 !important;
  z-index: 9999;
  width: 100%;
  height: calc(var(--mbn-h) + var(--safe-bottom));
  margin: 0;
  padding: 4px 6px var(--safe-bottom);
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 28px rgba(16, 22, 17, .12);
  align-items: stretch;
  justify-content: space-around;
  gap: 2px;
  box-sizing: border-box;
}
.mbn-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 2px;
  min-height: 52px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15px;
  color: #7a8a7e;
  background: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: color .15s ease, background .15s ease;
}
.mbn-item span {
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.mbn-item i {
  font-size: 22px;
  line-height: 1;
  color: inherit;
}
.mbn-item:active {
  background: var(--cream);
}
.mbn-item.active,
.mbn-item[aria-current="page"] {
  color: var(--g);
  background: rgba(199, 223, 72, .18);
}
.mbn-item.active i,
.mbn-item[aria-current="page"] i {
  color: var(--g);
}

/* More bottom sheet */
.more-sheet {
  position: fixed;
  inset: 0;
  z-index: 140;
  visibility: hidden;
  pointer-events: none;
}
.more-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}
.more-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 14, .5);
  opacity: 0;
  transition: opacity .28s ease;
}
.more-sheet.is-open .more-sheet-backdrop { opacity: 1; }
.more-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px 18px calc(24px + var(--safe-bottom) + var(--mbn-h));
  max-height: min(78vh, 560px);
  overflow: auto;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .18);
  transform: translateY(110%);
  transition: transform .28s ease;
}
.more-sheet.is-open .more-sheet-panel { transform: translateY(0); }
.more-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.more-sheet-head strong {
  font-size: 18px;
  color: var(--g);
}
.more-sheet-head button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 8px;
  color: var(--g);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.more-sheet-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.more-sheet-panel a i {
  width: 28px;
  text-align: center;
  color: var(--g2);
  font-size: 18px;
}
.more-sheet-panel a.active {
  color: var(--g);
  background: var(--cream);
  margin: 0 -8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.more-sheet-panel a.more-cta {
  margin-top: 12px;
  background: var(--g);
  color: #fff;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  padding: 16px;
}
.more-sheet-panel a.more-cta i { color: var(--lime); }

/* ===== Tablet: 768px – 1199px ===== */
@media (max-width: 1199px) {
  .wrap { width: min(1260px, 94%); }
  .links { gap: 14px; font-size: 12px; }
  .nav { gap: 14px; height: 72px; }
  .logo { font-size: 24px; }
  .quote { padding: 11px 14px; font-size: 12px; }
  h1 { letter-spacing: -3px; }
  h2 { font-size: 42px; letter-spacing: -2px; }
  /* .hero { min-height: 620px; height: auto; } */
  .hero .wrap { padding: 80px 0; }
  .hero p { font-size: 17px; }
  .intro,
  .products,
  .what,
  .story,
  .vision,
  .advantages,
  .markets,
  .reviews,
  .gallery { padding: 72px 0; }
  .page-hero,
  .hero-page { min-height: 440px; }
  .page-hero .wrap,
  .hero-page .wrap { padding: 64px 0; }
  .page-hero h1,
  .hero-page h1 { font-size: clamp(32px, 5vw, 48px); }
  .productgrid,
  .productgrid.featured { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-page .productgrid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-pic { min-height: 300px; }
  .product-review-head { align-items: start; flex-direction: column; }
  .product-review-grid { grid-template-columns: repeat(2, 1fr); }
  .advgrid { grid-template-columns: repeat(2, 1fr); }
  .whatgrid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2) { border-right: 0; }
  .reviews-grid,
  .gallery-page-grid,
  .gallery-all-grid { grid-template-columns: repeat(2, 1fr); }
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .foot > div:first-child {
    grid-column: 1 / -1;
  }
  .pic { height: 220px; }
  .products-page .pic { height: 240px; }
  .galslide img { height: 260px; }
  .btn,
  .ctabtn,
  .quote { min-height: 44px; }
  .sec-head { margin-bottom: 36px; }
}

/* Tablet layout (cards/spacing) — top menu replaced by bottom nav below */
@media (max-width: 1024px) and (min-width: 768px) {
  .twocol,
  .storygrid,
  .visiongrid,
  .marketgrid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .head { flex-wrap: wrap; align-items: flex-start; }
}

/* ===== App bottom nav: phone + tablet (≤1024px) ===== */
@media (max-width: 1024px) {
  .top { display: none; }
  .nav-toggle { display: none !important; }
  .links { display: none !important; }
  .quote { display: none !important; }

  nav.site-nav {
    background: #fff;
  }
  .nav {
    height: 60px;
    gap: 10px;
    justify-content: center;
  }
  .logo { font-size: 22px; letter-spacing: -1px; }

  body {
    padding-bottom: calc(var(--mbn-h) + var(--safe-bottom) + 16px);
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
  }
}

/* ===== Mobile: below 768px ===== */
@media (max-width: 767px) {
  .wrap { width: min(1260px, 92%); }
  .hero {
    min-height: calc(100svh - 60px - var(--mbn-h));
    height: auto;
    align-items: flex-end;
  }
  .hero .wrap { padding: 72px 0 56px; }
  h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -2px;
    line-height: 1.02;
    margin: 12px 0;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.65;
  }
  .btns { gap: 10px; margin-top: 22px; }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    min-height: 48px;
    font-size: 13px;
  }
  .btn.outline { border-width: 1.5px; }

  .page-hero,
  .hero-page { min-height: 420px; }
  .page-hero .wrap,
  .hero-page .wrap { padding: 56px 0 48px; }
  .page-hero h1,
  .hero-page h1 {
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: -1.5px;
  }
  .page-hero p,
  .hero-page p { font-size: 15px; }

  .intro,
  .products,
  .what,
  .story,
  .vision,
  .advantages,
  .markets,
  .reviews,
  .gallery,
  .cta { padding: 52px 0; }
  .contact-grid { padding: 40px 0 24px; gap: 18px; }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
    letter-spacing: -1.5px;
    margin: 8px 0 14px;
  }
  .copy { font-size: 15px; line-height: 1.7; }
  .sec-head { margin-bottom: 28px; }
  .sec-lead { font-size: 14px; }
  .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
  .head p { font-size: 14px; }

  .twocol,
  .storygrid,
  .visiongrid,
  .marketgrid,
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  .productgrid,
  .productgrid.featured,
  .products-page .productgrid,
  .product-review-grid,
  .advgrid,
  .whatgrid,
  .values,
  .reviews-grid,
  .gallery-page-grid,
  .gallery-all-grid { grid-template-columns: 1fr; gap: 14px; }

  .value {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 16px;
    text-align: left;
  }
  .value:last-child { border-bottom: 0; }

  .pic { height: 200px; }
  .products-page .pic { height: 220px; }
  .body { padding: 18px; }
  .body h3 { font-size: 22px; }
  .products-page .body h3 { font-size: 24px; }
  .link { min-height: 44px; display: inline-flex; align-items: center; }

  .whatcard,
  .adv,
  .market,
  .visioncard,
  .contact-card {
    padding: 22px 18px;
    min-height: 0;
  }
  .visioncard h3 { font-size: 24px; }
  .market h3 { font-size: 24px; }
  .adv .n { font-size: 32px; }
  .adv h3 { font-size: 18px; }
  .storybox { padding: 24px 20px; }

  .cta { padding: 48px 0; }
  .ctain { display: block; }
  .ctain h2 { font-size: 28px; }
  .ctabtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    min-height: 48px;
    width: 100%;
    text-align: center;
  }

  .reviewrow,
  .galleryrow {
    display: block;
    position: relative;
    gap: 0;
  }
  .reviewview,
  .galleryview {
    width: 100%;
    display: block;
  }
  .reviewrow .revnav,
  .galleryrow .revnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    box-shadow: 0 4px 14px rgba(16, 22, 17, .18);
    color: var(--g);
    justify-self: auto;
  }
  .galleryrow .revnav#gal-prev,
  .reviewrow .revnav#rev-prev {
    left: 8px;
  }
  .galleryrow .revnav#gal-next,
  .reviewrow .revnav#rev-next {
    right: 8px;
  }
  .galleryrow .revnav:active,
  .reviewrow .revnav:active {
    background: var(--g);
    color: #fff;
    border-color: var(--g);
  }
  .galslide img {
    height: 220px;
    border-radius: 4px;
  }
  .review { padding: 22px 18px; min-height: 260px; }
  .gallery-all-grid img,
  .gallery-page-grid img { height: 210px; }
  .galdots,
  .revdots { margin-top: 16px; }

  .contact-form { padding: 24px 18px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* prevents iOS zoom */
    min-height: 48px;
    padding: 12px 14px;
  }
  .contact-form .btn {
    width: 100%;
    min-height: 48px;
  }

  footer {
    padding: 36px 0 calc(24px + var(--mbn-h) + var(--safe-bottom));
  }
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 26px 16px;
  }
  .foot > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid #273228;
    margin-bottom: 4px;
  }
  .foot > div:first-child .logo {
    font-size: 30px;
    letter-spacing: -1.4px;
  }
  .foot > div:first-child p {
    margin-top: 10px;
    font-size: 13px;
    max-width: none;
    line-height: 1.6;
  }
  .foot h4 {
    margin: 0 0 10px;
    font-size: 12px;
  }
  .foot a {
    padding: 7px 0;
    font-size: 13px;
    min-height: 0;
  }
  .foot > div:last-child {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid #273228;
  }
  .copyright {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox { padding: 16px; }
  .lightbox img {
    max-width: 92vw;
    max-height: 72vh;
  }

  .gallery-all {
    padding-bottom: calc(60px + var(--mbn-h) + var(--safe-bottom));
  }
  .gallery-all-head h3 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallerytrack,
  .reviewtrack,
  .galslide:hover img,
  .gallery-all-grid a:hover img,
  .gallery-page-grid a:hover img,
  .more-sheet-panel {
    transition: none;
  }
  .galslide:hover img,
  .gallery-all-grid a:hover img,
  .gallery-page-grid a:hover img {
    transform: none;
  }
}
