/* ==========================================================================
   Renteaso — tenant-facing property site.
   Design system: warm neutrals, deep coffee brand, terracotta accent.
   Font: Plus Jakarta Sans (system fallbacks keep it readable offline).
   ========================================================================== */

:root {
  /* Minimalist premium: off-white ground, near-black type, one accent.
     Deep emerald reads as trust and verification, and deliberately avoids the
     reds and blues every other Indian rental portal already owns. */
  --ink: #0f1113;
  --ink-soft: #3a3f44;
  --muted: #6b7280;
  --paper: #fafaf8;
  --paper-warm: #f4f4f1;
  --card: #ffffff;
  --line: #e7e8ea;
  --line-soft: #f0f1f2;
  --brand: #0f1113;
  --brand-deep: #08090a;
  --accent: #0b6e4f;
  --accent-dark: #085a40;
  --accent-soft: #eaf5f0;
  --good: #0b6e4f;
  --good-soft: #eaf5f0;
  /* 20-24px on cards, per the brief. Small radius is for chips and inputs. */
  --radius: 22px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  /* Very light shadows -- the borders carry the structure, not the shadow. */
  --shadow-sm: 0 1px 2px rgba(15, 17, 19, 0.04);
  --shadow-md: 0 2px 10px rgba(15, 17, 19, 0.05);
  --shadow-lg: 0 12px 32px rgba(15, 17, 19, 0.08);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); }
h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.2; }

.section-title { font-size: 1.65rem; font-weight: 800; margin: 0 0 6px; }
.section-sub { color: var(--muted); margin: 0; font-size: 0.98rem; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 12px 22px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(191, 84, 48, 0.3);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand); }
.btn-light { background: #fff; color: var(--brand); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--brand);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
  color: #f3b694;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-name { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-dot { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ------------------------------------------------ hero */
.hero {
  background: linear-gradient(180deg, #fdfaf5 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 480px;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
.hero-trust li::before { content: "\2713\00a0\00a0"; color: var(--good); font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual { display: flex; justify-content: center; }
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, #5d3f24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 182, 148, 0.85);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-float-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.hero-float-card strong { font-size: 1.02rem; }
.hero-float-card span:last-child { color: var(--muted); font-size: 0.9rem; }
.hero-float-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-dark);
}

/* ------------------------------------------------ lead capture */
.capture { padding: 34px 0 6px; }
.capture-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.capture-copy h2 { margin: 0 0 4px; font-size: 1.25rem; }
.capture-copy p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.capture-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; flex: 1 1 380px; }
.capture-input-wrap { flex: 1 1 220px; }
.capture-input-wrap input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.capture-input-wrap input[type="tel"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(191, 84, 48, 0.14);
}
.capture-hint { margin: 8px 0 0; color: var(--muted); font-size: 0.84rem; }
.capture-form .btn { height: 52px; }

.note {
  margin-top: 14px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--accent-dark);
}
.note-good { background: var(--good-soft); color: var(--good); }
.note-sub { display: block; margin-top: 3px; color: var(--muted); font-size: 0.86rem; }
.linklike {
  background: none;
  border: none;
  padding: 6px 0 0;
  font: inherit;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}

.matches { padding-top: 34px; }

/* ------------------------------------------------ search bar */
.searchbar-section { padding: 30px 0 4px; }
.searchbar {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr 1fr auto;
  gap: 8px;
  align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 4px; }
.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-left: 4px;
}
.search-field select,
.search-field input {
  height: 48px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.search-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23857563' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(191, 84, 48, 0.14);
}
.search-submit { height: 48px; white-space: nowrap; }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.area-chips-label { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.chip {
  display: inline-block;
  background: var(--card);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent-dark); }
.chip-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.chip-clear { border-style: dashed; color: var(--muted); }

