:root {
  --ink: #183328;
  --muted: #617066;
  --line: #dce7de;
  --paper: #fffdf8;
  --soft: #f4f8f0;
  --green: #275c3d;
  --green-2: #39724e;
  --mint: #dceedd;
  --citrus: #f6a43a;
  --tomato: #d85f43;
  --cream: #fff7e8;
  --shadow: 0 20px 60px rgba(24, 51, 40, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 231, 222, 0.85);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  border-radius: 6px;
  color: #34463a;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--mint);
  color: var(--green);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 42%, rgba(244, 248, 240, 0.78) 100%),
    radial-gradient(circle at 84% 18%, rgba(246, 164, 58, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8, #f7fbf4);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 680px;
  color: #405348;
  font-size: 1.08rem;
}

.hero-actions,
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(39, 92, 61, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1f4f34;
}

.btn-secondary {
  border-color: rgba(39, 92, 61, 0.2);
  background: #fff;
  color: var(--green);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--mint);
}

.hero-meta {
  margin-top: 26px;
}

.hero-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #4d5e54;
  padding: 7px 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 222, 0.85);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: min(58vw, 620px);
  min-height: 420px;
  object-fit: cover;
  object-position: center right;
}

.category-cloud {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(540px, calc(100% - 36px));
}

.category-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(24, 51, 40, 0.1);
}

.positioning,
.products,
.buyers,
.inquiry,
.contact {
  padding: 86px 0;
}

.positioning {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
}

.positioning-copy > p,
.section-heading p,
.buyers-copy p,
.inquiry-intro p,
.contact p {
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trust-grid article,
.category-card,
.buyer-list article,
.contact-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 51, 40, 0.07);
}

.trust-grid article {
  padding: 22px;
}

.trust-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--citrus);
  font-weight: 900;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.category-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #42564a;
  cursor: pointer;
  font-weight: 800;
  padding: 9px 14px;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.active {
  border-color: rgba(39, 92, 61, 0.42);
  background: var(--green);
  color: #fff;
  outline: none;
}

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

.category-card {
  min-height: 230px;
  padding: 24px;
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 92, 61, 0.32);
}

.category-card.is-hidden {
  display: none;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--cream);
  color: var(--tomato);
  font-weight: 900;
}

.category-card p,
.buyer-list p,
.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.buyers {
  background:
    linear-gradient(90deg, rgba(39, 92, 61, 0.94), rgba(39, 92, 61, 0.86)),
    linear-gradient(135deg, #275c3d, #39724e);
  color: #fff;
}

.buyers .eyebrow,
.buyers-copy p {
  color: #dceedd;
}

.buyers-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 52px;
}

.buyers-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

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

.buyer-list article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  padding: 22px;
}

.buyer-list p {
  color: #e7f3e8;
}

.buyers .btn-primary {
  margin-top: 10px;
  background: #fff;
  color: var(--green);
}

.inquiry {
  background: #fff;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 48px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
}

.contact-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full,
.form-submit,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: #31443a;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfded2;
  border-radius: 6px;
  background: #fbfdf9;
  color: var(--ink);
  padding: 12px 13px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(57, 114, 78, 0.14);
  outline: none;
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: var(--tomato);
}

.field-error {
  min-height: 18px;
  color: #a13b26;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  border-radius: 6px;
  padding: 13px 14px;
  font-weight: 800;
}

.form-status.success {
  display: block;
  background: var(--mint);
  color: var(--green);
}

.form-status.error {
  display: block;
  background: #ffece6;
  color: #8c321f;
}

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.contact-details {
  display: grid;
  gap: 13px;
  font-style: normal;
}

.contact-details a {
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  padding-bottom: 13px;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--tomato);
  outline: none;
}

.site-footer {
  background: var(--ink);
  color: #edf6ef;
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  color: #d4e4d8;
  font-size: 0.92rem;
}

.footer-grid nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

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

  .hero {
    padding-top: 56px;
  }

  .hero-panel img {
    height: 520px;
    min-height: 360px;
  }

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

  .buyers-copy {
    position: static;
  }
}

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

  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 10px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    padding: 42px 0 56px;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel img {
    height: 430px;
    min-height: 0;
    object-position: center right;
  }

  .positioning,
  .products,
  .buyers,
  .inquiry,
  .contact {
    padding: 58px 0;
  }

  .trust-grid,
  .category-grid,
  .buyer-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-panel img {
    height: 360px;
  }

  .category-cloud {
    position: static;
    padding: 14px;
    max-width: none;
    background: #fff;
  }

  .category-cloud span {
    box-shadow: none;
    background: var(--soft);
  }
}
