:root {
  --bg: #0b0b0d;
  --text: #111827;
  --subtle: #6b7280;
  --card: #ffffff;
  --brand: #111827;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.container {
  max-width: 720px;
  margin: 96px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

h1 {
  margin: 0 0 8px 0;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--subtle);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.brand {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Property list */
.property-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.property-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.property-thumb {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

.property-title {
  margin: 0 0 4px 0;
  font-size: 1rem;
}

.property-address {
  margin: 0;
  color: var(--subtle);
  font-size: .9rem;
}
