* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2937;
  background: #f8fafc;
}
a { color: #0f4c81; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header {
  background: #0f172a;
  color: #fff;
  padding: 1rem 0;
}
.site-header .brand { font-size: 1.2rem; font-weight: 700; color: #fff; }
.site-nav { margin-top: 0.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.site-nav a { color: #cbd5e1; }
.hero { padding: 2rem 0 1rem; }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.section { margin: 1.25rem 0; }
.section-plain { background: transparent; border: 0; box-shadow: none; padding: 0.25rem 0; }
.section-accent { background: #e0f2fe; border: 1px solid #7dd3fc; border-radius: 12px; padding: 1rem; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.rich-text,
.rich-text * {
  text-align: inherit !important;
}
.property-thumb {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.gallery-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dbe2ea;
}
.map-wrap {
  margin: 1rem 0 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.property-map {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.property-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.property-title-row h1,
.property-title-row h2 {
  margin: 0;
}
.property-price {
  margin: 0;
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}
.floorplan-wrap {
  margin: 0.75rem 0 1rem;
}
.floorplan-image,
.floorplan-pdf {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  background: #fff;
}
.floorplan-image {
  max-height: 700px;
  object-fit: contain;
}
.floorplan-pdf {
  height: 520px;
}
.download-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 600;
}
@media (max-width: 680px) {
  .property-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .property-price {
    text-align: left;
  }
}
form input, form textarea, form select {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  margin-top: 0.35rem;
}
form textarea { min-height: 120px; }
button {
  background: #0f4c81;
  color: #fff;
  border: 0;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}
button:hover { background: #0d3f6a; }
.notice { background: #ecfeff; border: 1px solid #a5f3fc; padding: 0.75rem; border-radius: 8px; }
.site-footer {
  border-top: 1px solid #dbe2ea;
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  color: #475569;
}
