:root {
  --bg: #0f1115;
  --surface: #ffffff;
  --surface-alt: #f4f5f7;
  --ink: #16181d;
  --muted: #5c626d;
  --line: #e3e5ea;
  --brand: #ff6a1a;
  --brand-dark: #e2560d;
  --dark: #14171d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 18, 22, 0.08);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-small { padding: 9px 18px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 23, 29, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--brand); color: #fff;
  border-radius: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; font-size: 1.2rem; letter-spacing: 0.05em;
}
.brand-text { font-weight: 700; font-size: 1.05rem; color: #fff; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #d7dae0; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.nav a.btn { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* Hero */
.hero { position: relative; color: #fff; min-height: 620px; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,17,21,0.9) 0%, rgba(15,17,21,0.72) 45%, rgba(15,17,21,0.35) 100%);
}
.hero-content { position: relative; padding: 80px 24px; max-width: 760px; }
.hero-sub { font-size: 1.15rem; color: #e2e5ea; margin: 18px 0 30px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 48px; }
.hero-badges div { display: flex; flex-direction: column; }
.hero-badges strong { font-size: 1.8rem; font-weight: 800; }
.hero-badges span { color: #b9bec7; font-size: 0.9rem; }

/* Search bar */
.searchbar { background: var(--dark); padding: 22px 0; }
.search-form { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 16px; align-items: end; }
.search-form .field label { color: #aeb4be; font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.search-form select {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
  background: #1d2129; color: #fff; font-family: inherit; font-size: 0.95rem;
}

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--surface-alt); }
.section-head { max-width: 640px; margin-bottom: 44px; }

.grid { display: grid; gap: 24px; }
.listings-grid { grid-template-columns: repeat(3, 1fr); }

/* Listing card */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16,18,22,0.14); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand); color: #fff;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 11px; border-radius: 999px;
}
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-price { font-size: 1.35rem; font-weight: 800; }
.card-price span { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.card-title { font-size: 1.08rem; font-weight: 700; }
.card-addr { color: var(--muted); font-size: 0.9rem; }
.card-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.spec { background: var(--surface-alt); border: 1px solid var(--line); border-radius: 8px; padding: 5px 10px; font-size: 0.8rem; font-weight: 600; color: #3a3f49; }
.card-foot { margin-top: auto; padding-top: 14px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.card-foot a { color: var(--brand); font-weight: 700; font-size: 0.92rem; }

/* Services */
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.service-icon {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.4rem;
  color: var(--brand); background: rgba(255,106,26,0.1);
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
}
.service h3 { margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 0.95rem; }

/* Stats */
.stats-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.stats-copy p { color: var(--muted); margin: 14px 0; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.checklist li { position: relative; padding-left: 30px; font-weight: 600; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand); font-weight: 800;
  background: rgba(255,106,26,0.12); width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.75rem;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 28px; }
.stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--brand); }
.stat span { color: #c4c9d1; font-size: 0.92rem; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-info p { color: var(--muted); margin: 12px 0 24px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.c-label { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: var(--brand); font-weight: 700; }
.c-value { font-weight: 600; }
.c-value a { color: var(--ink); }
.c-value a:hover { color: var(--brand); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,106,26,0.15); }
.form-note { margin-top: 12px; font-weight: 600; font-size: 0.9rem; color: var(--brand); }

/* Footer */
.site-footer { background: var(--dark); color: #c7ccd4; padding: 48px 0 32px; }
.footer-inner { display: grid; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.footer-brand p { font-size: 0.9rem; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: #c7ccd4; font-weight: 600; }
.footer-nav a:hover { color: var(--brand); }
.footer-legal { font-size: 0.82rem; color: #808795; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

/* Responsive */
@media (max-width: 960px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .search-form { grid-template-columns: 1fr 1fr; }
  .search-form .btn { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--dark); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; transform: translateY(-120%); transition: transform 0.3s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav a.btn { margin-top: 12px; border: none; }
  .nav-toggle { display: flex; }
  .listings-grid, .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr; }
  .hero-badges { gap: 24px; }
}
