:root {
  --leaf: #244914;
  --leaf-2: #55751e;
  --fresh: #9fba35;
  --gold: #f4b23d;
  --tomato: #c94d2f;
  --ink: #172115;
  --muted: #667160;
  --line: rgba(45, 75, 31, 0.14);
  --paper: #fffdf6;
  --mist: #f2f7ea;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(24, 42, 15, 0.15);
  --shadow-strong: 0 34px 90px rgba(19, 35, 12, 0.24);
  --radius: 8px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(159, 186, 53, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(244, 178, 61, 0.10), transparent 22rem),
    linear-gradient(180deg, #fffdf7, #f8f4e7 48%, #fffdf7);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #18330f;
  color: var(--white);
  font-size: 14px;
  position: relative;
  z-index: 30;
}

.topbar .container,
.mainnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  opacity: 0.94;
  transition: color 240ms var(--ease), opacity 240ms var(--ease);
}

.topbar a:hover {
  color: #f7d879;
  opacity: 1;
}

.topbar__links,
.topbar__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 9px 0;
}

.mainnav {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255, 253, 246, 0.82);
  border-bottom: 1px solid rgba(45, 75, 31, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: box-shadow 280ms var(--ease), background 280ms var(--ease), transform 280ms var(--ease);
}

.mainnav.is-scrolled {
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 16px 45px rgba(22, 39, 13, 0.11);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 0;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 260ms var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand__mark {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand__name {
  display: none;
}

.brand__tag {
  display: none;
}

.navlinks {
  align-items: center;
  display: flex;
  gap: 4px;
}

.navlinks a {
  border-radius: 7px;
  color: #33402d;
  display: inline-flex;
  font-weight: 800;
  padding: 12px 10px;
  position: relative;
  transition: background 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}

.navlinks a:not(.btn):after {
  background: var(--gold);
  border-radius: 99px;
  bottom: 6px;
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
  width: calc(100% - 24px);
}

.navlinks a:hover,
.navlinks a.is-active {
  background: rgba(159, 186, 53, 0.12);
  color: var(--leaf);
  transform: translateY(-1px);
}

.navlinks a:hover:after,
.navlinks a.is-active:after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: var(--leaf);
  border: 0;
  border-radius: 7px;
  color: white;
  min-height: 42px;
  padding: 0 13px;
}

.btn,
.ghost-btn {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  position: relative;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
  overflow: hidden;
}

.btn:after,
.ghost-btn:after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  inset: 0 auto 0 -90%;
  position: absolute;
  transform: skewX(-20deg);
  transition: left 560ms var(--ease);
  width: 70%;
}

