:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --surface-muted: #eef3ef;
  --ink: #17211b;
  --ink-soft: #506158;
  --line: #dbe4de;
  --green: #007f3d;
  --green-dark: #005f2d;
  --shadow: 0 18px 48px rgba(23, 33, 27, 0.08);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-block;
  position: relative;
  width: 38px;
  height: 24px;
  flex: 0 0 auto;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 78% 100%, 22% 100%, 0 70%);
  box-shadow: 0 0 0 1px rgba(0, 127, 61, 0.28);
}

.brand-mark::after {
  position: absolute;
  inset: 3px;
  content: "";
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 76% 100%, 24% 100%, 0 68%);
}

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

.nav a {
  padding: 9px 11px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  border-radius: 6px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--surface-muted);
  outline: none;
}

.nav .nav-cta {
  color: #fff;
  background: var(--ink);
}

main {
  padding: clamp(18px, 3vw, 34px) 0 clamp(36px, 5vw, 58px);
}

.intro {
  max-width: 680px;
  margin-bottom: clamp(18px, 2.4vw, 24px);
}

.eyebrow,
.product-type {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

h2 {
  margin-top: 6px;
  font-size: clamp(1.18rem, 1.55vw, 1.35rem);
}

p,
li {
  color: var(--ink-soft);
}

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

.product-card,
.shop-note,
.disclaimer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-media {
  display: grid;
  min-height: 240px;
  place-items: center;
  padding: clamp(14px, 2.4vw, 24px);
  background: var(--surface-muted);
}

.product-media img {
  width: min(100%, 220px);
  filter: drop-shadow(0 16px 18px rgba(23, 33, 27, 0.13));
}

.product-copy {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 24px);
}

ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 18px;
}

li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.button {
  display: inline-flex;
  min-height: 46px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  background: var(--green);
  border-radius: 7px;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  outline: none;
}

.shop-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
}

.shop-note a,
.footer-links a {
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.disclaimer {
  margin-top: 14px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: none;
}

.disclaimer p {
  max-width: 880px;
  margin-top: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-soft);
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .product-media {
    min-height: 200px;
  }

  .product-media img {
    width: min(100%, 195px);
  }

  .product-copy {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .shop-note,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.45rem);
  }

  .nav a {
    padding: 8px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