/* ------------------------------------------------ listings */
.listings { padding: 34px 0 10px; }
.listings-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.listings-meta { display: flex; align-items: center; gap: 16px; }
.count { color: var(--muted); font-size: 0.92rem; font-weight: 600; white-space: nowrap; }
.sort-form { display: flex; align-items: center; gap: 8px; }
.sort-form label { color: var(--muted); font-size: 0.85rem; }
.sort-form select {
  height: 42px;
  padding: 0 34px 0 14px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23857563' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.sort-form select:focus { outline: none; border-color: var(--accent); }

.property-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.property-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--accent-soft);
}
.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.property-card:hover .property-media img { transform: scale(1.04); }
.property-media-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #c99e85;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.7), transparent 60%),
    linear-gradient(135deg, #fbf3ec 0%, #f3e4d8 100%);
  font-size: 0.88rem;
  font-weight: 600;
}
.property-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.badge-managed { background: rgba(58, 42, 27, 0.88); color: #fff; }
.badge-new { background: var(--good); color: #fff; }

.property-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.property-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.property-title { font-size: 1.05rem; font-weight: 700; margin: 0; }
.property-rent { font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.rent-period { color: var(--muted); font-size: 0.76rem; font-weight: 500; }
.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin: 4px 0 0;
}
.spec-negotiable { color: var(--accent-dark); font-weight: 600; }
.property-available { color: var(--good); font-size: 0.84rem; font-weight: 600; margin: 2px 0 0; }
.property-cta {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 30px 0 8px;
}
.pager-status { color: var(--muted); font-size: 0.92rem; }

.empty-state {
  text-align: center;
  background: var(--card);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 56px 24px;
}
.empty-state h3 { margin: 0 0 8px; font-size: 1.2rem; }
.empty-state p { color: var(--muted); max-width: 440px; margin: 0 auto 20px; }

/* ------------------------------------------------ why / how / clean / reviews */
.why, .how, .reviews { padding: 56px 0 8px; }
.feature-card, .step-card, .review-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-card h3, .step-card h3 { margin: 0 0 6px; font-size: 1.02rem; }
.feature-card p, .step-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.clean { padding: 30px 0; }
.clean-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--good-soft);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.clean-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--good);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clean-copy h2 { margin: 0 0 4px; font-size: 1.3rem; }
.clean-copy p { margin: 0; color: var(--ink-soft); }

