:root {
  --green: #11a96c;
  --green-dark: #08764c;
  --ink: #17211d;
  --muted: #5e6b66;
  --line: #dce5e0;
  --paper: #f7faf7;
  --white: #ffffff;
  --sand: #f1eee7;
  --gold: #bf8d3a;
  --shadow: 0 18px 50px rgba(20, 44, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 229, 224, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #32433c;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 8px 0;
  border: 0;
  color: #32433c;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: none;
  width: 220px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.nav-dropdown-menu a:hover {
  background: #edf8f2;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #eef3f0;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 52px;
  min-height: 34px;
  padding: 6px 8px;
  border: 0;
  border-radius: 5px;
  color: #46554f;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.language-button img {
  width: 20px;
  height: 14px;
  border: 1px solid rgba(23, 33, 29, 0.12);
  object-fit: cover;
}

.language-button strong {
  font-weight: 800;
  white-space: nowrap;
}

.language-button:hover {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
}

.language-button.active {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 1px 5px rgba(20, 44, 34, 0.12);
}

.language-button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.category-select select {
  min-height: 40px;
  padding: 8px 34px 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(17, 169, 108, 0.24);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e9eeeb;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 247, 0.96) 0%, rgba(247, 250, 247, 0.84) 34%, rgba(247, 250, 247, 0.25) 72%),
    linear-gradient(0deg, rgba(247, 250, 247, 0.95) 0%, rgba(247, 250, 247, 0) 24%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: min(620px, 100%);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: #33443d;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.intro-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -46px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-strip div {
  padding: 22px;
  background: var(--white);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-size: 18px;
}

.intro-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.section-copy h2,
.section-head h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy > p,
.section-head > p,
.contact-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-grid article,
.stocklot-layout article,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-grid article {
  padding: 18px;
}

.feature-grid h3,
.stocklot-layout h3,
.product-copy h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.feature-grid p,
.stocklot-layout p,
.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.specs-band {
  width: 100%;
  max-width: none;
  padding: 82px max(18px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.specs-band .eyebrow {
  color: #86efac;
}

.specs-band .section-head {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.spec-grid div {
  min-height: 118px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.spec-grid span {
  display: block;
  color: #b9c7c1;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.section-head.wide {
  max-width: 920px;
}

.stocklot-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stocklot-layout article {
  padding: 22px;
  border-top: 4px solid var(--gold);
}

.gallery-section {
  padding-top: 36px;
}

.product-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.category-select {
  display: grid;
  min-width: 230px;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-tab {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #33443d;
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.category-tab:hover,
.category-tab.active {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.category-summary {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 4px solid var(--green);
  color: #405049;
  background: #edf8f2;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.product-card {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 44, 34, 0.08);
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #edf2ef;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.28s ease;
}

.image-button:hover img {
  transform: scale(1.03);
}

.product-copy {
  padding: 18px;
}

.product-category {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spec-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-spec-list li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #edf1ef;
  font-size: 12px;
}

.product-spec-list span {
  color: var(--muted);
  font-weight: 700;
}

.product-spec-list strong {
  color: #304039;
  font-weight: 800;
}

.products-disclaimer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.products-disclaimer strong {
  flex: 0 0 auto;
  font-size: 18px;
}

.products-disclaimer span {
  color: #d9f3e7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 72px;
  padding: 50px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-self: center;
}

.contact-line {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.wide-btn {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #d9e8e1;
  background: #0f1d17;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: #9fb1aa;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #86efac;
}

.lightbox {
  width: min(960px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 16px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(9, 18, 14, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #f4f6f5;
}

.lightbox p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.lightbox-close {
  display: inline-flex;
  min-height: 36px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .stocklot-layout,
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .category-tabs {
    justify-content: flex-start;
  }

  .contact-section {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    gap: 8px 12px;
    padding: 10px 14px;
  }

  .brand img {
    width: 156px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    order: 2;
    width: 100%;
    margin-left: 0;
  }

  .language-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 4px;
  }

  .nav-links {
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .nav-dropdown-menu {
    position: fixed;
    top: 148px;
    left: 14px;
    width: min(260px, calc(100vw - 28px));
  }

  .hero {
    min-height: 86vh;
  }

  .hero-bg {
    object-position: 58% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(247, 250, 247, 0.98) 0%, rgba(247, 250, 247, 0.9) 48%, rgba(247, 250, 247, 0.48) 100%),
      linear-gradient(0deg, rgba(247, 250, 247, 0.98) 0%, rgba(247, 250, 247, 0) 28%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  .intro-strip,
  .feature-grid,
  .stocklot-layout,
  .spec-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    display: none;
  }

  .category-select {
    min-width: 0;
  }

  .products-disclaimer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 68px 0;
  }

  .image-button img {
    height: 270px;
  }

  .contact-section {
    width: calc(100% - 28px);
    padding: 22px;
  }

  .contact-line strong {
    font-size: 17px;
  }

  .site-footer {
    display: grid;
  }
}
