:root {
  --eco-green: #4a7c59;
  --eco-green-dark: #2c5530;
  --eco-green-soft: rgba(74, 124, 89, 0.14);
  --eco-cream: #f8f6f0;
  --eco-white: #fffefa;
  --eco-blush: #f4d8d8;
  --eco-ink: #182219;
  --eco-muted: #667069;
  --eco-line: rgba(24, 34, 25, 0.24);
  --eco-line-soft: rgba(24, 34, 25, 0.12);
  --eco-shadow: 0 22px 50px rgba(74, 124, 89, 0.1);
  --eco-page: min(1400px, calc(100% - 40px));
  --eco-serif: "Alegreya", Georgia, serif;
  --eco-sans: "Open Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body.home-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--eco-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(127, 176, 105, 0.1), transparent 24rem),
    linear-gradient(135deg, var(--eco-cream), #fff 52%, #f1f0eb);
  font-family: var(--eco-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.home-page::selection {
  color: #fff;
  background: var(--eco-green);
}

body.home-page a {
  color: inherit;
}

body.home-page :focus-visible {
  outline: 3px solid rgba(74, 124, 89, 0.55);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 11px 16px;
  color: #fff;
  background: var(--eco-green-dark);
  border-radius: 12px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 108px;
  padding: 13px max(20px, calc((100vw - 1400px) / 2));
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 86px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.09);
}

.home-navbar-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  margin: 0;
  color: var(--eco-green);
  text-decoration: none !important;
}

.ecodom-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--eco-green);
  text-decoration: none !important;
}

.ecodom-brand .logo-container {
  display: flex;
  align-items: center;
}

.ecodom-brand .logo-svg {
  display: block;
  width: 75px;
  height: 75px;
}

.ecodom-brand .svg-elem-1 {
  fill: var(--eco-green);
  stroke: var(--eco-green);
  stroke-width: 2;
  transition: fill 300ms ease, stroke 300ms ease;
}

.ecodom-brand .svg-elem-2 {
  fill: var(--eco-ink);
  stroke: var(--eco-ink);
  stroke-width: 2;
  transition: fill 300ms ease, stroke 300ms ease;
}

.ecodom-brand .company-name {
  font-family: var(--eco-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--eco-green);
  transition: color 300ms ease;
}

.ecodom-brand:hover .svg-elem-1 {
  fill: #7fb069;
  stroke: #7fb069;
}

.ecodom-brand:hover .svg-elem-2 {
  fill: var(--eco-muted);
  stroke: var(--eco-muted);
}

.ecodom-brand:hover .company-name {
  color: #7fb069;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.site-nav a,
.header-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  color: #111;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 12px;
  font-family: var(--eco-serif);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.header-link:hover,
.site-nav a.is-active {
  background: var(--eco-green-soft);
  border-color: var(--eco-green);
  transform: translateY(-1px);
}

.site-nav a i {
  color: var(--eco-green);
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.header-link {
  padding-inline: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--eco-green-soft);
  border: 1px solid #000;
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #111;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.home-cart {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: #fff;
  background: var(--eco-green-dark);
  border: 1px solid var(--eco-green-dark);
  border-radius: 12px;
  font: 700 13px var(--eco-sans);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.home-cart:hover {
  background: #183c27;
  transform: translateY(-1px);
}

.home-cart svg,
.btn-card-cart svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.home-cart .cart-count-badge {
  position: absolute;
  top: -8px;
  right: -6px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  color: #17341f;
  background: #dcebbf;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 10px;
}

.hero {
  position: relative;
  width: var(--eco-page);
  margin: 0 auto;
  padding: clamp(136px, 11.5vw, 158px) 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}

.hero-copy-block {
  min-width: 0;
  padding: 30px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--eco-green);
  font: 700 12px var(--eco-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.home-page h2 {
  font-family: var(--eco-serif);
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 5.4vw, 86px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--eco-green);
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--eco-muted);
  font-size: clamp(16px, 1.35vw, 20px);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #000;
  border-radius: 12px;
  font-family: var(--eco-serif);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  color: #111;
  background: var(--eco-green-soft);
}

.btn-primary:hover {
  background: rgba(74, 124, 89, 0.24);
}

.btn-secondary {
  color: #111;
  background: rgba(255, 255, 255, 0.46);
}

.btn-secondary:hover {
  background: #fff;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr 48px;
  max-width: 620px;
  margin-top: 20px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #000;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(74, 124, 89, 0.08);
  backdrop-filter: blur(14px);
}

.hero-search input {
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  color: var(--eco-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: 15px var(--eco-sans);
}

.hero-search input::placeholder {
  color: #7a807b;
}

.hero-search button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #111;
  background: var(--eco-green-soft);
  border: 1px solid #000;
  border-radius: 10px;
  cursor: pointer;
}

.hero-search svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  padding: 0 12px;
  color: #314237;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--eco-line-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  height: clamp(500px, 58vw, 680px);
  max-height: 680px;
  overflow: hidden;
  background: #dfe3dc;
  border: 1px solid #000;
  border-radius: 26px;
  box-shadow: var(--eco-shadow);
}

.hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .hero-bg {
  transform: scale(1.035);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 22, 13, 0.72));
  pointer-events: none;
}

.hero-visual-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 15px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
}

.hero-visual-note span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual-note strong {
  font-family: var(--eco-serif);
  font-size: 27px;
}

.hero-visual-index {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  padding: 8px 11px;
  color: #fff;
  background: rgba(14, 31, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.hero-scroll {
  display: none;
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 1.25fr);
  width: var(--eco-page);
  margin: 18px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--eco-line);
  border-radius: 24px;
  box-shadow: var(--eco-shadow);
  backdrop-filter: blur(14px);
}

.trust-rail > div,
.trust-rail > a {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid var(--eco-line-soft);
}

.trust-rail > div > strong {
  color: var(--eco-green);
  font: 700 clamp(34px, 3vw, 48px)/1 var(--eco-serif);
}

.trust-rail > div > span,
.trust-rail > a > span {
  color: var(--eco-muted);
  font-size: 12px;
  line-height: 1.5;
}

.trust-rail > a {
  display: grid;
  gap: 5px;
  color: #fff;
  background: linear-gradient(135deg, #2d6040, var(--eco-green-dark));
  border-right: 0;
  text-decoration: none;
  transition: background 180ms ease;
}

.trust-rail > a:hover {
  background: linear-gradient(135deg, #39784f, #183c27);
}

.trust-rail > a > span {
  color: rgba(255, 255, 255, 0.68);
}

.trust-rail > a > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: 700 18px var(--eco-serif);
}

.section {
  width: var(--eco-page);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: end;
  margin-top: 18px;
  padding: clamp(32px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--eco-line);
  border-radius: 24px;
  box-shadow: var(--eco-shadow);
  backdrop-filter: blur(12px);
}

.section-number {
  align-self: start;
  color: var(--eco-green);
  font: 700 18px var(--eco-serif);
}

.home-page h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intro-grid > p,
.material-copy > p,
.docs-copy > p,
.final-cta p,
.product-body > p {
  color: var(--eco-muted);
}

.intro-grid > p {
  margin: 0;
  font-size: 16px;
}

.product-section {
  padding-top: 22px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 850px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 0 15px;
  color: #111;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #000;
  border-radius: 12px;
  font: 700 15px var(--eco-serif);
  text-decoration: none;
  transition: background 160ms ease;
}

.text-link:hover {
  background: var(--eco-green-soft);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #000;
  border-radius: 25px;
  box-shadow:
    20px 20px 40px rgba(74, 124, 89, 0.08),
    -18px -18px 36px rgba(255, 255, 255, 0.72);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow:
    22px 25px 48px rgba(74, 124, 89, 0.13),
    -18px -18px 36px rgba(255, 255, 255, 0.8);
}

.product-media {
  display: block;
  height: 310px;
  overflow: hidden;
  background: #eeeee9;
  border-bottom: 1px solid var(--eco-line-soft);
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-body {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 23px;
}

.product-meta {
  min-height: 17px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--eco-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-body h3 {
  min-height: 52px;
  margin: 0;
  font: 700 21px/1.25 var(--eco-serif);
  text-align: center;
}

.product-body h3 a {
  text-decoration: none;
}

.product-body > p {
  display: -webkit-box;
  min-height: 51px;
  margin: 13px 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
}

.product-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.product-foot span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  color: #304136;
  background: rgba(74, 124, 89, 0.08);
  border: 1px solid var(--eco-line-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.product-details,
.btn-card-cart {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: #111;
  background: var(--eco-green-soft);
  border: 1px solid #000;
  border-radius: 12px;
  font: 700 16px var(--eco-serif);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease;
}

.product-details:hover,
.btn-card-cart:hover {
  background: rgba(74, 124, 89, 0.24);
}

.btn-card-cart {
  width: 56px;
  padding: 0;
}

.empty-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.6fr 1.3fr auto;
  gap: 30px;
  align-items: center;
  min-height: 230px;
  padding: clamp(30px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #000;
  border-radius: 25px;
}

.empty-note > span {
  color: var(--eco-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-note > strong {
  font: 700 clamp(25px, 3vw, 42px)/1.05 var(--eco-serif);
}

.material-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  width: var(--eco-page);
  margin: 26px auto;
  padding: clamp(66px, 8vw, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 5%, rgba(144, 198, 149, 0.18), transparent 26%),
    linear-gradient(135deg, #183c27, #2f6241);
  border: 1px solid #000;
  border-radius: 28px;
  box-shadow: var(--eco-shadow);
}

.material-copy h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.material-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.text-link-light {
  margin-top: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.text-link-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.material-points {
  display: grid;
  gap: 12px;
}

.material-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 21px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
}

.material-points strong {
  color: #b9d3aa;
  font-family: var(--eco-serif);
}

.material-points span {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.material-points b {
  color: #fff;
  font-family: var(--eco-serif);
  font-size: 18px;
}

.docs-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.78fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.docs-media {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #e7e7e1;
  border: 1px solid #000;
  border-radius: 25px;
  box-shadow: var(--eco-shadow);
}

.docs-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.docs-media span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(20, 48, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-copy h2 {
  font-size: clamp(42px, 4.8vw, 68px);
}

.docs-copy > p {
  margin: 24px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-bottom: 60px;
  padding: clamp(52px, 7vw, 88px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #000;
  border-radius: 25px;
  box-shadow: var(--eco-shadow);
}

.final-cta-side > p {
  margin: 0;
}

.eco-footer {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  color: #26372c;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 239, 226, 0.96)),
    var(--eco-cream);
  border-top: 1px solid rgba(74, 124, 89, 0.22);
}

.eco-footer-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eco-footer-background::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(74, 124, 89, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 124, 89, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.eco-footer-background span {
  position: absolute;
  border: 1px solid rgba(74, 124, 89, 0.18);
  border-radius: 50%;
}

.eco-footer-background span:nth-child(1) {
  right: -160px;
  bottom: -260px;
  width: 620px;
  height: 620px;
}

.eco-footer-background span:nth-child(2) {
  right: 80px;
  bottom: -190px;
  width: 420px;
  height: 420px;
}

.eco-footer-background span:nth-child(3) {
  top: 60px;
  left: -100px;
  width: 270px;
  height: 270px;
}

.eco-footer-inner {
  position: relative;
  z-index: 1;
  width: var(--eco-page);
  margin: 0 auto;
  padding: 72px 0 28px;
}

.eco-footer-content {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.eco-footer-brand .ecodom-brand .logo-svg {
  width: 64px;
  height: 64px;
}

.eco-footer-brand .ecodom-brand .company-name {
  font-size: 2rem;
}

.eco-footer-brand > p {
  max-width: 320px;
  margin: 20px 0 0;
  color: var(--eco-muted);
  font-size: 13px;
  line-height: 1.75;
}

.eco-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.eco-certifications span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--eco-green-dark);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(74, 124, 89, 0.26);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eco-footer-section {
  display: grid;
  gap: 4px;
}

.eco-footer-section h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 5px 0 17px;
  font: 700 18px var(--eco-serif);
  letter-spacing: 0;
}

.eco-footer-section h2 i {
  width: 18px;
  color: var(--eco-green);
  font-size: 14px;
}

.eco-footer-section > a,
.eco-social a {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  color: #56665a;
  font-size: 12px;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.eco-footer-section > a:hover,
.eco-social a:hover {
  color: var(--eco-green-dark);
  transform: translateX(2px);
}

.eco-footer-section > a i,
.eco-social a i {
  width: 16px;
  color: var(--eco-green);
  text-align: center;
}

.eco-footer-section > a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.eco-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 10px;
}

.eco-promise {
  display: grid;
  gap: 8px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid rgba(74, 124, 89, 0.16);
}

.eco-promise span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5b6b5f;
  font-size: 10px;
}

.eco-promise i {
  color: var(--eco-green);
}

.eco-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 124, 89, 0.2);
}

.eco-footer-bottom p {
  margin: 0;
  color: #6a766d;
  font-size: 11px;
}

.eco-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.eco-footer-bottom a {
  color: #5c695f;
  font-size: 11px;
  text-decoration: none;
}

.eco-footer-bottom a:hover {
  color: var(--eco-green-dark);
}

.home-page .cookie-consent-banner {
  left: 50%;
  right: auto;
  bottom: 18px;
  width: min(1080px, calc(100% - 36px));
  padding: 16px 18px;
  transform: translate(-50%, calc(100% + 40px));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--eco-line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 35, 28, 0.2);
}

.home-page .cookie-consent-banner.show {
  transform: translate(-50%, 0);
}

.home-page .cookie-consent-banner::before,
.home-page .cookie-consent-banner::after {
  display: none;
}

.home-page .cookie-consent-title {
  color: var(--eco-green-dark);
}

.home-page .cookie-consent-btn {
  min-height: 42px;
  border-radius: 12px;
}

.home-page .cookie-consent-accept {
  background: var(--eco-green);
  border-color: var(--eco-green);
}

@media (max-width: 1180px) {
  .site-nav a {
    padding-inline: 11px;
    font-size: 13px;
  }

  .site-nav a i {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1fr);
  }
}

@media (max-width: 1120px) {
  :root {
    --eco-page: min(940px, calc(100% - 32px));
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    min-height: 78px;
    padding-inline: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #000;
    border-radius: 16px;
    box-shadow: var(--eco-shadow);
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a i {
    display: inline;
  }

  .header-actions {
    justify-self: end;
  }

  .header-link {
    display: none;
  }

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

  .hero {
    padding-top: 118px;
  }

  .hero-copy-block {
    padding-bottom: 0;
  }

  .hero-visual {
    height: min(680px, 72vw);
    min-height: 500px;
  }

  .intro-grid {
    grid-template-columns: 44px 1fr;
  }

  .intro-grid > p {
    grid-column: 2;
  }

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

  .material-band,
  .docs-cta,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .material-band {
    gap: 42px;
  }

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

  .trust-rail > a {
    grid-column: 1 / -1;
    min-height: 92px;
  }

  .eco-footer-content {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .eco-footer-section:last-child {
    grid-column: 2 / -1;
  }

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

  .eco-footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --eco-page: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 12px;
    border-radius: 0 0 18px 18px;
  }

  .home-navbar-brand .logo-svg {
    width: 58px;
    height: 58px;
  }

  .home-navbar-brand .company-name {
    font-size: 1.45rem;
  }

  .home-cart {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .home-cart > span:not(.cart-count-badge) {
    display: none;
  }

  .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-copy-block {
    padding-top: 10px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-search {
    grid-template-columns: 1fr 46px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    height: 480px;
    min-height: 0;
    border-radius: 20px;
  }

  .hero-visual-note {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
  }

  .section-number {
    display: none;
  }

  .intro-grid > p {
    grid-column: 1;
  }

  .home-page h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-media {
    height: 290px;
  }

  .product-body {
    min-height: 290px;
    padding: 20px;
  }

  .empty-note {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .material-band {
    width: calc(100% - 16px);
    padding: 60px 20px;
    border-radius: 22px;
  }

  .material-copy h2,
  .docs-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .material-points div {
    grid-template-columns: 38px 1fr;
    padding: 17px;
  }

  .docs-media {
    height: 390px;
  }

  .final-cta {
    margin-bottom: 40px;
    padding: 42px 22px;
  }

  .trust-rail {
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
  }

  .trust-rail > div,
  .trust-rail > a {
    min-height: 104px;
    padding: 18px;
  }

  .trust-rail > div:nth-child(2) {
    border-right: 0;
  }

  .trust-rail > div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--eco-line-soft);
    border-right: 0;
  }

  .trust-rail > a {
    grid-column: 1 / -1;
  }

  .eco-footer-inner {
    padding-top: 54px;
  }

  .eco-footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .eco-footer-section:last-child {
    grid-column: auto;
  }

  .eco-footer-bottom {
    margin-top: 38px;
  }

  .eco-footer-bottom nav {
    display: grid;
    gap: 10px;
  }

  .home-page .cookie-consent-banner {
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

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