/*------------------------Suburb profile (landing)--------------------------*/
  :root {
    --primary: #BA8E23;
    --dark: #0f172a;
    --light: #f8fafc;
    --card: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.2);
    --ink: #0e1b2c;
    --ink-soft: #2c3a4d;
    --gold: #BA8E23;
    --gold-soft: #c9a96b;
    --gold-light: #e9dcc1;
    --paper: #f6f5f2;
    --paper-2: #eceae4;
    --line: #dad7ce;
    --muted: #6b7585;
    --radius: 22px;
  }

  .container {
    max-width: 1220px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* sticky-search */
  .sticky-search-inner {
    position: relative;
    max-width: 700px;
    margin: auto;
  }

  .sticky-search-input {
    background: #fff;
    height: 50px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
  }

  .sticky-search-input input {
    padding: 0;
    border: none;
  }

  .sticky-search-input svg {
    width: 20px;
    height: auto;
  }

  #suggestions {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    max-height: 236px;
    overflow-y: auto;
  }

  .suggestion {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #ebebeb;
    font-size: 15px;
    transition: all 0.3s;
  }

  .suggestion:hover {
    background: #f5f5f5;
  }

  .sticky-search-header {
    text-align: center;
    margin: 0 auto 30px;
  }

  .sticky-heading {
    font-size: 62px;
    margin: 20px 0;
    font-weight: 700;
    text-transform: capitalize;
  }

  .highlited-text {
    display: block;
    color: var(--e-global-color-primary) !important;
  }

  .sticky-desc {
    margin: 0 auto;
    font-size: 18px;
    max-width: 450px;
  }

  .suggestion:last-child {
    border: none;
  }

  .sticky-search {
    padding: 80px 0;
    background-image: url(/wp-content/uploads/2026/06/suburb-profiles-banner-bg.webp);
    background-position: bottom;
    align-content: center;
    position: relative;
    height: calc(100vh - 85px);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 580px;
  }

  .sticky-search:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.65;
  }

  .sticky-search-header * {
    color: #fff;
  }

  .sticky-header-tagline svg {
    width: 24px;
    height: auto;
    fill: var(--e-global-color-primary);
  }

  .sticky-header-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff29;
    padding: 5px 15px;
    border: 1px solid #ffffff26;
    border-radius: 50px;
    backdrop-filter: blur(2px);
    text-transform: capitalize;
    font-size: 15px;
  }

  .popular-tags ul {
    padding: 0 0 0 14px;
    margin: 0;
  }

  .popular-tags li {
    display: inline-block;
    margin-right: 7px;
  }

  .popular-tags {
    display: flex;
    align-items: center;
    color: #fff;
    margin: 25px 0 0;
  }

  .popular-tags li a {
    display: inline-block;
    background: #e3e3e3;
    padding: 3px 14px;
    border-radius: 50px;
    color: #000;
    transition: all 0.3s;
  }

  .popular-tags li a:hover {
    background: var(--e-global-color-primary);
    color: #fff;
  }

  /* Suburb Report steps */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0;
    animation: rise 0.7s ease forwards;
  }

  .eyebrow::before,
  .eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }

  .eyebrow::after {
    transform: scaleX(-1);
  }

  .heading {
    text-align: center;
    margin-bottom: 50px;
  }

  .title {
    font-weight: 600;
    line-height: 1.05;
    opacity: 0;
    margin: 10px 0 0;
    font-size: 42px;
    animation: rise 0.7s ease 0.08s forwards;
  }

  .title em {
    font-style: normal;
    color: var(--gold);
  }

  .section {
    margin-block: 80px;
  }

  .steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
  }

  .track {
    position: absolute;
    top: 56px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    border-radius: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
    transform: scaleX(0);
    transform-origin: center;
    animation: draw 1.1s cubic-bezier(.2, .7, .3, 1) 0.45s forwards;
    z-index: 0;
  }

  .track::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 56px;
    height: 4px;
    border-radius: 4px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), var(--gold-soft), transparent);
    filter: drop-shadow(0 0 6px rgba(186, 142, 35, 0.45));
    animation: travel 4.5s ease-in-out 1.4s infinite;
  }

  .flow {
    position: absolute;
    top: 56px;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    margin-left: -11px;
    color: var(--gold);
    opacity: 0;
    animation: rise 0.6s ease forwards;
    z-index: 2;
  }

  .flow svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .flow.f1 {
    left: 33.33%;
    animation-delay: 0.9s;
  }

  .flow.f2 {
    left: 66.66%;
    animation-delay: 1.05s;
  }

  .step {
    position: relative;
    text-align: center;
    z-index: 1;
    opacity: 0;
    animation: rise 0.7s ease forwards;
  }

  .step:nth-child(1) {
    animation-delay: 0.30s;
  }

  .step:nth-child(2) {
    animation-delay: 0.45s;
  }

  .step:nth-child(3) {
    animation-delay: 0.60s;
  }

  .tile {
    position: relative;
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff 0%, #f4f2ec 100%);
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(14, 27, 44, 0.04), 0 16px 32px -20px rgba(14, 27, 44, 0.30);
    transition: transform .5s cubic-bezier(.2, .7, .3, 1), box-shadow .5s ease, background .5s ease, border-color .5s ease;
  }

  .tile::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: calc(var(--radius) + 7px);
    border: 1.5px solid var(--gold);
    opacity: 0;
    transform: scale(0.82);
    transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .3, 1);
  }

  .tile svg.icon {
    width: 42px;
    height: 42px;
    stroke: var(--ink);
    transition: stroke .5s ease, transform .5s ease;
    overflow: visible;
  }

  .step h3 {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .step p {
    max-width: 320px;
    margin: 0 auto;
  }

  .step:hover .tile {
    transform: translateY(-10px);
    background: linear-gradient(180deg, #17273c 0%, var(--ink) 100%);
    border-color: var(--ink);
    box-shadow: 0 30px 46px -24px rgba(14, 27, 44, 0.6);
  }

  .step:hover .tile::before {
    opacity: 1;
    transform: scale(1);
  }

  .step:hover .tile svg.icon {
    stroke: #fff;
  }

  .step:hover .draw {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: dash 0.7s ease forwards;
  }

  .step:hover .pop {
    transform: scale(1.12);
    transform-origin: center;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(22px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes draw {
    to {
      transform: scaleX(1);
    }
  }

  @keyframes dash {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes travel {
    0% {
      left: -6%;
      opacity: 0;
    }

    12% {
      opacity: 1;
    }

    88% {
      opacity: 1;
    }

    100% {
      left: 102%;
      opacity: 0;
    }
  }

  /* ---------- Suburb cta banner ---------- */
  .banner {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(https://propertypriceguide.net.au/wp-content/uploads/2026/04/search-image.webp);
    background-size: cover;
    background-position: center right;
  }

  .veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 20%, rgba(14, 27, 44, 0.92) 45%, rgba(14, 27, 44, 0.55) 66%, rgba(14, 27, 44, 0.15) 90%, rgba(14, 27, 44, 0.05) 100%);
  }

  .banner .content {
    position: relative;
    z-index: 3;
    padding: 52px 56px;
    max-width: 620px;
  }

  .headline {
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    margin: 0 0 15px;
    text-transform: capitalize;
  }

  .headline .gold {
    display: block;
    color: var(--gold);
  }

  .cta {
    background-color: var(--e-global-color-primary);
    font-size: 18px;
    padding: 15px 25px;
    color: #fff;
    border-radius: 3px;
    line-height: 1;
    display: inline-block;
    transition: all 0.3s;
  }

  .cta:hover {
    background: #fff;
    color: var(--e-global-color-primary);
  }

  @media (max-width: 991px) {

    .title,
    .sticky-heading {
      font-size: 36px;
    }

    .headline {
      font-size: 30px;
    }

    .section {
      margin-block: 60px;
    }

    .tile {
      width: 100px;
      height: 100px;
    }

    .banner .content {
      padding: 40px;
    }
  }

  @media (max-width: 767px) {
    .sticky-search {
      padding: 60px 0;
      height: calc(100vh - 55px);
      min-height: 500px;
    }

    .sticky-heading {
      font-size: 36px;
    }

    .title {
      font-size: 26px;
    }

    .steps {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .track,
    .flow {
      display: none;
    }

    .banner .content {
      padding: 30px;
      text-align: center;
    }

    .headline {
      font-size: 22px;
    }

    .cta {
      font-size: 15px;
      padding: 14px 20px;
    }

    .popular-tags {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .popular-tags ul {
      padding: 0;
    }

    .popular-tag {
      display: none;
    }

    .veil {
      background: #000000bf;
    }
  }


  .sp-rent-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
  }

  .sp-rent-table thead th {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    font-weight: 600;
    text-align: left;
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .sp-rent-table thead th:nth-child(2) {
    text-align: right;
  }

  .sp-rent-table tbody td {
    padding: 11px 10px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: middle;
  }

  .sp-rent-table tbody tr:last-child td {
    border-bottom: none;
  }

  .sp-rent-table .rt-num {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
  }

  .sp-rent-table tbody tr.peak td {
    color: #3AA497;
    font-weight: 700;
  }

  .sp-rent-table .rt-share {
    width: 42%;
    white-space: nowrap;
  }

  .rt-bar {
    display: inline-block;
    width: calc(100% - 52px);
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    vertical-align: middle;
    overflow: hidden;
  }

  .rt-fill {
    display: block;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  }

  .sp-rent-table tbody tr.peak .rt-fill {
    background: linear-gradient(90deg, #3AA497, #2E9488);
  }

  .rt-pct {
    display: inline-block;
    width: 44px;
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-left: 6px;
  }

  @media (max-width: 767px) {
    .sp-rent-table .rt-bar {
      display: none;
    }

    .sp-rent-table .rt-share {
      width: auto;
      text-align: right;
    }
  }

  .tn-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
  }

  .sp-tenure-table tfoot td {
    padding: 13px 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .sp-tenure-table tfoot .rt-num {
    text-align: right;
  }


 /* second css */
  .sp {
    --ink: #0e1b2c;
    --ink-2: #162a42;
    --ink-soft: #43536a;
    --gold: #ba8e23;
    --gold-deep: #9c7a1e;
    --gold-soft: #c9a96b;
    --gold-line: #e4d3ac;
    --gold-tint: #f3e7c7;
    --sand: #f6f2ea;
    --sand-2: #efe8db;
    --paper: #ffffff;
    --line: #e7decd;
    --line-2: #efeae0;
    --muted: #74808f;
    color: var(--ink);
    line-height: 1.6;
  }

  .sp * {
    box-sizing: border-box;
  }

  .sp .container {
    max-width: 1180px;
  }

  /* section heads */

  .sp .sec-sub {
    color: var(--ink-soft);
    max-width: 620px;
    font-size: 16px;
    margin: 17px auto 0;
  }

  /* MASTHEAD */
  .sp-masthead {
    background:
      radial-gradient(1100px 480px at 78% -8%,
        rgba(186, 142, 35, 0.3),
        transparent 60%),
      linear-gradient(180deg,
        rgba(14, 27, 44, 0.82) 0%,
        rgba(11, 22, 35, 0.93) 100%),
      var(--hero-img, linear-gradient(180deg, #0e1b2c, #0b1623)) center/cover no-repeat;
    color: #fff;
    padding: 80px 0 0;
    overflow: hidden;
  }

  .sp-crumbs {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
  }

  .sp-coord {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
  }

  .sp-coord .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
  }

  .sp-name {
    font-weight: 600;
    font-size: 64px;
    line-height: 0.98;
    margin: 14px 0 4px;
    color: #fff;
  }

  .sp-name em {
    font-style: italic;
    color: var(--gold-soft);
  }

  .sp-tag {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 80%;
    margin-top: 14px;
  }

  .sp-metrics {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sp-metrics .m {
    padding: 26px 30px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sp-metrics .m:last-child {
    border-right: none;
    padding-right: 0;
  }

  .sp-mlabel {
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  p.sub {
    color: #d1d1d1;
  }

  .sp-mbig {
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin-top: 8px;
    color: #fff;
  }

  .sp-mbig small {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
  }

  .sp-mmid {
    font-size: 23px;
    font-weight: 600;
    margin-top: 10px;
  }

  .sp-gauge {
    margin-top: 20px;
  }

  .sp-gauge .bar {
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.16);
    position: relative;
  }

  .sp-gauge .fill {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  }

  .sp-gauge .pin {
    position: absolute;
    top: -4px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--gold);
  }

  .sp-gauge .ends {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }

  .sp-metrics .m:first-child {
    padding-left: 0;
  }

  /* AT A GLANCE */
  .sp-glance {
    background: var(--gold-soft);
    border-bottom: 1px solid var(--line);
  }

  .sp-glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .sp-gcell {
    padding: 30px 28px;
    border-right: 1px solid var(--line-2);
  }

  .sp-gcell:first-child {
    padding-left: 0;
  }

  .sp-gcell:last-child {
    border-right: none;
    padding-right: 0;
  }

  .sp-gl {
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
  }

  .sp-gv {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.05;
    margin-top: 6px;
    color: #fff;
  }

  .sp-gv span {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
  }

  /* RENTALS BY TYPE */
  .sp-types {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sp-type-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.25s;
    border-left: 4px solid #ba8e23;
    width: calc(33.3% - 12px);
  }

  .sp-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -20px rgba(14, 27, 44, 0.4);
    border-color: var(--gold-line);
  }

  .sp-type-card .tl {
    font-weight: 600;
    font-size: 16px;
  }

  .sp-type-card .tn {
    font-size: 34px;
    font-weight: 600;
    color: var(--gold);
  }

  /* TRENDS TABLE */
  .sp-table-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 30px;
  }

  .sp table.sp-mt {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
  }

  .sp table.sp-mt thead th {
    font-size: 14px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 600;
    padding: 10px 20px;
    background: var(--sand-2);
    border-bottom: 1px solid var(--line);
    border-right-color: #e1d6c4;
  }

  .sp table.sp-mt thead th:last-child,
  .sp table.sp-mt td.tg {
    text-align: right;
  }

  .sp table.sp-mt tbody td {
    padding: 10px 20px;
    border-bottom: 1px solid var(--line-2);
    font-size: 14px;
    vertical-align: middle;
    background: #fff;
  }

  .sp .sp-pt-name {
    font-weight: 600;
  }

  .sp .sp-pt-name .pin {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--gold);
    margin-right: 10px;
    vertical-align: middle;
    transform: rotate(45deg);
    margin-top: -3px;
  }

  .sp .sp-rent-cell {
    font-weight: 600;
    font-size: 18px;
  }

  .sp .sp-rent-cell small {
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
  }

  .sp .sp-avail-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 50px;
    line-height: normal;
    background: rgba(46, 148, 136, .13);
    color: #1f6b62;
    border: 1px solid rgba(46, 148, 136, .25);
  }

  /* keep your existing toggle class working, restyled inside .sp */
  .sp .toggle-market-performance {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #d3ab63;
    background: #fff;
    color: #d3ab63;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
  }

  .sp .toggle-market-performance.active {
    background: var(--ink);
    color: #fff !important;
    border-color: var(--ink);
  }

  .sp table.sp-mt td:last-child {
    width: 70px;
    text-align: right;
  }

  .sp tr.suburb-profile-row td {
    padding: 0 !important;
    border-bottom: 1px solid var(--line-2);
    background: var(--sand) !important;
    text-align: left !important;
  }

  .sp tr.suburb-profile-row .inner {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }

  .sp .dcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
  }

  .sp .dcard.hero {
    background: linear-gradient(150deg, var(--gold), #d9bd6e);
    border: none;
    color: #fff;
  }

  .sp .dcard .dl {
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .sp .dcard.hero .dl {
    color: rgba(255, 255, 255, 0.9);
  }

  .sp .dcard .dv {
    font-size: 26px;
    font-weight: 600;
    margin-top: 6px;
    line-height: normal;
  }

  .sp tr.suburb-profile-row.d-none {
    display: none;
  }

  .sp .sp-empty {
    text-align: center;
    padding: 36px;
    color: var(--muted);
  }

  /* CHARTS */
  .sp-chart-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 30px 24px;
    margin-top: 30px;
  }

  .sp-tenure-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
  }

  .sp-tenure-chart {
    max-width: 300px;
    margin: auto;
    position: relative;
  }

  .sp-tlegend {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sp-tlegend li {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line-2);
  }

  .sp-tlegend li:last-child {
    border-bottom: none;
  }

  .sp-tlegend .sw {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .sp-tlegend .lab {
    flex: 1;
    font-size: 14px;
  }

  .sp-tlegend .num {
    font-size: 16px;
  }

  .sp-tlegend .pct {
    color: var(--muted);
    font-size: 14px;
    width: 40px;
    text-align: right;
  }

  .sp-tlegend li:last-child {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }

  /* MAP */
  .sp-map {
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 22px;
    background: var(--sand-2);
  }

  .sp-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  /* POPULATION */
  .sp-pop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
  }

  .sp-pop-card {
    background: linear-gradient(180deg, #fff, var(--sand));
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .sp-pop-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  }

  .sp-pop-card .pl {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .sp-pop-card .pv {
    font-size: 40px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-top: 10px;
  }

  /* NEARBY */
  .sp .nearby-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .nearby-suburb-section .heading {
    margin-bottom: 30px;
  }

  .sp .nearby-tags a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    padding: 7px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--line);
    transition: 0.25s;
    display: inline-block;
    margin: 0;
  }

  .sp .nearby-tags a:hover {
    border-color: var(--gold-line);
    background: #fff;
  }

  .sp .nearby-tags a.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .sp .nearby-tags-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 22px;
  }

  .sp .nearby-suburb-grid {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
  }

  .sp .nearby-suburb-icon {
    height: 20px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(86%) saturate(426%) hue-rotate(5deg) brightness(88%) contrast(83%);
  }

  .sp .nearby-suburb-text {
    font-size: 20px;
    margin: 0;
  }

  /* CTA FORM */
  .sp-cta-band {
    background: linear-gradient(110deg, #0e1b2ccf 0%, #0e1b2cde 42%, rgba(14, 27, 44, 0.6) 100%), url(/wp-content/uploads/2026/06/cta-banner-bg.jpg) center / cover;
    border-radius: 22px;
    padding: 52px;
    color: #fff;
    align-items: center;
  }

  .sp-cta-band h2 {
    line-height: 1.05;
    color: #fff;
    margin: 0;
  }

  .find-property-cta-section .heading {
    margin-bottom: 30px;
  }

  .sp-cta-band .sec-sub {
    color: #ffffff;
  }

  .sp-cta-band h2 em {
    font-style: italic;
    color: var(--gold-soft);
  }

  .sp-cta-band p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 14px;
    max-width: 420px;
  }

  .sp-form-card input,
  .sp-form-card select,
  .sp-form-card textarea {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 15px;
    background: var(--sand);
    margin-bottom: 10px;
  }

  .sp-form-card .wpcf7-submit,
  .sp-form-card button {
    height: 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: 0.25s;
    width: 100%;
  }

  .sp-form-card .wpcf7-submit:hover,
  .sp-form-card button:hover {
    background: var(--gold-deep);
  }

  .find-property-cta-section .sp-form-card {
    max-width: 660px;
    margin: auto;
  }

  .find-property-cta-section .rent-form p br {
    display: none;
  }

  /* --- Contact Form 7 layout inside the gold card --- */
  .sp-form-card .rent-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sp-form-card .rent-form>* {
    width: 100%;
    margin: 0;
  }

  .sp-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
  }

  .find-property-cta-section .rent-form p {
    max-width: 100%;
    margin: 0;
  }

  .find-property-cta-section .rent-form input {
    background: #fff !important;
  }

  .find-property-cta-section .sp-form-card .wpcf7-acceptance label {
    color: #ffffff;
  }

  body .find-property-cta-section .cf7sr-g-recaptcha {
    margin-bottom: 0;
    margin-top: 15px;
  }

  .find-property-cta-section .rent-form input.wpcf7-submit {
    background: var(--e-global-color-primary) !important;
    margin: 0;
    color: #fff;
  }

  /* address full width */
  .sp-form-card .ppg-address {
    width: 100%;
  }

  /* bedrooms / bathrooms / garage → 3 in a row */
  .sp-form-card .ppg-step.col-three-1 {
    width: calc(33.333% - 8px);
  }

  /* inputs + selects */
  .sp-form-card input[type="text"],
  .sp-form-card input[type="email"],
  .sp-form-card input[type="tel"],
  .sp-form-card select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 15px;
    background: var(--sand);
    color: var(--ink);
    margin: 0;
  }

  .sp-form-card input:focus,
  .sp-form-card select:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
  }

  .sp-form-card select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2374808F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 38px;
  }

  /* acceptance checkbox row */
  .sp-form-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    accent-color: var(--gold);
    margin: 2px 0 0;
  }

  .sp-form-card .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
    cursor: pointer;
  }

  .sp-form-card .wpcf7-list-item {
    margin: 0;
  }

  /* recaptcha + submit spacing */
  .sp-form-card .wpcf7-recaptcha,
  .sp-form-card .g-recaptcha {
    margin: 6px 0;
  }

  .sp-form-card .ppg-step.step-8 {
    margin-top: 4px;
  }

  /* CF7 validation messages */
  .sp-form-card .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
  }

  .sp-form-card .wpcf7-response-output {
    border-radius: 10px !important;
    font-size: 13px;
    margin: 6px 0 0 !important;
    padding: 10px 14px !important;
  }

  @media (max-width: 560px) {
    .sp-form-card .ppg-step.col-three-1 {
      width: 100%;
    }
  }

  /* RIGHT BUYERS */
  .sp-buyers-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .sp-buyers-row img {
    width: 100%;
    border-radius: 18px;
    display: block;
  }

  .sp-buyers-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 26px;
  }

  .sp-buyers-list li {
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    display: inline-flex;
    gap: 5px;
  }

  .sp-buyers-list svg {
    width: 18px;
    height: 18px;
    color: #bc8520;
    flex: none;
    margin-top: 2px;
  }

  .right-buyers .title {
    font-size: 34px;
  }

  /* HOW WE HELP */
  .sp-help {
    background: var(--ink);
    color: #fff;
    padding: 90px 0;
    margin-top: 0;
  }

  .sp-help .sec-title {
    color: #fff;
    text-align: center;
  }

  .sp-help .eyebrow {
    color: var(--gold-soft);
  }

  .sp-help .top {
    text-align: center;
    margin-bottom: 60px;
  }

  .process-section .title {
    color: #fff;
  }

  .sp-zig {
    display: flex;
    border-top: 1px solid #f4eee224;
    padding: 40px 0px;
    gap: 80px;
  }

  .sp-zig:last-child {
    padding-bottom: 0;
  }

  .sp-zig:nth-child(even) .ztext {
    order: 2;
  }

  .sp-znum {
    font-size: 60px;
    font-weight: 500;
    color: var(--gold-soft);
    line-height: 1;
    font-style: italic;
  }

  .sp-zig h3 {
    font-size: 26px;
    font-weight: 500;
    margin: 0px 0 14px;
    color: #fff;
  }

  .sp-zline {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 0 18px;
  }

  .sp-zig p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0;
  }

  .sp-zig .zimg {
    border-radius: 18px;
    overflow: hidden;
    line-height: 0;
  }

  .sp-zig .zimg img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: brightness(0.9);
  }



  /* ===== HOUSEHOLDS (dark, side-by-side) — matches Image 1 ===== */
  .sp-households {
    background: var(--ink);
    padding: 90px 0;
    color: #fff;
  }

  .sp-households .heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .sp-households .eyebrow {
    color: var(--gold-soft);
  }

  .sp-households .title {
    color: #fff;
  }

  .sp-households .sec-sub {
    color: rgba(255, 255, 255, 0.62);
  }

  .sp-hh-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: stretch;
  }

  .sp-hh-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px;
  }

  .sp-hh-title {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin: 0;
  }

  .sp-hh-sub {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 6px 0 26px;
  }

  /* doughnut + centred total */
  .sp-households .sp-tenure-chart {
    max-width: 260px;
    margin: 10px auto 15px;
    position: relative;
  }

  .sp-tenure-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .sp-tenure-center .tc-num {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
  }

  .sp-tenure-center .tc-lab {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
  }

  /* legend on dark */
  .sp-households .sp-tlegend li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
  }

  .sp-households .sp-tlegend .lab {
    color: #fff;
  }

  .sp-households .sp-tlegend .num {
    color: #fff;
  }

  .sp-households .sp-tlegend .pct {
    color: rgba(255, 255, 255, 0.5);
  }


  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .sp-name {
      font-size: 56px;
    }

    .sp-households .sp-tenure-chart {
      max-width: 220px;
    }

    .sp-gcell {
      padding: 20px 25px;
    }

    .sp-buyers-row {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .sp-zig {
      padding: 30px 0px;
      gap: 50px;
    }

    .sp .sec-sub {
      font-size: 16px;
      max-width: 100%;
    }

    .sp-tenure-center .tc-num {
      font-size: 26px;
    }

    .sp-tenure-center .tc-lab {
      font-size: 10px;
      letter-spacing: 2px;
    }

    .sp-hh-card {
      padding: 20px;
    }

    .sp-hh-title {
      font-size: 20px;
    }

    .sp-households .sp-tenure-chart {
      max-width: 180px;
    }

    .sp .dcard .dv {
      font-size: 18px !important;
    }

    .sp .dcard {
      padding: 12px;
    }

    .sp-gv {
      font-size: 26px;
    }

    .sp-households .sp-tlegend li {
      padding: 6px 0;
    }

    .sp-map {
      height: 340px;
    }

    .heading {
      margin-bottom: 40px;
    }

    .sp .nearby-suburb-grid {
      padding: 20px;
    }

    .sp .nearby-suburb-text {
      font-size: 16px;
      line-height: normal;
    }

    .sp-zig p {
      font-size: 14px;
    }

    .sp-zig h3 {
      font-size: 22px;
    }

    .sp-pop-card .pv {
      font-size: 30px;
    }
  }

  @media (max-width: 767px) {
    .sp-metrics {
      grid-template-columns: 1fr;
    }

    .sp-metrics .m {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      padding: 30px 0;
    }

    .sp-glance-grid {
      grid-template-columns: 1fr 1fr;
    }

    .sp-gcell:nth-child(2) {
      border-right: none;
    }

    .sp-gcell {
      border-bottom: 1px solid var(--line-2);
      padding: 20px !important;
    }

    .sp-types,
    .sp-pop-grid {
      grid-template-columns: 1fr;
    }

    .sp-tenure-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .sp .nearby-tags-content {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .sp-cta-band {
      grid-template-columns: 1fr;
      padding: 32px 20px;
    }

    .sp-buyers-row {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .sp-zig {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .sp-zig .zimg img {
      height: 240px;
    }

    .sp tr.suburb-profile-row .inner {
      grid-template-columns: 1fr;
      padding: 20px 10px;
      gap: 10px;
    }

    .sp .dcard .dv {
      font-size: 16px !important;
    }

    .sp-hh-grid {
      grid-template-columns: 1fr;
    }

    .sp-masthead {
      padding: 60px 0 0;
    }

    .sp-coord {
      font-size: 12px;
      letter-spacing: 1px;
    }

    .sp-crumbs {
      font-size: 12px;
    }

    .sp-name {
      font-size: 36px;
    }

    .sp-tag {
      font-size: 15px;
      max-width: 100%;
      margin-bottom: 0 !important;
    }

    .sp-metrics {
      margin-top: 30px;
    }

    .sp-mbig small {
      font-size: 16px;
    }

    .sp-mbig {
      font-size: 36px;
    }

    .sp-glance .container {
      padding: 0;
    }

    .sp-type-card {
      width: 100%;
    }

    .sp .sec-title,
    .sp-cta-band h2 {
      font-size: 26px;
    }

    .sp-buyers-list {
      grid-template-columns: 1fr;
    }

    .sp table.sp-mt thead th,
    .sp table.sp-mt tbody td {
      padding: 8px;
      font-size: 12px;
      letter-spacing: 0;
    }

    .sp .sp-avail-pill {
      font-size: 11px;
      padding: 4px 8px;
    }

    .sp table.sp-mt td:last-child {
      width: 50px;
    }

    .sp .toggle-market-performance {
      width: 24px;
      height: 24px;
      font-size: 16px;
    }

    .sp-households,
    .sp-help {
      padding: 60px 0;
    }

    .sp .nearby-tags a {
      font-size: 13px;
      padding: 5px 10px;
    }

    .sp .nearby-tags {
      gap: 6px;
    }

    .sp .sec-sub {
      font-size: 14px;
    }

    .right-buyers .title {
      font-size: 26px;
      line-height: normal;
    }

    .sp-znum {
      font-size: 40px;
    }

    .sp-zig h3 {
      font-size: 18px;
    }
  }