.review-quote { margin: 0 0 14px; color: var(--ink-soft); }
.review-stars { color: #e8a33d; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-meta { display: flex; align-items: center; gap: 12px; }

/* Reviews: a horizontal, snap-scrolling strip -- the way professional services show
   social proof: a few visible, more on swipe, no wall of cards. */
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.reviews-hint { color: var(--muted); font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.review-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.review-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.review-card .review-quote { flex: 1; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #f3b694;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review-meta strong { display: block; font-size: 0.94rem; }
.review-meta span { color: var(--muted); font-size: 0.84rem; }

/* ------------------------------------------------ requirement form */
.newhere { padding: 10px 0 10px; }
.newhere-card {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 60%, #4c351f 100%);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.newhere-copy h2 { margin: 0 0 8px; font-size: 1.5rem; letter-spacing: -0.02em; }
.newhere-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px;
  max-width: 560px;
  font-size: 0.98rem;
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.req-field { margin-bottom: 14px; }
.req-field label, .req-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}
.optional { font-weight: 500; color: rgba(255, 255, 255, 0.5); }
.reqform input[type="text"],
.reqform input[type="tel"],
.other-area,
.area-panel input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.reqform input:focus, .other-area:focus {
  outline: none;
  border-color: #f0a07a;
  box-shadow: 0 0 0 3px rgba(240, 160, 122, 0.25);
}
.field-error { color: #ffb4a8; font-size: 0.84rem; margin-top: 4px; }

.area-picker { position: relative; }
.area-toggle {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
}
.area-toggle .placeholder { color: var(--muted); }
.area-toggle .caret { color: var(--muted); font-size: 0.8rem; }
.area-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  width: min(380px, 100%);
  max-height: 330px;
  overflow: auto;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
}
.area-panel input { margin-bottom: 8px; }
.area-zone {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 10px 8px 3px;
}
.area-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.93rem;
  cursor: pointer;
  color: var(--ink);
}
.area-option:hover { background: var(--accent-soft); }
.area-option.selected { background: var(--accent-soft); font-weight: 700; color: var(--accent-dark); }
.area-empty { color: var(--muted); font-size: 0.86rem; padding: 6px; }
.other-area { margin-top: 8px; }

.segmented { display: flex; flex-wrap: wrap; gap: 8px; }
.segment {
  flex: 1 1 auto;
  min-width: 64px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.segment:hover { border-color: #f0a07a; }
.segment.active { background: #f0a07a; border-color: #f0a07a; color: var(--brand-deep); }

.consent-notice {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.area-picker.has-error .area-toggle,
.segmented.has-error .segment { border-color: #ffb4a8; }
.reqform .btn-block { margin-top: 4px; }

/* ------------------------------------------------ final CTA */
.final-cta { padding: 60px 0 72px; }
.final-cta-inner {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  border-radius: 22px;
  text-align: center;
  padding: 54px 28px;
  color: #fff;
}
.final-cta-inner h2 { margin: 0 0 8px; font-size: 1.7rem; letter-spacing: -0.02em; }
.final-cta-inner p { color: rgba(255, 255, 255, 0.72); margin: 0 0 24px; }

/* ------------------------------------------------ footer */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 36px;
}
.brand-light { color: #fff; }
.brand-light .brand-mark { background: rgba(255, 255, 255, 0.12); }
.footer-brand p { margin: 12px 0 0; font-size: 0.92rem; color: rgba(255, 255, 255, 0.55); }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h3 {
  margin: 0 0 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.45);
}
.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-col a:hover { color: #f0a07a; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  padding-bottom: 22px;
}
.footer-bottom p { margin: 0; font-size: 0.84rem; color: rgba(255, 255, 255, 0.4); }

/* ------------------------------------------------ detail page (kept coherent) */
.rent-crumbs { margin: 22px 0 14px; font-size: 0.92rem; }
.rent-detail {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.rent-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.rent-shot {
  border-radius: 12px;
  overflow: hidden;
  background: var(--accent-soft);
  aspect-ratio: 4 / 3;
  display: block;
}
.rent-shot-first { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.rent-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rent-shot video { width: 100%; height: 100%; display: block; object-fit: cover; }
.rent-photo-empty {
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c99e85;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.7), transparent 60%),
    linear-gradient(135deg, #fbf3ec 0%, #f3e4d8 100%);
  border-radius: 12px;
}
.rent-head-info { margin-top: 20px; }
.rent-head-info h1 { font-size: 1.5rem; margin: 0 0 8px; }
.rent-rent-big { font-size: 1.6rem; font-weight: 800; }
.rent-rent-big .rent-chip { margin-left: 8px; vertical-align: middle; }
.rent-chip {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.rent-per { color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.rent-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-soft);
}
.rent-facts dt { color: var(--muted); font-size: 0.78rem; }
.rent-facts dd { margin: 2px 0 0; font-weight: 600; }
.rent-cta-note {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--paper);
  border-radius: 14px;
  font-size: 0.98rem;
}
.rent-cta-note > p { margin: 0 0 10px; }
.rent-cta-lead { font-weight: 800; font-size: 1.08rem; }
.rent-enquiry input[type="text"],
.rent-enquiry input[type="tel"],
.rent-enquiry textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 0.98rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}
.rent-enquiry input:focus, .rent-enquiry textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(191, 84, 48, 0.14);
}
.rent-enquiry textarea { resize: vertical; }
.rent-enquiry .hint { color: var(--muted); font-size: 0.8rem; margin-top: 4px; }
.rent-error { color: #b3261e; font-size: 0.84rem; margin-top: 4px; }
.rent-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
}
.rent-consent input { margin-top: 3px; accent-color: var(--accent); }
.rent-btn-wide { width: 100%; text-align: center; }
.rent-enquiry .small { color: var(--muted); font-size: 0.8rem; margin: 8px 0 0; }

.rent-thanks {
  max-width: 540px;
  margin: 56px auto;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 44px 28px;
}
.rent-thanks .mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--good);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.rent-thanks h1 { font-size: 1.4rem; margin: 0 0 10px; }
.rent-thanks .small { color: var(--muted); font-size: 0.86rem; margin-top: 18px; }

/* ------------------------------------------------ responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 44px; padding-bottom: 52px; }
  .hero-visual { order: -1; }
  .hero-photo { max-width: 560px; }
  .searchbar { grid-template-columns: 1fr 1fr; }
  .search-submit { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; border-radius: 10px; }
  .main-nav a:hover { background: var(--paper); }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: block; }

  .hero-inner { padding-top: 32px; padding-bottom: 40px; }
  .hero-copy h1 { font-size: 1.75rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .searchbar { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .listings-head { flex-direction: column; align-items: flex-start; }
  .newhere-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .capture-card { flex-direction: column; align-items: stretch; }
  .capture-form input[type="tel"] { flex-basis: 100%; }
  .capture-form .btn { width: 100%; }
  .clean-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Shortlists and visit state — the marketplace layer on the public site.
   ========================================================================== */

/* The card and its heart are siblings: a <form> cannot live inside an <a>, and
   nesting a button in a link breaks keyboard and screen-reader behaviour even
   where browsers render it. The wrapper is what positions one over the other. */
.property-card-wrap { position: relative; }

.save-toggle-form { position: absolute; top: 10px; right: 10px; margin: 0; z-index: 2; }

.save-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 34px; height: 34px; padding: 0;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255, 255, 255, 0.94); color: var(--muted);
  cursor: pointer; transition: color .15s, border-color .15s, transform .1s;
  box-shadow: var(--shadow-sm);
}
.save-toggle:hover { color: var(--accent); border-color: var(--accent); }
.save-toggle:active { transform: scale(.94); }
.save-toggle.is-saved { color: var(--accent); border-color: var(--accent); background: #fff; }

.nav-saved { display: inline-flex; align-items: center; gap: 6px; }
.saved-badge {
  display: inline-block; min-width: 18px; padding: 1px 6px; border-radius: 20px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  text-align: center;
}

/* Detail page: the heart sits inline with the rent, not floating over a photo. */
.rent-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px;
}
.rent-actions .save-toggle-form { position: static; }
.rent-save-label { font-size: 13.5px; color: var(--muted); }
.rent-visit-flag {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  background: var(--good-soft); color: var(--good);
  font-size: 12.5px; font-weight: 600;
}

.rent-similar { max-width: 1180px; margin: 44px auto 0; padding: 0 16px; }

/* The save gate: two fields standing between a visitor and a bookmark. */
.save-gate { padding: 40px 0 64px; }
.save-gate-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 32px; align-items: start;
}
.save-gate-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-md);
}
.save-gate-title { margin: 0 0 8px; font-size: 24px; color: var(--ink); }
.save-gate-sub { margin: 0 0 20px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.save-gate-form { display: grid; gap: 14px; }
.save-field { display: grid; gap: 6px; }
.save-label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.save-field input {
  width: 100%; padding: 11px 13px; font: inherit; font-size: 15px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.save-field input:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.save-field input.has-error { border-color: #c0392b; }
.save-gate-preview .property-card { display: block; }
.save-gate-back { display: inline-block; margin-top: 12px; font-size: 13.5px; color: var(--muted); }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* The shortlist page. */
.shortlist-head { padding: 36px 0 8px; }
.shortlist-title { margin: 0 0 6px; font-size: 28px; color: var(--ink); }
.shortlist-sub { margin: 0; color: var(--muted); font-size: 15px; }
.shortlist-foot {
  margin: 24px 0 0; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--good-soft); color: var(--good); font-size: 14px;
}
.forget-form { margin-top: 20px; }
.link-button {
  background: none; border: 0; padding: 0; font: inherit; font-size: 13.5px;
  color: var(--muted); text-decoration: underline; cursor: pointer;
}
.link-button:hover { color: var(--accent); }

@media (max-width: 860px) {
  .save-gate-inner { grid-template-columns: 1fr; }
  .save-gate-preview { display: none; }
}

/* ==========================================================================
   Bento + minimalist redesign.

   Appended deliberately: these rules override the earlier ones by cascade order,
   so the redesign reads as one block rather than as scattered edits through the
   1,000 lines above. The tokens at the top of this file do the colour work.
   ========================================================================== */

/* ---------------------------------------------------------------- offer strip
   The first thing an ad visitor sees, above the logo. Dark bar so it reads as an
   announcement rather than page furniture. */
.offer-strip {
  background: var(--brand);
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}
.offer-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  padding: 11px 16px;
  text-align: center;
}
.offer-pill {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.offer-sep { width: 1px; height: 14px; background: rgba(255,255,255,.28); }
.offer-main { font-weight: 600; }
.offer-quiet { color: rgba(255,255,255,.62); }

@media (max-width: 760px) {
  .offer-strip-inner { gap: 8px; padding: 10px 16px; font-size: 0.8rem; }
  .offer-sep, .offer-quiet { display: none; }
}

/* ---------------------------------------------------------------- header */
.site-header {
  background: rgba(250, 250, 248, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.main-nav a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--accent); }
.nav-saved { display: inline-flex; align-items: center; gap: 6px; }
.saved-badge {
  min-width: 18px; padding: 1px 6px; border-radius: 999px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
}

/* ---------------------------------------------------------------- hero
   Centred and typographic. The bento below carries the visual weight, so the hero
   stays quiet -- two competing showpieces read as clutter, not as premium. */
.hero {
  background: var(--paper);
  padding: 76px 0 40px;
  text-align: center;
}
.hero-copy { max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 7px 15px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-copy h1 {
  margin: 22px 0 0;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  line-height: 1.07;
  letter-spacing: -0.033em;
  font-weight: 800;
  color: var(--ink);
}
.hero-lede {
  margin: 18px auto 0; max-width: 560px;
  font-size: 1.08rem; line-height: 1.6; color: var(--muted);
}
.hero-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-top: 30px;
}

/* ---------------------------------------------------------------- buttons */
.btn { border-radius: 999px; font-weight: 600; transition: all .16s ease; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-ghost { background: var(--card); border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--card); }
.btn-sm { padding: 9px 18px; font-size: 0.86rem; }

/* ---------------------------------------------------------------- bento grid
   Eight cells on a four-column grid. Every cell shares the same radius, border and
   shadow -- the variety comes from span and content, never from decoration. */
.bento-section { background: var(--paper); padding: 16px 0 72px; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
.bento-cell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  min-width: 0;
}
a.bento-cell { text-decoration: none; color: inherit; }
a.bento-cell:hover {
  border-color: #d8dadd;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.bento-cell h3 {
  margin: 0 0 8px;
  font-size: 1.12rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ink);
}
.bento-cell p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.58; }
.bento-eyebrow {
  display: block; margin-bottom: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent);
}
.bento-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: 16px;
  border-radius: 13px; background: var(--accent-soft); color: var(--accent);
}

