:root {
  --bg: #cbc2b8;
  --paper: #f5f2ec;
  --text: #2f2f2f;
  --muted: #6f6b66;
  --line: #777a7b;
  --brown: #5d4f49;
  --copper: #a65a3a;
  --cream: #e9e6e3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 5%, rgba(245, 242, 236, 0.55), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Montserrat, Lato, Arial, Helvetica, sans-serif;
}

.page {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: 28px 0;
}

.intro {
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
}

.brand-mark {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0 auto 20px;
  color: var(--line);
}

.brand-mark span {
  display: block;
  width: min(100%, 420px);
  height: 1px;
  background: currentColor;
}

.brand-mark strong {
  color: #737577;
  font-family: "Playfair Display", "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-mark small {
  color: #737577;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--brown);
  font-family: "Playfair Display", "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.intro p {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.property-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(93, 79, 73, 0.22);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(47, 47, 47, 0.08);
}

.property-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.property-card div {
  padding: 18px 20px 12px;
}

h2 {
  margin: 0;
  color: var(--brown);
  font-family: "Playfair Display", "Libre Baskerville", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.property-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.phone {
  color: var(--text);
  font-weight: 700;
}

a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: auto 20px 18px;
  border-radius: 3px;
  background: var(--copper);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 11px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

a:hover {
  background: var(--brown);
}

a:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 980px);
    padding: 28px 0 36px;
  }

  .brand-mark {
    margin-bottom: 18px;
  }

  .brand-mark strong {
    letter-spacing: 0.1em;
  }

  .brand-mark small {
    letter-spacing: 0.32em;
  }

  .property-list {
    grid-template-columns: 1fr;
  }
}
