/*
  Verve theme stylesheet — PART 2 (Blocks 10–13, Contact form, Map panel).

  TEMPORARY SPLIT for concurrent editing on the server — see style-base.css
  for the full explanation and the recombine instructions.

  Blocks in this file: 10 Recently Sourced, 11 Stats, 12 Area Specialists
  Teaser, 13 Latest From Verve, 16 Footer (social/legal snippet), 14 Contact
  Form, 15 Map Panel — Suburbs (Leaflet).
*/

/* ══════════════════════════════════════════════════════════
   BLOCK 10 — RECENTLY SOURCED
══════════════════════════════════════════════════════════ */
.sourced-section { background: transparent;
clip-path: inset(0 -100vmax); padding: var(--pad-y) var(--pad-x); }
.sourced-heading { text-align: center; margin-bottom: 48px; }
.sourced-grid { display: grid; gap: 25px; justify-content: center; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.sourced-card {
  flex: 0 0 422px; height: 475px; background: #eae6e0;
  border-radius: var(--radius-card); position: relative; overflow: hidden;
}
.sourced-img {
  position: absolute; left: 32px; right: 32px; top: 79px;
  border-radius: var(--radius-card); overflow: hidden; height: 240px;
}
.sourced-img img { width: 100%; height: 100%; object-fit: cover; }
.sourced-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius-pill);
  padding: 6px 12px; font-size: 13px; font-weight: 500; color: var(--primary);
}
.sourced-meta {
  position: absolute; left: 32px; right: 32px; bottom: 24px;
  display: flex; gap: 24px;
}
.sourced-meta-col {
  flex: 1; border-top: 1px solid var(--border-light); padding-top: 12px;
}
.sourced-meta-label { font-size: 14px; color: var(--grey-mid); line-height: 20px; }
.sourced-meta-value { font-size: 16px; line-height: 24px; color: var(--black); font-weight: 500; }

@media (max-width: 670px) {
  .sourced-grid { grid-template-columns: 1fr; }
  .sourced-card { max-width: none; }
}

.sourced-author-section { padding: var(--pad-y) var(--pad-x); }
.sourced-author-heading { text-align: center; margin-bottom: 64px; }
.sourced-author-grid { display: grid; gap: 25px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))}
/* Same card treatment as .property-card (28 Aug purchases handover): content-led
   height, 3:2 photo filling the top, meta bar flowing underneath. */
