:root {
  --green: #59954A;
  --green-hover: #69AD58;
  --text: #000;
  --muted: #0a0808;
  --heading: #3b3d42;
  --white: #fff;
  --grey: #EEEDF0;
  --mint: #F2F5F4;
  --max: 1140px;
  --font-body: "Roboto", sans-serif;
  --font-ui: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--heading);
}

h1,
h2,
h3 {
  font-family: var(--font-ui);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.4em;
}

p,
ul {
  margin: 0 0 1em;
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--text);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

.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;
}

.topbar {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.contact-list,
.social-list,
.site-nav ul,
.feature-list {
  list-style: none;
  padding: 0;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
}

.contact-list a,
.social-list a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-list a:hover,
.social-list a:hover {
  color: var(--white);
  opacity: 0.85;
}

.contact-list svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-list {
  display: flex;
  gap: 8px;
  margin: 0;
}

.social-list a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  justify-content: center;
}

.social-list svg {
  width: 14px;
  height: 14px;
  fill: var(--green);
}

.navbar {
  background: var(--white);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
}

.logo img {
  width: 140px;
  display: block;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  padding: 10px 9px;
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  background: #000;
  margin: 4px 0;
  border-radius: 1px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-shop {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 3px;
}

.nav-shop:hover {
  background: var(--green-hover);
  color: var(--white) !important;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  text-transform: capitalize;
}

.btn:hover,
.btn:focus {
  background: var(--green-hover);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url("../images/selective-focus-shot-basil-leaves-1.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero-overlay,
.banner-overlay,
.slide-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
}

.hero-inner,
.banner-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 560px;
  padding: 80px 0;
}

.hero-kicker {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 50px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.hero p {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.section {
  position: relative;
  padding: 100px 0;
}

.solution {
  background: url("../images/body-bg.webp") bottom right no-repeat;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-shot {
  width: 300px;
  display: block;
}

.eco-logo {
  width: 260px;
  display: block;
}

.lid-shot {
  width: min(100%, 435px);
  display: block;
}

h2 {
  font-size: clamp(24px, 3vw, 30px);
}

.rule {
  display: block;
  width: 200px;
  height: 3px;
  background: var(--green);
  margin: 8px 0 20px;
}

.center {
  text-align: center;
}

.center-rule {
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  margin: 0 0 24px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 16px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shape-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 40px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.newsletter {
  background: var(--grey);
}

.newsletter-split {
  grid-template-columns: 35% 1fr;
}

.signup {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.signup input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #d4d4d4;
  background: #fff;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text);
}

.form-message {
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--green);
}

.carousel {
  position: relative;
  margin-top: 20px;
  background: #111;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 400px;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 70%;
  padding: 24px;
}

.slide h3 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
}

.slide p {
  font-family: var(--font-ui);
  color: var(--white);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.carousel-btn svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.articles-cta {
  margin: 30px 0 0;
}

.banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/1398.jpg") center / cover no-repeat;
  text-align: center;
}

.banner h2 {
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}

.how-to {
  background: var(--mint);
}

.narrow {
  max-width: 900px;
}

.how-to .btn {
  margin-top: 30px;
}

.site-footer {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 18px 0;
  font-family: var(--font-ui);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 1025px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px) {
  .hero-copy {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .social-list {
    display: none;
  }

  .contact-list {
    justify-content: center;
    width: 100%;
    font-size: 13px;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 136px;
    background: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 20;
  }

  .site-header {
    position: relative;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .site-nav a {
    display: block;
    padding: 14px 20px;
    text-align: center;
  }

  .nav-shop {
    margin: 8px 20px;
    text-align: center;
  }

  .topbar-inner,
  .social-list {
    justify-content: center;
  }

  .hero,
  .banner {
    min-height: 380px;
  }

  .section {
    padding: 50px 0;
  }

  .split,
  .newsletter-split,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .slide-content {
    max-width: 90%;
  }

  .product-shot,
  .eco-logo {
    margin-inline: auto;
  }
}
