/* Lakeview Realty — listing first. The house is the hero, not a slogan. */
:root {
  --ink: #22262c;
  --mute: #6b7380;
  --line: #e6e8ec;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: Outfit, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.45;
  font-weight: 400;
}
a { color: var(--ink); }
img { max-width: 100%; display: block; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 8px; background: #fff; padding: 8px; z-index: 20; }

.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mark { text-decoration: none; }
.bar nav { display: flex; gap: 20px; }
.bar nav a { text-decoration: none; font-weight: 400; letter-spacing: 0.04em; color: var(--mute); }
.tel { text-decoration: none; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--mute); }

.feature {
  position: relative;
  min-height: 560px;
  background: #dfe4ea;
}
.feature img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 60%;
}
.feature-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.94);
  padding: 20px 22px 18px;
  max-width: 22rem;
}
.tag {
  margin: 0 0 6px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.feature h1 {
  margin: 0 0 4px;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}
.price {
  margin: 0 0 8px;
  font-weight: 300;
  font-size: 1.35rem;
}
.feature-card p:last-child { margin: 0; color: var(--mute); font-weight: 300; }

.list { padding: 36px 28px 8px; }
.list h2 {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 18px;
}
.row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.card img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 12px; }
.card h3 { margin: 0 0 4px; font-weight: 500; font-size: 1.15rem; }
.card p { margin: 0; color: var(--mute); font-weight: 300; }

.wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  padding: 16px 28px 8px;
}
.wide img { width: 100%; height: 260px; object-fit: cover; }

.agent {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.face { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; }
.agent h2 { margin: 0 0 4px; font-size: 1.1rem; font-weight: 500; }
.agent p { margin: 0; color: var(--mute); font-size: 0.95rem; }

.form {
  padding: 0 28px 40px;
  display: grid;
  gap: 10px;
  max-width: 30rem;
}
.form input, .form textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font: inherit;
  background: transparent;
}
.form button {
  justify-self: start;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}
.foot { padding: 0 28px 36px; color: var(--mute); font-size: 0.85rem; font-weight: 300; }

@media (max-width: 800px) {
  .bar nav { display: none; }
  .row, .wide { grid-template-columns: 1fr; }
  .feature, .feature img { min-height: 420px; height: 420px; }
  .feature-card { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .list, .agent, .form, .foot, .wide { padding-left: 18px; padding-right: 18px; }
  .wide img { height: 180px; }
}
