:root {
  --ink: #17312b;
  --muted: #5f716b;
  --forest: #123f31;
  --leaf: #287a4d;
  --moss: #7ea35a;
  --mint: #e7f3e7;
  --sage: #c9dcc4;
  --sun: #f2c85b;
  --clay: #c96f45;
  --sky: #dceff0;
  --paper: #f8fbf4;
  --white: #ffffff;
  --line: #d9e4d3;
  --shadow: 0 18px 48px rgba(23, 49, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.topbar {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(18px, 5vw, 72px);
}

.brand,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--sun);
  color: var(--forest);
  font-size: 0.82rem;
}

.nav-actions {
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(18, 63, 49, 0.92) 0%, rgba(18, 63, 49, 0.72) 46%, rgba(18, 63, 49, 0.16) 100%),
    url("https://images.unsplash.com/photo-1604187351574-c75ca79f5807?auto=format&fit=crop&w=1800&q=80") center right / cover no-repeat,
    var(--forest);
  transform: scale(1.02);
}

.hero-shade {
  background: linear-gradient(180deg, rgba(18, 63, 49, 0.08), rgba(18, 63, 49, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 36px));
  padding: 0 0 11vh clamp(18px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
  line-height: 1.7;
}

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

.button,
.text-button,
.chip,
.retailer-grid a {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--sun);
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button:hover,
.retailer-grid a:hover {
  transform: translateY(-1px);
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.section-copy p,
.checklist-section p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.avoid-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.avoid-panel span,
.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 900;
}

.finder-section {
  padding-top: 36px;
}

.finder-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: end;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
}

.controls {
  display: grid;
  gap: 18px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.control-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.chip[aria-pressed="true"] {
  border-color: var(--leaf);
  background: var(--forest);
  color: var(--white);
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 900;
}

.text-button {
  border: 0;
  border-bottom: 2px solid var(--moss);
  padding: 2px 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-visual {
  display: grid;
  min-height: 150px;
  padding: 18px;
  align-items: end;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--leaf));
}

.product-visual.kitchen {
  background: linear-gradient(135deg, #174434, #8faa65);
}

.product-visual.home {
  background: linear-gradient(135deg, #173d43, #75a99d);
}

.product-visual.personal {
  background: linear-gradient(135deg, #31513a, #d6b44d);
}

.product-visual.food {
  background: linear-gradient(135deg, #3d4c24, #c96f45);
}

.product-visual span {
  width: min-content;
  min-width: 84px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 900;
  line-height: 1.1;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-meta {
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body p {
  color: var(--muted);
  line-height: 1.6;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.retailer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.retailer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 900;
}

.note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed var(--moss);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.retailer-band {
  background: var(--forest);
  color: var(--white);
}

.retailer-inner {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 32px;
  align-items: center;
}

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

.retailer-grid a {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: 36px;
}

.checklist {
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 6px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #0d2d24;
  color: var(--white);
}

.footer span,
.footer a {
  font-weight: 900;
}

.footer a {
  color: var(--sun);
}

@media (max-width: 960px) {
  .nav-actions a:not(.button) {
    display: none;
  }

  .trust-strip,
  .intro-section,
  .finder-heading,
  .product-grid,
  .retailer-inner,
  .checklist-section {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 84vh;
  }

  .topbar {
    align-items: flex-start;
  }

  .button.small {
    min-height: 34px;
    padding: 0 10px;
  }

  .hero-content {
    padding-bottom: 8vh;
  }

  .hero-actions,
  .retailer-links,
  .retailer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }
}