.btn {
  background: linear-gradient(135deg, #f8c15d, var(--gold) 52%, #e59b1f);
  color: #271900;
  box-shadow: 0 14px 34px rgba(245, 166, 35, 0.26);
}

.btn:hover {
  background: linear-gradient(135deg, #ffd077, #f1a92d);
  box-shadow: 0 20px 46px rgba(245, 166, 35, 0.34);
  transform: translateY(-3px);
}

.btn:hover:after,
.ghost-btn:hover:after {
  left: 120%;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 73, 20, 0.16);
  color: var(--leaf);
  box-shadow: 0 10px 30px rgba(24, 42, 15, 0.06);
}

.ghost-btn:hover {
  background: var(--white);
  border-color: rgba(36, 73, 20, 0.28);
  box-shadow: 0 18px 46px rgba(24, 42, 15, 0.12);
  transform: translateY(-3px);
}

.hero {
  background:
    linear-gradient(100deg, rgba(13, 28, 9, 0.9), rgba(33, 59, 22, 0.62) 46%, rgba(21, 42, 14, 0.2)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.hero:before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  inset: 0;
  opacity: 0.16;
  position: absolute;
  z-index: -1;
}

.hero:after {
  background: linear-gradient(180deg, transparent, rgba(255, 253, 246, 0.94));
  bottom: -1px;
  content: "";
  height: 120px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
  gap: 38px;
  min-height: 610px;
  padding: 52px 0 54px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 4.9vw, 62px);
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 4.2vw, 56px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

p {
  color: var(--muted);
  font-size: 17px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  max-width: 690px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 246, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 34px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.hero__panel:hover {
  box-shadow: 0 38px 100px rgba(19, 35, 12, 0.3);
  transform: translateY(-8px);
}

.hero__panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.stat {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 15px;
  backdrop-filter: blur(8px);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.stat:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.stat strong {
  display: block;
  font-size: 25px;
}

section {
  padding: 104px 0;
  position: relative;
}

.hero {
  padding: 0;
}

.section-head {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-head p {
  margin: 0;
  max-width: 560px;
}

.promo-grid,
.category-grid,
.product-grid,
.feature-grid,
.contact-grid,
.footer-grid,
.spec-grid {
  display: grid;
  gap: 22px;
}

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

.promo {
  align-items: end;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  display: flex;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(24, 42, 15, 0.12);
  transform: translateZ(0);
  transition: transform 440ms var(--ease), box-shadow 440ms var(--ease);
}

.promo:before {
  background: linear-gradient(0deg, rgba(18, 28, 13, 0.86), rgba(18, 28, 13, 0.08));
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity 440ms var(--ease);
}

.promo:hover {
  box-shadow: 0 34px 90px rgba(24, 42, 15, 0.2);
  transform: translateY(-8px) scale(1.01);
}

.promo:hover:before {
  opacity: 0.9;
}

.promo > div {
  color: white;
  padding: 24px;
  position: relative;
  transform: translateY(8px);
  transition: transform 440ms var(--ease);
}

.promo:hover > div {
  transform: translateY(0);
}

.promo p,
.promo h3 {
  color: white;
  margin: 0;
}

.light-band {
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0), rgba(255, 253, 246, 0.86)),
    var(--mist);
}

.split {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.image-tile {
  aspect-ratio: 1 / 0.78;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 390px;
  position: relative;
}

.image-tile:after {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0;
  padding: 0;
}

.check-list li {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(45, 75, 31, 0.1);
  border-left: 4px solid var(--fresh);
  border-radius: 6px;
  padding: 12px 14px;
  transition: transform 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
}

.check-list li:hover {
  background: white;
  box-shadow: 0 12px 30px rgba(24, 42, 15, 0.08);
  transform: translateX(6px);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category,
.product-card,
.feature,
.info-card,
.blog-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 75, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(28, 48, 18, 0.07);
  backdrop-filter: blur(12px);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}

.category {
  align-items: center;
  display: flex;
  gap: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.category--image {
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.category:before,
.product-card:before,
.feature:before,
.info-card:before,
.blog-card:before {
  background: linear-gradient(135deg, rgba(159, 186, 53, 0.18), transparent 50%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 360ms var(--ease);
}

.category:hover,
.product-card:hover,
.feature:hover,
.info-card:hover,
.blog-card:hover {
  border-color: rgba(159, 186, 53, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.category:hover:before,
.product-card:hover:before,
.feature:hover:before,
.info-card:hover:before,
.blog-card:hover:before {
  opacity: 1;
}

.category__icon {
  align-items: center;
  background: #eef5d7;
  border-radius: 50%;
  color: var(--leaf);
  display: flex;
  flex: 0 0 52px;
  font-size: 28px;
  height: 52px;
  justify-content: center;
  transition: transform 360ms var(--ease), background 360ms var(--ease), color 360ms var(--ease);
}

.category:hover .category__icon {
  background: var(--leaf);
  color: white;
  transform: rotate(90deg) scale(1.06);
}

.category__thumb {
  aspect-ratio: 1 / 0.64;
  background-position: center;
  background-size: cover;
  display: block;
  transition: filter 520ms var(--ease), transform 700ms var(--ease);
  width: 100%;
}

.category--image:hover .category__thumb {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.category__content {
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 4px;
  padding: 17px 18px 19px;
  position: relative;
  z-index: 1;
}

.category__content small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.product-card {
  overflow: hidden;
  position: relative;
}

.product-card__image {
  aspect-ratio: 1 / 0.68;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.product-card:hover .product-card__image {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.product-card__body {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.product-card h3 {
  font-size: 25px;
}

.product-card p {
  margin: 10px 0 18px;
}

.page-hero {
  background:
    linear-gradient(100deg, rgba(16, 33, 10, 0.9), rgba(43, 79, 26, 0.66)),
    url("https://images.unsplash.com/photo-1499529112087-3cb3b73cec95?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
  overflow: hidden;
  padding: 118px 0;
  position: relative;
}

.page-hero:after {
  background: linear-gradient(180deg, transparent, rgba(255, 253, 246, 0.92));
  bottom: -1px;
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  right: 0;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  max-width: 760px;
}

.breadcrumb {
  color: #dfeec8;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-detail {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.sticky-card {
  position: sticky;
  top: 96px;
}

.detail-image {
  aspect-ratio: 1 / 0.78;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.spec-table {
  border: 1px solid rgba(45, 75, 31, 0.12);
  border-collapse: separate;
  border-radius: var(--radius);
  border-spacing: 0;
  box-shadow: 0 16px 42px rgba(24, 42, 15, 0.06);
  overflow: hidden;
  margin-top: 22px;
  width: 100%;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  background: rgba(242, 247, 234, 0.92);
  color: var(--leaf);
  width: 34%;
}

.spec-table tr {
  transition: background 220ms var(--ease);
}

.spec-table tr:hover {
  background: rgba(159, 186, 53, 0.08);
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(49, 93, 31, 0.96), rgba(143, 172, 43, 0.82)),
    url("https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
  overflow: hidden;
  padding: 72px 0;
}

.cta-band .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
  margin: 8px 0 0;
}

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

.feature,
.info-card,
.blog-card {
  padding: 24px;
  position: relative;
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(45, 75, 31, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: rgba(255, 253, 246, 0.9);
  border: 1px solid #d5decf;
  border-radius: 7px;
  min-height: 48px;
  padding: 12px 13px;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  background: white;
  border-color: var(--fresh);
  box-shadow: 0 0 0 4px rgba(159, 186, 53, 0.18);
  outline: 0;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.notice {
  background: #fff8e7;
  border: 1px solid #f1d28f;
  border-radius: var(--radius);
  color: #5b3d00;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(91, 61, 0, 0.06);
}

.footer {
  background:
    linear-gradient(180deg, rgba(23, 36, 18, 0.96), #111c0d),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: white;
  padding: 78px 0 26px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.footer a:hover {
  color: #f7d879;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.75fr 0.75fr 0.9fr;
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 14px;
}

.footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 36px;
  padding-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero .container,
  .split,
  .product-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid,
  .product-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-card {
    position: static;
  }

  h1 {
    font-size: clamp(42px, 8vw, 64px);
  }
}

@media (max-width: 760px) {
  .topbar .container,
  .mainnav .container,
  .section-head,
  .cta-band .container {
    align-items: stretch;
    flex-direction: column;
  }

  .mainnav .container {
    gap: 0;
  }

  .nav-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .navlinks {
    display: none;
    flex-direction: column;
    padding: 0 0 16px;
    width: 100%;
  }

  .navlinks.is-open {
    display: flex;
  }

  .navlinks a {
    width: 100%;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero .container {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(36px, 9.5vw, 44px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero p {
    font-size: 17px;
  }

  .stats,
  .promo-grid,
  .category-grid,
  .product-grid,
  .feature-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 0;
  }

  .hero .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero .stat {
    font-size: 13px;
    padding: 12px 8px;
  }

  .hero .stat strong {
    font-size: 21px;
  }

  .hero__panel {
    display: none;
  }

  .page-hero {
    padding: 86px 0;
  }

  .image-tile,
  .detail-image {
    min-height: 300px;
  }
}