/* 1 -- featured property: two columns wide, two rows tall */
.bento-feature { grid-column: span 2; grid-row: span 2; padding: 0; overflow: hidden; }
.bento-feature-media { position: relative; aspect-ratio: 16 / 10; background: var(--paper-warm); }
.bento-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-feature-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; color: #c9ccd0;
}
.bento-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.94); color: var(--ink);
  padding: 6px 13px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.bento-feature-body {
  flex: 1; padding: 22px 26px 26px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
}
.bento-loc { margin: 0 0 12px !important; font-size: 0.9rem; color: var(--muted); }
.bento-spec { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.bento-spec li {
  background: var(--paper-warm); color: var(--ink-soft);
  padding: 5px 11px; border-radius: 999px; font-size: 0.79rem; font-weight: 600;
}
.bento-feature-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.bento-rent { font-size: 1.42rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.bento-rent small { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

/* 3 -- the fee card, inverted so the offer carries weight */
.bento-offer { background: var(--ink); border-color: var(--ink); }
.bento-offer h3 { color: #fff; font-size: 1.32rem; }
.bento-offer p { color: rgba(255,255,255,.66); }
.bento-offer .bento-eyebrow { color: #6ee7b7; }

/* 4 -- localities */
.bento-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.bento-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper-warm); border: 1px solid transparent;
  color: var(--ink-soft); text-decoration: none;
  padding: 7px 13px; border-radius: 999px;
  font-size: 0.84rem; font-weight: 600;
  transition: all .15s ease;
}
.bento-chip span { color: var(--muted); font-weight: 700; font-size: 0.76rem; }
.bento-chip:hover { background: var(--accent-soft); color: var(--accent); }

/* 5 -- market insight */
.insight-rows { list-style: none; margin: 6px 0 0; padding: 0; }
.insight-rows li {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.insight-rows li:last-child { border-bottom: 0; }
.insight-rows span { color: var(--muted); font-weight: 600; }
.insight-rows strong { font-size: 1.04rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.bento-foot { margin-top: 12px !important; font-size: 0.78rem !important; color: var(--muted); }

/* 7 -- the count */
.bento-count { justify-content: center; align-items: flex-start; gap: 6px; }
.bento-big {
  font-size: 3rem; line-height: 1; font-weight: 800;
  letter-spacing: -0.04em; color: var(--accent);
}
.bento-count span { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* 6 -- horizontal listings rail, full width */
.bento-strip { grid-column: span 4; }
.bento-strip-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; margin-bottom: 18px;
}
.bento-strip-head h3 { margin: 0; }
.bento-link { color: var(--accent); font-size: 0.87rem; font-weight: 600; text-decoration: none; }
.bento-link:hover { text-decoration: underline; }
.bento-strip-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr);
  gap: 14px; overflow-x: auto; padding-bottom: 6px;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.bento-strip-rail > * { scroll-snap-align: start; }

/* 8 -- owner CTA */
.bento-cta { background: var(--accent-soft); border-color: #cfe7dc; justify-content: space-between; }
.bento-cta h3 { color: var(--accent-dark); }
.bento-cta p { color: #3f6b5a; }
.bento-cta-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  color: var(--accent); font-weight: 700; font-size: 0.89rem;
}

@media (max-width: 1040px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-feature { grid-column: span 2; grid-row: span 1; }
  .bento-strip { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .bento-feature, .bento-strip { grid-column: span 1; }
  .bento-cell { padding: 20px; border-radius: 18px; }
  .hero { padding: 48px 0 28px; }
}

/* ---------------------------------------------------------------- property cards */
.property-card {
  display: block; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.property-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #d8dadd;
}
.property-media { position: relative; aspect-ratio: 4 / 3; background: var(--paper-warm); overflow: hidden; }
.property-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.property-card:hover .property-media img { transform: scale(1.045); }
.property-media-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: #c2c5c9; font-size: 0.79rem; font-weight: 600;
}
.property-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.015em;
  background: rgba(255,255,255,.94); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.badge-checked { color: var(--accent); }
.badge-new { background: var(--ink); color: #fff; }
.property-price-tag {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(255,255,255,.96); color: var(--ink);
  padding: 7px 13px; border-radius: 999px;
  font-size: 0.96rem; font-weight: 800; letter-spacing: -0.015em;
  box-shadow: var(--shadow-md);
}
.property-price-tag span { font-size: 0.74rem; font-weight: 600; color: var(--muted); }
.property-body { padding: 18px 18px 16px; }
.property-title {
  margin: 0 0 5px; font-size: 1.02rem; font-weight: 700;
  letter-spacing: -0.015em; color: var(--ink);
}
.property-location {
  display: flex; align-items: center; gap: 5px; margin: 0;
  color: var(--muted); font-size: 0.85rem;
}
.property-specs {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px;
  margin: 13px 0 0; padding: 0;
}
.property-specs li {
  background: var(--paper-warm); color: var(--ink-soft);
  padding: 4px 10px; border-radius: 999px; font-size: 0.76rem; font-weight: 600;
}
.property-specs .spec-negotiable { background: var(--accent-soft); color: var(--accent); }
.property-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line-soft);
}
.property-available { font-size: 0.79rem; color: var(--muted); font-weight: 500; }
.property-cta {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--accent); font-size: 0.84rem; font-weight: 700;
}
.property-card:hover .property-cta { gap: 8px; }
.property-card-mini .property-media { aspect-ratio: 3 / 2; }
.property-card-mini .property-body { padding: 14px; }

/* The save heart sits over the card corner. */
.save-toggle-form { top: 12px; right: 12px; }
.save-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line); background: rgba(255,255,255,.96);
  color: var(--muted); box-shadow: var(--shadow-sm);
}
.save-toggle:hover, .save-toggle.is-saved { color: var(--accent); border-color: var(--accent); }

/* ---------------------------------------------------------------- sections */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 800;
  letter-spacing: -0.028em; color: var(--ink); margin: 0 0 6px;
}
.section-sub { color: var(--muted); font-size: 0.96rem; margin: 0; }
.listings { background: var(--paper); padding: 56px 0 72px; }
body { background: var(--paper); color: var(--ink); }