.sourced-author-card {
  background: var(--white); flex: 1; flex-shrink: 0; max-width: 423px;
  border-radius: var(--radius-card); overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
a.sourced-author-card { color: inherit; text-decoration: none; }
.sourced-author-img-frame { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.sourced-author-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.sourced-author-img-frame::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.2s ease; pointer-events: none;
}
.sourced-author-card:hover .sourced-author-img-frame::after { background: rgba(0,0,0,0.15); }
.sourced-author-tag { position: absolute; top: 24px; left: 24px; }
.sourced-author-meta-bar { display: flex; gap: 24px; margin: auto 32px 24px; text-align: left; transition: opacity 0.2s ease; }
.sourced-author-card:hover .sourced-author-meta-bar { opacity: 0; }
/* On the agent single page the cards have no reveal panel — keep the meta bar
   visible on hover; only the image swaps. */
.sourced-author-card--no-reveal:hover .sourced-author-meta-bar { opacity: 1; }
.sourced-author-meta-col { flex: 1; border-top: 1px solid var(--border-light); padding-top: 16px; }
.sourced-author-meta-col.w-fixed { flex: 0 0 156px; }
.sourced-author-meta-label { font-size: 16px; line-height: 24px; color: var(--black); font-weight: 500; }
.sourced-author-meta-value { font-size: 16px; line-height: 24px; color: var(--grey-mid); }
.sourced-author-reveal {
  position: absolute; left: 0; right: 0; bottom: 0; top: auto;
  background: #fff; border-radius: 0;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  display: flex; flex-direction: row; align-items: center; gap: 16px;
  padding: 16px 24px; transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.18s ease;
  text-decoration: none; color: inherit; cursor: pointer;
}
.sourced-author-reveal:hover { background: #fafafa; }
.sourced-author-card:hover .sourced-author-reveal { transform: translateY(0); }
.sourced-author-reveal-img { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.sourced-author-reveal-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.sourced-author-reveal-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; align-items: flex-start; text-align: left; }
.sourced-author-reveal-name { font-size: 18px; line-height: 22px; color: var(--primary); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.sourced-author-reveal-meta { font-size: 14px; line-height: 20px; color: var(--grey-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.sourced-author-reveal-btn {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 13px; font-weight: 500; color: var(--primary);
  border: 1px solid var(--primary); border-radius: var(--radius-pill);
  padding: 10px 16px; transition: opacity .18s; width: fit-content;
}
.sourced-author-reveal-btn svg { transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94); flex-shrink: 0; }
.sourced-author-reveal:hover .sourced-author-reveal-btn { opacity: .7; }
.sourced-author-reveal:hover .sourced-author-reveal-btn svg { transform: rotate(45deg); }

@media (max-width: 670px) {
  .sourced-author-grid { grid-template-columns: 1fr; }
  .sourced-author-card { max-width: none; }
}

/* ══════════════════════════════════════════════════════════
   BLOCK 11 — STATS
══════════════════════════════════════════════════════════ */
.stats-section { padding: 80px var(--pad-x); }
.stats-row { display: flex; gap: 1px; background: var(--secondary-200); border-radius: var(--radius-card); overflow: hidden; }
.stat-item {
  flex: 1; background: var(--bg-page); padding: 40px 48px;
  display: flex; flex-direction: column; gap: 8px;
}
.stat-item:first-child { border-radius: var(--radius-card) 0 0 var(--radius-card); }
.stat-item:last-child  { border-radius: 0 var(--radius-card) var(--radius-card) 0; }
.stat-number {
  font-family: var(--font-heading); font-weight: 400;
  font-size: 56px; line-height: 67px; letter-spacing: -1.12px;
  color: var(--primary);
}
.stat-label,
.stat-label-row { font-size: 16px; line-height: 24px; color: #434343; }

/* Card wrapper + title/body around the counters */
.stats-card { display: flex; flex-direction: column; gap: 32px; }
.stats-title { font-family: var(--font-heading);
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.8px;
    color: var(--primary);
  }
.stats-body { color: #434343; font-size: 18px; line-height: 28px; }
.stats-body > :last-child { margin-bottom: 0; }
.stats-content { display: flex; gap: 40px; }
/* Counters below the body copy */
.stats-content--bottom { flex-direction: column; }
.stats-content--bottom .stats-row { width: 100%; }
/* Counters to the right of the body copy */
.stats-content--right { flex-direction: row; align-items: flex-start; }
.stats-content--right .stats-body { flex: 1; }
.stats-content--right .stats-row { flex-direction: column; flex: 0 0 410px; }
.stats-content--right .stat-item:first-child { border-radius: 0; }
.stats-content--right .stat-item:last-child  { border-radius: 0; }

@media(max-width: 767px) {
 .stats-section {
   padding-block: 15px;
 }
 .stats-content--right { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════
   BLOCK 12 — AREA SPECIALISTS TEASER
══════════════════════════════════════════════════════════ */
.specialists-section {
  background: var(--bg-section); box-shadow: 0 0 0 100vmax var(--bg-section); clip-path: inset(0 -100vmax); padding: 96px 62px;
  display: flex; gap: 48px; align-items: center;
}
.spec-left { flex: 0 0 419px; display: flex; flex-direction: column; gap: 32px; }
.spec-left .btn { align-self: flex-start; }
.spec-label {
  font-size: 14px; font-weight: 500; letter-spacing: 0.14px; color: var(--black);
}
.spec-heading { color: var(--primary); }
.spec-right {
  /* max-width guards the same failure mode anywhere the section is not a row:
     the rows inside are max-content wide and must never define this box. */
  flex: 1; display: flex; flex-direction: column; gap: 12px; overflow: hidden; min-width: 0; max-width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 6%, rgba(0,0,0,0.5) 12%, rgba(0,0,0,0.85) 20%, black 28%, black 72%, rgba(0,0,0,0.85) 80%, rgba(0,0,0,0.5) 88%, rgba(0,0,0,0.15) 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 6%, rgba(0,0,0,0.5) 12%, rgba(0,0,0,0.85) 20%, black 28%, black 72%, rgba(0,0,0,0.85) 80%, rgba(0,0,0,0.5) 88%, rgba(0,0,0,0.15) 94%, transparent 100%);
}
.spec-row { display: flex; gap: 12px; width: max-content; flex-shrink: 0; }
.spec-row { animation: specLeft 50s linear infinite; }
.spec-row.reverse { animation: specRight 50s linear infinite; }
@keyframes specLeft  { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes specRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.spec-photo {
  flex: 0 0 auto; width: 280px;
  border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 381 / 318;
}
.spec-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.spec-single-image {
  flex: 1; border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 872 / 560;
}
.spec-single-image img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   BLOCK 13 — LATEST FROM VERVE (INSIGHTS)
══════════════════════════════════════════════════════════ */
.insights-section { background: var(--white); box-shadow: 0 0 0 100vmax var(--white); clip-path: inset(0 -100vmax); padding: var(--pad-y) var(--pad-x); }
.insights-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.insights-header .heading-1 { margin: 0; }
.insights-grid { display: flex; gap: 24px; align-items: stretch; }
@media (max-width: 767px) {
  /* Client asked for these 25% smaller on mobile: the feature title was 24px
     (already down from 32), the small tiles 24px — both land on 18px. */
  .insights-grid .insight-heading.heading-3,
  .insights-grid .insight-heading.heading-4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.insight-feature {
  flex: 0 0 calc((872 / 1320) * 100%);  border-radius: var(--radius-card);
  overflow: hidden; position: relative; cursor: pointer;
}
.insight-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-feature:hover img { transform: scale(1.04); }
.insight-small-col { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.insight-small {
  flex: 1; border-radius: var(--radius-card); overflow: hidden;
  position: relative; cursor: pointer; min-height: 200px;
}
.insight-small img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-small:hover img { transform: scale(1.04); }
.insight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.65) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.insight-tag {
  background: var(--white); border-radius: var(--radius-pill);
  padding: 4px 10px; font-size: 12px; font-weight: 500;
  color: var(--primary); width: fit-content; margin-bottom: 10px;
}
.insight-title { color: var(--white); }
@media(max-width: 767px) {
 .insight-feature {
   width: 100%;
   height: auto;
   aspect-ratio: 4/3;
 } 
}

/* ══════════════════════════════════════════════════════════
   BLOCK 16 — FOOTER
══════════════════════════════════════════════════════════ */
.footer-outer { background: var(--bg-page); padding: 24px; }
.footer-top { display: flex; gap: 24px; margin-bottom: 80px; }
.footer-col-contact { flex: 0 0 280px; }
.footer-contact-item {
  font-size: 14px; line-height: 20px; color: rgba(255,255,255,.65);
  margin-bottom: 6px;
}
.footer-contact-block { margin-bottom: 20px; }
.footer-socials { display: flex; gap: 16px; margin-top: 8px; }
.footer-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; 
  /*
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12); */
  color: var(--white);
  transition: background .18s; cursor: pointer;
}
.footer-social-icon:hover { background: rgba(255,255,255,.2); }
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 14px; line-height: 20px; color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-legal a:hover { color: var(--white); }

/* ── Contact form block ──────────────────────────────────── */
.contact-section {
  background: var(--primary); box-shadow: 0 0 0 100vmax var(--primary); clip-path: inset(0 -100vmax);
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.spf-card {
  width: 100%;
  max-width: 600px;
}
.spf-intro {
  display: none;
  text-align: center;
  animation: spf-in 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.spf-intro.active { display: block; }
.spf-intro-heading { color: var(--white) !important; margin-bottom: 24px; }
.spf-intro-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.spf-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .18s;
}
.spf-start-btn:hover { opacity: .82; }
 
.spf-answer-item {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--white);
  animation: spf-answer-in 0.25s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes spf-answer-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.spf-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px 36px;
}
.spf-prev-btn {
  justify-self: end;
  margin-right: 72px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity .15s;
  visibility: hidden;
  opacity: 0.9;
}
.spf-prev-btn:hover { opacity: 1; }
.spf-prev-btn.visible { visibility: visible; }
.spf-step-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.spf-question {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: -0.72px;
  color: var(--white);
  margin-bottom: 36px;
  text-align: center;
}
.spf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 48px;
}
.spf-options--1col { grid-template-columns: 1fr; }
.spf-options--3col { grid-template-columns: 1fr 1fr 1fr; }
.spf-option {
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
}
.spf-option:hover { border-color: rgba(255,255,255,0.7); }
.spf-option:active { transform: scale(0.98); }
.spf-option.selected { background: var(--white); border-color: var(--white); color: var(--primary); }
.spf-select-wrap {
  position: relative;
  margin-bottom: 48px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.spf-select {
  width: 100%;
  padding: 16px 44px 16px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s;
}
.spf-select:focus { border-color: rgba(255,255,255,0.7); }
.spf-select option, .spf-select optgroup { background: #402020; color: var(--white); }
.spf-select-arrow { color: rgba(255,255,255,0.5); position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.spf-input-select-wrap { position: relative; }
.spf-input-select {
  width: 100%;
  padding: 15px 24px 15px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color .15s;
}
.spf-input-select:focus { border-bottom-color: rgba(255,255,255,0.7); }
.spf-input-select.has-value { color: var(--white); }
.spf-input-select option, .spf-input-select optgroup { background: #402020; color: var(--white); }
.spf-input-select-arrow { color: rgba(255,255,255,0.5); position: absolute; right: 0; top: 50%; transform: translateY(-50%); pointer-events: none; }
.spf-inputs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 48px; }
.spf-input {
  width: 100%;
  padding: 15px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  text-align: center;
  outline: none;
  transition: border-color .15s;
}
.spf-input:focus { border-bottom-color: rgba(255,255,255,0.7); }
.spf-input::placeholder { color: rgba(255,255,255,0.4); }
.spf-nav { display: flex; align-items: center; justify-content: center; }
.spf-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .18s;
}
.spf-btn-next:hover { opacity: .82; }
.spf-step {
  display: none;
  animation: spf-in 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
.spf-step.active { display: block; }
@keyframes spf-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.spf-step.going-back { animation: spf-in-back 0.3s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes spf-in-back {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.spf-thankyou {
  display: none;
  text-align: center;
  padding: 20px 0 40px;
  animation: spf-in 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.spf-thankyou.active { display: block; }
.spf-thankyou-icon {
  color: var(--white);
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.spf-thankyou-icon svg { width: 26px; height: 26px; }
.spf-thankyou h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: -0.72px;
  color: var(--white);
  margin-bottom: 16px;
}
.spf-thankyou p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  max-width: 380px;
  margin: 0 auto 36px;
}


/* ── Map panel block (Suburbs page — single Leaflet map, no filters) ── */
.map-panel-section { padding: 0 var(--pad-x) 80px; display: flex; flex-direction: column; }
.map-description{
      display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    color: #434343;
}
.map-description svg {
    flex-shrink: 0;
}
.map-body { height: 600px; border-radius: var(--radius-card); overflow: hidden; }
.map-map { height: 100%; position: relative; }
#verve-map { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Leaflet overrides */
.leaflet-control-attribution { font-size: 10px !important; }
.leaflet-control-zoom { border-radius: 10px !important; overflow: hidden; border: none !important; box-shadow: 0 2px 8px rgba(0,0,0,.12) !important; }
.leaflet-control-zoom a { border-bottom-color: var(--border-light) !important; color: var(--primary) !important; font-size: 16px !important; line-height: 28px !important; width: 28px !important; height: 28px !important; }
.leaflet-popup-content-wrapper { padding: 0 !important; border-radius: 16px !important; overflow: hidden !important; box-shadow: 0 8px 32px rgba(0,0,0,.16) !important; min-width: 220px; }
.leaflet-popup-content { margin: 0 !important; }
.leaflet-popup-close-button { display: none !important; }
.leaflet-popup-tip-container { display: none !important; }
.popup-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: #402020 !important; text-decoration: none;
  border: 1px solid #402020; border-radius: 20px; padding: 9px 14px;
  transition: opacity .18s; margin-top: 4px;
  width: 100%; justify-content: center;
}
.popup-btn:hover { opacity: .7; }
.popup-btn svg { transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94); flex-shrink: 0; }
.popup-btn:hover svg { transform: rotate(45deg); }
/* Markers — single Verve colour, body font */
.verve-pin {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 8px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--white); white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.2); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 2px solid rgba(255,255,255,.3);
}
.verve-pin:hover { transform: scale(1.06); box-shadow: 0 4px 16px rgba(0,0,0,.28); }
.verve-pin.active { transform: scale(1.12); box-shadow: 0 6px 20px rgba(64,32,32,.4); border-color: var(--white); }

/* Property pin shown after drilling into a suburb */
.purchase-pin { line-height: 0; filter: drop-shadow(0 3px 6px rgba(0,0,0,.28)); cursor: pointer; transition: transform .15s; }
.purchase-pin:hover { transform: scale(1.12); }

/* Popup shown for a drilled-in property */
.purchase-popup { font-family: var(--font-body); overflow: hidden; min-width: 220px; }
.purchase-popup-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.purchase-popup-body { padding: 14px 16px 16px; }
.purchase-popup-suburb { font-family: var(--font-heading, var(--font-body)); font-size: 17px; font-weight: 400; color: #1a1a1a; margin-bottom: 6px; }
.purchase-popup-agent { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.purchase-popup-agent-photo { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.purchase-popup-agent .purchase-popup-agent-photo{
  width: 24px; height: 24px;
  object-fit: cover;
}
.purchase-popup-agent-name { font-size: 13px; font-weight: 500; color: #664d4d; }

/* "Back to all suburbs" button — sits over the map, hidden until drilled in */
.map-back-btn {
  position: absolute; top: 16px; left: 16px; z-index: 500;
  display: none; align-items: center; gap: 6px;
  padding: 8px 14px 8px 10px; border: none; border-radius: var(--radius-pill);
  background: var(--white); color: var(--text-dark, #402020);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.18); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.map-back-btn.visible { display: inline-flex; }
.map-back-btn:hover { transform: translateX(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.24); }
.market-photo { position: relative; }

