:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #0f172a;
  --primary-2: #1e293b;
  --accent: #dbeafe;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hidden { display: none !important; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; color: var(--muted);
}
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); background: rgba(247,248,251,.82); border-bottom: 1px solid rgba(226,232,240,.8);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.logo { margin-top: 4px; font-size: 1.35rem; font-weight: 800; }
.header-nav { display: flex; gap: 24px; color: var(--muted); font-weight: 600; }
.hero {
  background:
    radial-gradient(circle at top right, rgba(219,234,254,.95), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white; padding: 80px 0 110px;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.02; margin: 14px 0 18px; }
.hero-copy p { font-size: 1.08rem; line-height: 1.75; max-width: 720px; color: rgba(255,255,255,.82); }
.pill { display: inline-block; padding: 10px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: .9rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 20px; border-radius: 16px; font-weight: 700; border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { opacity: .94; }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.2); color: white; }
.btn-full { width: 100%; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: 22px; box-shadow: var(--shadow);
}
.metric { padding: 20px; border-radius: 20px; background: rgba(255,255,255,.06); }
.metric + .metric { margin-top: 14px; }
.metric span { display: block; color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 6px; }
.metric strong { font-size: 1.15rem; }
.search-strip { margin-top: -40px; position: relative; z-index: 3; }
.search-form {
  display: grid; grid-template-columns: 1.4fr repeat(4, .8fr) .7fr; gap: 14px;
  background: white; border-radius: 28px; padding: 18px; box-shadow: var(--shadow);
}
.search-form input, .search-form select {
  width: 100%; height: 52px; border-radius: 16px; border: 1px solid var(--line); background: #fff; padding: 0 16px; font: inherit;
}
.section { padding: 76px 0; }
.section-soft { background: linear-gradient(180deg, transparent 0%, #eef2ff 100%); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 28px; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 8px 0 0; }
.muted { color: var(--muted); }
.status-box { margin-bottom: 18px; padding: 16px 18px; border-radius: 18px; background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.property-card {
  background: var(--card); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(226,232,240,.7);
}
.property-image { position: relative; aspect-ratio: 16 / 10; background: #e2e8f0; }
.property-image img { width: 100%; height: 100%; object-fit: cover; }
.badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.92); color: var(--primary); padding: 8px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.property-body { padding: 22px; }
.property-top { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; }
.property-title { margin: 0; font-size: 1.18rem; line-height: 1.35; }
.price { font-size: 1.25rem; font-weight: 800; text-align: right; }
.location { color: var(--muted); margin: 10px 0 0; font-size: .95rem; }
.description { color: #475569; line-height: 1.65; min-height: 78px; }
.meta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; background: #f8fafc; border-radius: 20px; padding: 14px; margin: 18px 0;
}
.meta-item { font-size: .92rem; color: #334155; }
.meta-label { display: block; color: var(--muted); font-size: .78rem; margin-bottom: 4px; }
.card-actions { display: flex; gap: 12px; }
.card-actions .btn { flex: 1; }
.card-actions .btn-secondary { border: 1px solid var(--line); color: var(--primary); background: white; }
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; }
.lead { color: #334155; line-height: 1.8; max-width: 760px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.feature-card, .contact-card {
  background: white; border-radius: 24px; padding: 22px; box-shadow: var(--shadow); border: 1px solid rgba(226,232,240,.7);
}
.contact-card ul { padding-left: 18px; color: #334155; line-height: 1.9; }
.site-footer { border-top: 1px solid var(--line); background: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; color: var(--muted); }
.footer-inner div { display: flex; gap: 18px; }
.empty-state {
  background: white; border: 1px dashed var(--line); border-radius: 24px; padding: 32px; text-align: center; color: var(--muted);
}
@media (max-width: 1050px) {
  .hero-grid, .two-col, .properties-grid, .feature-list { grid-template-columns: 1fr 1fr; }
  .search-form { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 800px) {
  .header-nav { display: none; }
  .hero-grid, .two-col, .properties-grid, .feature-list, .search-form, .section-head, .property-top, .footer-inner { grid-template-columns: 1fr; display: grid; }
  .footer-inner div { display: flex; flex-wrap: wrap; }
  .card-actions { flex-direction: column; }
  .price { text-align: left; }
}
