:root {
  color-scheme: light;
  --ink: #151918;
  --muted: #66706c;
  --paper: #ffffff;
  --wash: #f6f7f4;
  --line: #e4e8e2;
  --green: #2f7d32;
  --green-soft: #eef7ee;
  --gold: #b48a4a;
  --blue: #38566d;
  --shadow: 0 24px 70px rgba(18, 24, 22, 0.12);
  --radius: 8px;
  --header: 74px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: 0;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(228, 232, 226, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 158px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #4d5753;
  font-size: 14px;
  font-weight: 720;
}

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

.header-actions,
.hero-actions,
.contact-actions,
.cart-actions,
.compliance-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-button,
.add-button {
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 9px;
  border: 1px solid transparent;
  padding: 0 17px;
  font-weight: 800;
  white-space: nowrap;
}

.button:hover,
.icon-button:hover,
.add-button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  border-color: rgba(21, 25, 24, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(21, 25, 24, 0.12);
  background: #fff;
  color: var(--ink);
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.cart-count.is-bump {
  animation: cart-pop 360ms ease;
}

@keyframes cart-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(76svh - var(--header));
  overflow: hidden;
  background: #dfe6df;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(246, 247, 244, 0.96) 0%, rgba(246, 247, 244, 0.78) 42%, rgba(246, 247, 244, 0.18) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(246, 247, 244, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 5vw, 72px);
  padding: 58px 0 86px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 18px;
  color: #3e4945;
  font-size: clamp(18px, 1.7vw, 22px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(21, 25, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #3f4945;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-microcopy {
  margin: 14px 0 0;
  color: #65706b;
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
  display: grid;
  width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(18, 24, 22, 0.12);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
}

.hero-panel div + div {
  border-top: 1px solid rgba(21, 25, 24, 0.08);
}

.hero-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel strong {
  font-size: 14px;
}

.section,
.site-footer {
  padding-inline: clamp(18px, 4vw, 56px);
}

.section {
  padding-block: clamp(48px, 6vw, 78px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: end;
  gap: 32px;
  margin-bottom: 26px;
}

.section-heading p,
.contact-section p,
.process-grid p,
.fineprint {
  color: var(--muted);
}

.products {
  background: var(--paper);
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 18px;
  padding-bottom: 4px;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #56605c;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.filter-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(47, 125, 50, 0.35);
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.08);
  transform: translateY(-2px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  background: #e8ece6;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(21, 25, 24, 0) 58%, rgba(21, 25, 24, 0.16));
}

.product-main {
  display: grid;
  gap: 10px;
  padding: 18px 18px 0;
}

.product-main > div {
  min-width: 0;
}

.product-main h3 {
  margin-bottom: 5px;
  line-height: 1.18;
}

.product-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13.5px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-category {
  display: block;
  margin-bottom: 6px;
  color: #89938e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-code {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #49534f;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 18px 0;
}

.format-row span {
  border: 1px solid #e4e9e3;
  border-radius: 999px;
  background: #fff;
  color: #303936;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 850;
}

.format-row .chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chip-coa {
  border-color: rgba(47, 125, 50, 0.22) !important;
  background: var(--green-soft) !important;
  color: var(--green) !important;
}

.chip-coa svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.price-wrap {
  display: grid;
  gap: 1px;
}

.product-price {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-price.is-request {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.price-unit {
  color: #929c97;
  font-size: 11px;
  font-weight: 800;
}

.add-button {
  display: inline-flex;
  min-width: 88px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}

.add-button svg {
  width: 16px;
  height: 16px;
}

.add-button:hover,
.add-button.is-added {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.process-section,
.contact-section {
  border-top: 1px solid var(--line);
  background: var(--wash);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-grid article {
  position: relative;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
}

.process-grid svg {
  margin-bottom: 18px;
  color: var(--green);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-strip span {
  background: #fff;
  color: var(--muted);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 720;
}

.service-strip strong {
  color: var(--ink);
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 18px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 850;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  flex: 0 0 auto;
  color: var(--muted);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-item p {
  max-width: 68ch;
  margin: 0 0 16px;
  color: var(--muted);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-section > div:first-child {
  max-width: 650px;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.cart-panel.is-open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 25, 24, 0.48);
}

.cart-drawer {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  width: min(100%, 430px);
  height: 100%;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2 {
  font-size: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  padding: 10px 12px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3d4743;
  font-size: 12.5px;
  font-weight: 800;
}

.trust-row svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.payment-summary,
.drawer-assurance {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(56, 86, 109, 0.18);
  border-radius: var(--radius);
  background: #f5f8fa;
  color: #43504b;
  padding: 12px;
  font-size: 13px;
}

.payment-summary strong {
  color: var(--blue);
}

.drawer-assurance {
  grid-template-columns: auto 1fr;
  background: var(--green-soft);
  border-color: rgba(47, 125, 50, 0.2);
}

.drawer-assurance svg {
  color: var(--green);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

select,
input {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 92px;
  resize: vertical;
  padding: 12px;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 18px;
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.cart-line > div:first-child {
  display: grid;
  min-width: 0;
}

.cart-line span,
.cart-line small {
  overflow-wrap: anywhere;
}

.cart-line small {
  color: var(--muted);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.qty-control button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.cart-total {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cart-total strong {
  text-align: right;
  white-space: nowrap;
}

.drawer-alt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.drawer-alt button {
  border: 0;
  background: transparent;
  color: var(--green);
  padding: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button.is-copied {
  border-color: rgba(47, 125, 50, 0.28);
  background: var(--green-soft);
  color: var(--green);
}

.fineprint {
  margin-bottom: 0;
  font-size: 12px;
}

.compliance-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(21, 25, 24, 0.58);
}

.compliance-modal.is-visible {
  display: flex;
}

.compliance-card {
  width: min(100%, 420px);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.compliance-card h2 {
  font-size: clamp(32px, 5vw, 44px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-block: 28px;
  color: var(--muted);
}

.site-footer p {
  max-width: 680px;
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal {
  font-size: 12px;
  opacity: 0.85;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin: 0 18px 24px auto;
  }
}

@media (max-width: 780px) {
  :root {
    --header: 68px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: var(--header);
  }

  .brand {
    width: 142px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: calc(82svh - var(--header));
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(246, 247, 244, 0.98) 0%, rgba(246, 247, 244, 0.9) 54%, rgba(246, 247, 244, 0.16) 100%),
      rgba(255, 255, 255, 0.08);
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    align-self: end;
    margin-inline: 18px;
    padding-block: 72px 24px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-actions,
  .contact-actions,
  .cart-actions,
  .compliance-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel {
    display: none;
  }

  .section-heading,
  .contact-section,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-grid,
  .process-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: auto auto auto auto;
  }

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

  .add-button,
  .button {
    width: 100%;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-cta .button {
    min-height: 48px;
  }

  main {
    padding-bottom: 84px;
  }

  .site-footer {
    padding-bottom: calc(28px + 72px);
  }
}

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