:root {
  --brand-yellow: #ffd400;
  --brand-green: #a7cf2d;
  --brand-orange: #ffa31a;
  --brand-red: #f5334f;
  --brand-brown: #a94f24;
  --brand-gray: #6d6e70;
  --green-50: #f7faec;
  --green-100: #e7f4c3;
  --green-200: #d4eb92;
  --olive: var(--brand-green);
  --olive-dark: #5f751d;
  --cream: #fff9eb;
  --peach: #ffe0bd;
  --peach-dark: var(--brand-orange);
  --berry: var(--brand-red);
  --berry-soft: #ffd8df;
  --ink: #20221d;
  --muted: var(--brand-gray);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(56, 66, 31, 0.14);
  --radius: 8px;
  --max-width: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--green-50);
  background-image:
    radial-gradient(circle at 8% 12%, rgba(255, 212, 0, 0.14), transparent 26%),
    radial-gradient(circle at 92% 2%, rgba(167, 207, 45, 0.16), transparent 24%);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 8px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(109, 110, 112, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  width: 106px;
  padding: 4px 0;
}

.brand img {
  width: 106px;
}

.menu-toggle {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(109, 110, 112, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--brand-gray);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.site-nav,
.header-cta {
  display: none;
}

.site-nav {
  grid-column: 1 / -1;
  padding: 12px 0 6px;
}

.site-nav a {
  display: block;
  padding: 13px 0;
  color: var(--muted);
  font-weight: 700;
  border-top: 1px solid rgba(109, 110, 112, 0.12);
}

.site-header.is-open .site-nav {
  display: block;
}

.button,
button {
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.primary,
.header-cta {
  color: var(--white);
  background: var(--brand-red);
  box-shadow: 0 14px 34px rgba(245, 51, 79, 0.22);
}

.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(109, 110, 112, 0.24);
}

.dark {
  color: var(--white);
  background: var(--ink);
}

.hero {
  display: grid;
  gap: 32px;
  align-items: center;
  max-width: var(--max-width);
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 74px) clamp(18px, 4vw, 44px) 52px;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 13vw, 8.4rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 5.8vw, 4rem);
  font-weight: 950;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 920;
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: #313826;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  font-weight: 600;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  padding: clamp(14px, 3vw, 26px);
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green));
  border-radius: 40% 6px 40% 6px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: min(100%, 620px);
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(58px, 9vw, 98px) clamp(18px, 4vw, 44px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro {
  display: grid;
  gap: 28px;
  border-top: 1px solid rgba(109, 110, 112, 0.16);
}

.intro-copy {
  display: grid;
  gap: 18px;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 650;
}

.intro-copy p {
  margin: 0;
}

.application-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.application-card,
.product-card {
  border: 1px solid rgba(109, 110, 112, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 38px rgba(77, 86, 43, 0.08);
}

.application-card {
  min-height: 180px;
  padding: 22px;
}

.application-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--brand-green);
  border-radius: 50%;
  font-weight: 900;
}

.application-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.products {
  max-width: 1240px;
}

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

.product-card {
  overflow: hidden;
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 22px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-green));
}

.product-image img {
  max-height: 310px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-image.berry {
  background: linear-gradient(90deg, var(--berry-soft), var(--berry));
}

.product-image.peach {
  background: linear-gradient(90deg, var(--peach), var(--peach-dark));
}

.product-content {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.product-kind {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content > p:not(.product-kind) {
  margin: 0;
  color: var(--muted);
}

dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

dt {
  font-weight: 900;
}

dd {
  margin: 0 0 8px;
  color: var(--muted);
}

.product-button {
  width: 100%;
  color: var(--white);
  background: var(--brand-red);
}

.developments {
  display: grid;
  gap: 28px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius);
}

.developments p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--brand-green);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.quote-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  max-width: var(--max-width);
  margin: clamp(34px, 7vw, 70px) auto;
  padding: clamp(30px, 6vw, 54px) clamp(18px, 4vw, 44px);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-brown), var(--brand-red));
  border-radius: var(--radius);
}

.quote-cta p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.footer {
  display: grid;
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: var(--brand-gray);
  border-top: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.footer img {
  width: 132px;
}

.footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

address a {
  color: var(--white);
  font-weight: 800;
}

.footer-button {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .footer-button {
    width: fit-content;
  }
}

@media (min-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 84px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    gap: clamp(14px, 2vw, 26px);
    padding: 0;
  }

  .site-nav a {
    padding: 8px 0;
    border-top: 0;
    font-size: 0.95rem;
  }

  .site-nav a:hover {
    color: var(--ink);
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: var(--radius);
    font-weight: 850;
  }

  .hero {
    grid-template-columns: 0.98fr 0.82fr;
    min-height: calc(100svh - 84px);
  }

  .intro,
  .developments,
  .quote-cta,
  .footer {
    grid-template-columns: 1fr 0.8fr;
  }

  .application-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .product-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-card:first-child .product-image img {
    max-height: 410px;
  }

  .quote-cta .button,
  .footer .button {
    justify-self: end;
    align-self: center;
  }
}

@media (min-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card:first-child {
    grid-column: span 2;
  }
}

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