:root {
  --green-900: #0b3d28;
  --green-800: #11613a;
  --green-700: #177546;
  --green-100: #e9f4ed;
  --cream: #f8f4ec;
  --sand: #efe4d1;
  --orange: #d5792a;
  --ink: #17211b;
  --muted: #637067;
  --line: #dce4dc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(12, 37, 23, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section-pad {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--green-900);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 220, 0.75);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.brand img {
  border-radius: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: #25342a;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 24px rgba(17, 97, 58, 0.2);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--green-800);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(213, 121, 42, 0.18), transparent 30%),
    linear-gradient(135deg, var(--cream), #ffffff 52%, var(--green-100));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -180px -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(17, 97, 58, 0.11);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 650px;
  color: #405248;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 16px 30px rgba(17, 97, 58, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-700);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0;
}

.hero-facts div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.hero-facts dt {
  color: var(--green-800);
  font-weight: 850;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.hero-card:hover img {
  transform: scale(1.04);
}

.hero-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(11, 61, 40, 0.88);
  font-weight: 800;
}

.hero-card-large {
  min-height: 320px;
}

.hero-card-large img {
  height: 305px;
}

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

.intro-strip {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.intro-grid article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.intro-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.intro-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.split-section > div:first-child p:last-child,
.section-head p,
.material-grid p,
.contact-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card,
.product-card,
.steps article,
.inquiry-form,
.contact-box {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-md);
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-weight: 900;
}

.feature-card p,
.product-card p,
.steps p {
  color: var(--muted);
}

.soft-bg {
  background: linear-gradient(180deg, var(--cream), #ffffff);
}

.section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.section-head.compact {
  margin-bottom: 34px;
}

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

.product-card {
  overflow: hidden;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(12, 37, 23, 0.08);
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1.3;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, var(--green-100));
}

.product-image img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.product-kicker {
  margin-bottom: 7px;
  color: var(--orange) !important;
  font-weight: 850;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  padding: 0;
  border: 0;
  color: var(--green-800);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
}

.material-section {
  background: var(--green-900);
  color: var(--white);
}

.material-section .eyebrow,
.material-section p {
  color: rgba(255, 255, 255, 0.78);
}

.material-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

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

.steps article {
  padding: 28px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--white);
  background: var(--green-800);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 8%, rgba(213, 121, 42, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, var(--green-100));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 6px;
  max-width: 360px;
  margin-top: 28px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(12, 37, 23, 0.08);
}

.contact-box a {
  color: var(--green-800);
  font-weight: 850;
}

.inquiry-form {
  padding: 28px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #24362b;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfdad0;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfb;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(23, 117, 70, 0.12);
}

textarea {
  resize: vertical;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -100vw;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin-bottom: 10px;
  color: var(--green-800);
  font-weight: 850;
}

.form-status.is-success,
.form-status.is-error {
  padding: 12px 14px;
  border-radius: 14px;
}

.form-status.is-success {
  border: 1px solid rgba(23, 117, 70, 0.24);
  background: rgba(23, 117, 70, 0.09);
}

.form-status.is-error {
  border: 1px solid rgba(173, 64, 47, 0.24);
  color: #8f2f22;
  background: rgba(173, 64, 47, 0.09);
}

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

.site-footer {
  padding: 56px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.7fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
}

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

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

  .hero-panel {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 68px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-actions,
  .hero-facts,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .product-grid,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 20px;
  }
}
