.hero {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.75rem 4rem;
  text-align: center;
  color: var(--paper-raised);
}

.hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

.hero .subhead {
  color: #C9C4B6;
  font-size: 1rem;
  margin: 0 0 2rem;
}

.hero-search { display: flex; gap: 0.6rem; align-items: stretch; }

.hero-search .field { flex: 1; margin: 0; }

.hero-search input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  border: none;
}

.hero-search .btn-primary {
  padding: 0 1.6rem;
  font-size: 1rem;
}

/* ---------------- Recent sales (landing page) ---------------- */
.landing-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.4rem 1.75rem 3rem;
}

.recent-sales h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.recent-sales-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recent-sale-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--paper-raised);
  border: 1px solid var(--line);
}

.recent-sale-item .addr {
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.recent-sale-item .addr:hover { color: var(--moss-dark); text-decoration: underline; }

.recent-sale-item .meta {
  color: var(--slate);
  font-size: 0.85rem;
  white-space: nowrap;
}

.recent-sale-item .price {
  font-family: var(--font-mono);
  font-weight: 500;
  white-space: nowrap;
}

.see-all {
  margin-top: 1.2rem;
  text-align: center;
}
.see-all a {
  color: var(--moss-dark);
  font-weight: 500;
  text-decoration: none;
}
.see-all a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .hero-search { flex-direction: column; }
  .recent-sale-item { flex-wrap: wrap; }
}
