
:root {
  --cream: #f5f1e8;
  --cream-2: #eee9de;
  --paper: #fbfaf6;
  --green: #42563f;
  --green-dark: #10231d;
  --green-soft: #dfe5d8;
  --brown: #a35f3f;
  --text: #16201c;
  --muted: #6f746d;
  --line: rgba(47, 61, 52, .14);
  --shadow: 0 14px 40px rgba(54, 48, 37, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }

.site-header {
  height: 82px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,244,236,.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #f7f3e9;
}
.brand-mark svg { width: 31px; height: 31px; }
.brand-name { font-size: 28px; letter-spacing: -1.5px; }
.brand-name strong { font-weight: 760; }
.brand-name span { color: #899189; }
nav a {
  color: var(--green);
  text-decoration: none;
  font-size: 17px;
}
main { max-width: 1536px; margin: 0 auto; }

.hero {
  min-height: 450px;
  display: grid;
  grid-template-columns: 2fr 1.05fr;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 20%, rgba(255,255,255,.8), transparent 45%),
    linear-gradient(90deg, #f7f3ea 0%, #f5f1e8 68%, #ece5d9 100%);
}
.hero-copy {
  padding: 64px 0 36px 4%;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 650;
}
.hero h1 span { display: block; color: var(--green-dark); }
.hero h1 em {
  display: block;
  margin-top: 6px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -3px;
}
.hero-subtitle {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.45;
  margin: 20px 0 24px;
}
.search {
  width: min(850px, 92%);
  min-height: 64px;
  padding: 5px 6px 5px 20px;
  display: grid;
  grid-template-columns: 28px 1fr 150px;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.search svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #607065;
  stroke-width: 1.8;
}
.search input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 19px;
  color: var(--text);
}
.search input::placeholder { color: #a2a49f; }
.search button {
  height: 52px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  font-weight: 650;
  transition: transform .15s ease, background .15s ease;
}
.search button:hover { background: #344b36; }
.search button:active { transform: translateY(1px); }

.popular {
  width: min(860px, 92%);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #556057;
  font-size: 14px;
}
.popular button {
  border: 1px solid rgba(72,85,72,.08);
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(224,229,216,.62);
  color: #3d4a3f;
  cursor: pointer;
}
.popular button:hover { background: #d5ddcf; }

.hero-image {
  min-height: 450px;
  background-image:
    linear-gradient(90deg, var(--cream) 0%, rgba(245,241,232,.12) 18%, rgba(245,241,232,0) 42%),
    url("/hero-machine.jpg");
  background-size: cover;
  background-position: center right;
}

.example-card {
  margin: 0 4%;
  transform: translateY(-1px);
  display: grid;
  grid-template-columns: 220px 1.55fr 1.05fr;
  min-height: 280px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-image-wrap {
  display: grid;
  place-items: center;
  padding: 26px 18px;
}
.product-image-wrap img {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid rgba(55,70,56,.06);
}

.market-summary {
  padding: 34px 28px 28px 8px;
  border-right: 1px solid var(--line);
}
.eyebrow { margin: 0 0 10px; color: #6b756c; font-size: 12px; }
.market-summary h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 39px);
  letter-spacing: -1.6px;
  font-weight: 630;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metrics > div {
  padding: 0 22px;
  border-left: 1px solid var(--line);
}
.metrics > div:first-child { padding-left: 0; border-left: 0; }
.metrics span, .markets > span {
  display: block;
  color: #70766f;
  font-size: 14px;
  margin-bottom: 8px;
}
.metrics strong {
  display: block;
  font-size: 29px;
  font-weight: 620;
  letter-spacing: -1px;
}
.metrics strong.range { font-size: 22px; }
.markets { margin-top: 26px; }
.market-flags {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.market-flags span { font-size: 14px; }

.recent-listings { padding: 28px 28px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.section-head h3 { margin: 0; font-size: 17px; }
.section-head a {
  color: var(--green);
  font-size: 13px;
  text-underline-offset: 3px;
}
.listing {
  display: grid;
  grid-template-columns: 64px 1fr auto 24px;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.listing:last-child { border-bottom: 0; }
.listing img {
  width: 64px; height: 54px;
  object-fit: cover;
  border-radius: 9px;
}
.listing span { min-width: 0; }
.listing strong { display: block; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.listing small { display: block; margin-top: 5px; color: #777c76; font-size: 13px; }
.listing b { font-size: 15px; font-weight: 560; white-space: nowrap; }
.listing i { font-style: normal; color: var(--green); }

.how {
  margin: 28px 4% 50px;
  padding: 28px 40px 30px;
  border-radius: 18px;
  background: rgba(229,232,221,.64);
  border: 1px solid rgba(66,86,63,.06);
}
.how h2 {
  margin: 0 0 20px;
  font-size: 25px;
  letter-spacing: -.5px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 2px 28px;
  border-left: 1px solid var(--line);
}
.steps article:first-child { border-left: 0; padding-left: 0; }
.step-no {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #d5ddcd;
  color: #17241b;
  font-size: 18px;
}
.steps h3 { margin: 3px 0 6px; font-size: 17px; }
.steps p { margin: 0; color: #696f69; line-height: 1.45; font-size: 15px; }

footer {
  max-width: 1536px;
  margin: 0 auto;
  padding: 24px 4% 32px;
  display: flex;
  justify-content: space-between;
  color: #7d817b;
  font-size: 13px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-right: 4%; padding-bottom: 50px; }
  .hero-image { display: none; }
  .example-card { grid-template-columns: 170px 1fr; }
  .recent-listings { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .market-summary { border-right: 0; }
}

@media (max-width: 720px) {
  .site-header { height: 68px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 23px; }
  nav a { font-size: 14px; }
  .hero-copy { padding-top: 42px; }
  .hero h1 { font-size: 50px; letter-spacing: -3px; }
  .hero-subtitle { font-size: 18px; }
  .search {
    width: 100%;
    grid-template-columns: 24px 1fr;
    padding: 10px 12px;
  }
  .search button { grid-column: 1 / -1; width: 100%; }
  .popular { width: 100%; }
  .example-card {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }
  .product-image-wrap { display: none; }
  .market-summary { padding: 26px 22px; }
  .metrics { grid-template-columns: 1fr; gap: 18px; }
  .metrics > div, .metrics > div:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0 0;
  }
  .metrics > div:first-child { border-top: 0; padding-top: 0; }
  .recent-listings { padding: 24px 22px; }
  .listing { grid-template-columns: 52px 1fr auto; }
  .listing img { width: 52px; height: 48px; }
  .listing i { display: none; }
  .how { padding: 26px 22px; }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }
  .steps article:first-child { border-top: 0; padding-top: 0; }
  footer { flex-direction: column; gap: 8px; }
}
