/* T-Squared suburb × service pages
   Brand system aligned to t-squared-app (Clash Display + General Sans).
   Loaded after landing-pages.css. One template for every live matrix page. */

@font-face {
  font-family: "Clash Display";
  src: url("/assets/fonts/clash-display-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("/assets/fonts/clash-display-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("/assets/fonts/clash-display-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("/assets/fonts/clash-display-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("/assets/fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body.lp-suburb-page {
  --forest: #3d664e;
  --forest-deep: #2b4a38;
  --forest-light: #447e5c;
  --sand: #c9af8e;
  --sand-deep: #b89a75;
  --stone: #f4f5f3;
  --stone-deep: #e7e9e5;
  --charcoal: #1a1f1c;
  --charcoal-soft: #232a26;
  --muted: #6b7570;
  --line: #d9ddd7;
  --radius: 10px;
  --font-display: "Clash Display", "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "General Sans", "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-img: url("/assets/images/tsquared-hero-2026-1600.webp?v=3");

  margin: 0;
  /* Full-bleed hero under fixed nav (landing-pages.css sets body padding-top: 72px). */
  padding-top: 0 !important;
  font-family: var(--font-sans);
  background: var(--stone);
  color: var(--charcoal);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.lp-suburb-page a { color: var(--forest); }
body.lp-suburb-page a:hover { color: var(--forest-deep); }

/* ── Nav on stone pages ── */
body.lp-suburb-page #site-nav {
  background: rgba(244, 245, 243, 0.72);
  border-bottom: 1px solid rgba(217, 221, 215, 0.7);
}

/* ── Buttons (no pills) ── */
body.lp-suburb-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
body.lp-suburb-page .btn:hover { text-decoration: none; transform: translateY(-1px); }
body.lp-suburb-page .btn-primary {
  background: var(--sand);
  color: var(--charcoal);
  border-color: var(--sand);
}
body.lp-suburb-page .btn-primary:hover {
  background: var(--sand-deep);
  color: var(--charcoal);
}
body.lp-suburb-page .btn-outline {
  background: transparent;
  color: #f4f5f3;
  border-color: rgba(244, 245, 243, 0.55);
}
body.lp-suburb-page .btn-outline:hover {
  background: rgba(244, 245, 243, 0.1);
  color: #fff;
}
body.lp-suburb-page .btn-accent {
  background: var(--forest);
  color: #f4f5f3;
  border-color: var(--forest);
}
body.lp-suburb-page .btn-accent:hover {
  background: var(--forest-deep);
  color: #fff;
}

/* ── Full-bleed photographic hero ── */
body.lp-suburb-page .sp-hero {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 108px 24px 56px;
  background:
    linear-gradient(180deg, rgba(26, 31, 28, 0.28) 0%, rgba(26, 31, 28, 0.52) 42%, rgba(26, 31, 28, 0.88) 100%),
    var(--hero-img) center 38% / cover no-repeat;
  color: #f4f5f3;
  overflow: hidden;
}
body.lp-suburb-page .sp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
}
body.lp-suburb-page .sp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(70% 55% at 80% 20%, rgba(201, 175, 142, 0.18), transparent 60%);
  pointer-events: none;
}
body.lp-suburb-page .sp-brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 12px;
}
body.lp-suburb-page .sp-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  max-width: 14ch;
  text-wrap: balance;
  color: #f4f5f3;
}
body.lp-suburb-page .sp-hero h1 .em {
  color: var(--sand);
  font-style: normal;
}
body.lp-suburb-page .sp-hero-lead {
  margin: 0 0 20px;
  max-width: 36ch;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.5;
  color: rgba(244, 245, 243, 0.88);
}
body.lp-suburb-page .sp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Trust strip (below hero, not on it) ── */
body.lp-suburb-page .sp-trust {
  background: var(--charcoal);
  color: rgba(244, 245, 243, 0.88);
  padding: 14px 24px;
}
body.lp-suburb-page .sp-trust-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: flex-start;
}
body.lp-suburb-page .sp-trust span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 245, 243, 0.82);
}
body.lp-suburb-page .sp-trust span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--sand);
  vertical-align: 1px;
}

/* ── Shared section shell ── */
body.lp-suburb-page .sp-section {
  padding: clamp(28px, 3.8vw, 44px) 24px;
}
body.lp-suburb-page .sp-section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
body.lp-suburb-page .sp-section.alt {
  background: var(--stone-deep);
}
body.lp-suburb-page .sp-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 6px;
}
body.lp-suburb-page .sp-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 8px;
  max-width: 22ch;
  text-wrap: balance;
  color: var(--charcoal);
}
body.lp-suburb-page .sp-section h2 .accent { color: var(--forest); }
body.lp-suburb-page .sp-lead {
  margin: 0 0 14px;
  max-width: 48ch;
  font-size: 0.95rem;
  color: var(--muted);
}

body.lp-suburb-page .sp-breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 18px;
}
body.lp-suburb-page .sp-breadcrumb a { color: var(--forest); text-decoration: none; }
body.lp-suburb-page .sp-breadcrumb a:hover { text-decoration: underline; }

/* ── Visual included ── */
body.lp-suburb-page .sp-included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 12px;
  margin-top: 4px;
}
body.lp-suburb-page .sp-included-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
body.lp-suburb-page .sp-included-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}
body.lp-suburb-page .sp-included-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.2;
}
body.lp-suburb-page .sp-included-item span {
  display: block;
  margin-top: 3px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.35;
  max-width: none;
}
@media (max-width: 820px) {
  body.lp-suburb-page .sp-included { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  body.lp-suburb-page .sp-included { grid-template-columns: 1fr; }
}

/* ── Local snapshot ── */
body.lp-suburb-page .sp-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  margin-top: 4px;
}
body.lp-suburb-page .sp-snap {
  padding: 14px 14px;
  border-right: 1px solid var(--line);
}
body.lp-suburb-page .sp-snap:last-child { border-right: 0; }
body.lp-suburb-page .sp-snap dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 6px;
}
body.lp-suburb-page .sp-snap dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--charcoal);
}
@media (max-width: 820px) {
  body.lp-suburb-page .sp-snapshot { grid-template-columns: 1fr 1fr; }
  body.lp-suburb-page .sp-snap:nth-child(2n) { border-right: 0; }
  body.lp-suburb-page .sp-snap:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  body.lp-suburb-page .sp-snapshot { grid-template-columns: 1fr; }
  body.lp-suburb-page .sp-snap { border-right: 0; border-bottom: 1px solid var(--line); }
  body.lp-suburb-page .sp-snap:last-child { border-bottom: 0; }
}

/* ── Seasonal beat ── */
body.lp-suburb-page .sp-season {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(14px, 2.5vw, 24px);
  align-items: center;
}
body.lp-suburb-page .sp-season img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--stone-deep);
}
body.lp-suburb-page .sp-season p {
  margin: 0;
  max-width: 44ch;
  font-size: 1rem;
  color: var(--muted);
}
@media (max-width: 820px) {
  body.lp-suburb-page .sp-season { grid-template-columns: 1fr; }
  body.lp-suburb-page .sp-season img { max-height: 220px; width: 100%; }
}

/* ── Stars ── */
body.lp-suburb-page .sp-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
body.lp-suburb-page .sp-star {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 0 rgba(196, 138, 10, 0.25));
}
body.lp-suburb-page .sp-reviews-rating .sp-star {
  width: 22px;
  height: 22px;
}
body.lp-suburb-page .sp-quote .sp-star {
  width: 16px;
  height: 16px;
}

/* ── Proof / reviews ── */
body.lp-suburb-page .sp-reviews {
  background:
    linear-gradient(180deg, #2b4a38 0 4px, transparent 4px),
    #eef1ec;
  border-block: 1px solid var(--line);
  padding-block: clamp(28px, 3.8vw, 40px) !important;
}
body.lp-suburb-page .sp-reviews-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d5dbd3;
}
body.lp-suburb-page .sp-reviews .sp-eyebrow {
  color: #c99412;
  font-weight: 700;
}
body.lp-suburb-page .sp-reviews-head h2 {
  max-width: none;
  margin-bottom: 10px;
}
body.lp-suburb-page .sp-reviews-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid #d5dbd3;
  border-radius: var(--radius);
}
body.lp-suburb-page .sp-reviews-rating strong {
  color: var(--charcoal);
  font-size: 1.05rem;
}
body.lp-suburb-page .sp-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
}
body.lp-suburb-page .sp-quote {
  margin: 0;
  padding: 14px 14px 12px;
  border: 1px solid #d0d6ce;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(26, 31, 28, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100%;
}
body.lp-suburb-page .sp-quote .sp-star {
  width: 16px;
  height: 16px;
}
body.lp-suburb-page .sp-quote p {
  margin: 0;
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--charcoal);
  max-width: none;
}
body.lp-suburb-page .sp-quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
body.lp-suburb-page .sp-quote footer strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}
@media (max-width: 900px) {
  body.lp-suburb-page .sp-proof { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body.lp-suburb-page .sp-proof { grid-template-columns: 1fr; }
}

/* ── Localities ── */
body.lp-suburb-page .sp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
body.lp-suburb-page .sp-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
}
a.sp-chip:hover {
  border-color: var(--forest);
  color: var(--forest);
  text-decoration: none;
}
body.lp-suburb-page .sp-chip.is-feature {
  background: var(--forest);
  border-color: var(--forest);
  color: #f4f5f3;
}

/* ── FAQ ── */
body.lp-suburb-page .sp-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
}
body.lp-suburb-page .sp-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
body.lp-suburb-page .sp-faq details:last-child { border-bottom: 0; }
body.lp-suburb-page .sp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
body.lp-suburb-page .sp-faq summary::-webkit-details-marker { display: none; }
body.lp-suburb-page .sp-faq summary::after {
  content: "+";
  float: right;
  color: var(--forest);
  font-weight: 500;
}
body.lp-suburb-page .sp-faq details[open] summary::after { content: "–"; }
body.lp-suburb-page .sp-faq details p {
  margin: 0 0 14px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Cross-link mesh ── */
body.lp-suburb-page .sp-mesh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
body.lp-suburb-page .sp-mesh-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
body.lp-suburb-page .sp-mesh-link:hover {
  border-color: var(--forest);
  text-decoration: none;
  transform: translateY(-1px);
}
body.lp-suburb-page .sp-mesh-link.is-current {
  border-color: var(--forest);
  background: rgba(61, 102, 78, 0.06);
  pointer-events: none;
}
body.lp-suburb-page .sp-mesh-link .mesh-kicker {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
body.lp-suburb-page .sp-mesh-link .mesh-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.lp-suburb-page .sp-mesh-block + .sp-mesh-block { margin-top: 18px; }
@media (max-width: 900px) {
  body.lp-suburb-page .sp-mesh { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  body.lp-suburb-page .sp-mesh { grid-template-columns: 1fr; }
}

/* ── Closing CTA ── */
body.lp-suburb-page .sp-cta {
  background:
    linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: #f4f5f3;
  padding: clamp(32px, 4.5vw, 48px) 24px;
  text-align: left;
}
body.lp-suburb-page .sp-cta-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}
body.lp-suburb-page .sp-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 10px;
  max-width: 18ch;
  color: #f4f5f3;
}
body.lp-suburb-page .sp-cta p {
  margin: 0 0 20px;
  max-width: 40ch;
  color: rgba(244, 245, 243, 0.85);
}
body.lp-suburb-page .sp-cta .btn-primary { background: var(--sand); color: var(--charcoal); }
body.lp-suburb-page .sp-cta .btn-outline {
  border-color: rgba(244, 245, 243, 0.45);
  color: #f4f5f3;
}
body.lp-suburb-page .sp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Footer tweaks ── */
body.lp-suburb-page .lp-footer {
  background: var(--charcoal);
  color: rgba(244, 245, 243, 0.78);
  padding: 64px 24px 28px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}
body.lp-suburb-page .lp-footer a { color: rgba(244, 245, 243, 0.88); }
body.lp-suburb-page .lp-footer h4 {
  font-family: var(--font-display);
  color: #f4f5f3;
  letter-spacing: -0.02em;
}

/* ── Sticky mobile CTA ── */
body.lp-suburb-page .lp-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(244, 245, 243, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.lp-suburb-page .lp-mobile-bar .btn {
  flex: 1;
  min-height: 46px;
}
@media (max-width: 720px) {
  body.lp-suburb-page .lp-mobile-bar { display: flex; }
  body.lp-suburb-page .lp-footer { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  body.lp-suburb-page .sp-cta { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  body.lp-suburb-page .sp-hero {
    min-height: min(78svh, 640px);
    padding: 92px 20px calc(48px + env(safe-area-inset-bottom, 0px));
    align-items: flex-start;
  }
  /* Sticky bar owns mobile CTAs; keep hero copy clear of the bar. */
  body.lp-suburb-page .sp-hero-cta { display: none; }
  body.lp-suburb-page .lp-mobile-bar .btn {
    font-size: 0.9rem;
    padding-inline: 0.7rem;
    letter-spacing: 0;
  }
}

/* ── Motion ── */
body.lp-suburb-page .reveal {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  body.lp-suburb-page .reveal:not(.is-visible) {
    opacity: 0.85;
  }
}
body.lp-suburb-page .reveal.is-visible {
  opacity: 1;
  transform: none;
}
body.lp-suburb-page .line-rise {
  display: block;
  overflow: hidden;
}
body.lp-suburb-page .line-rise > span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.85s var(--ease);
}
body.lp-suburb-page .line-rise.is-visible > span,
body.lp-suburb-page .line-rise.is-ready > span {
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  body.lp-suburb-page .sp-hero .sp-brand {
    animation: sp-fade-up 0.7s var(--ease) both;
  }
  body.lp-suburb-page .sp-hero h1 {
    animation: sp-fade-up 0.85s var(--ease) 0.08s both;
  }
  body.lp-suburb-page .sp-hero-lead {
    animation: sp-fade-up 0.85s var(--ease) 0.16s both;
  }
  body.lp-suburb-page .sp-hero-cta {
    animation: sp-fade-up 0.85s var(--ease) 0.24s both;
  }
  @keyframes sp-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }
}

@media (prefers-reduced-motion: reduce) {
  body.lp-suburb-page .reveal,
  body.lp-suburb-page .line-rise > span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  body.lp-suburb-page .sp-hero .sp-brand,
  body.lp-suburb-page .sp-hero h1,
  body.lp-suburb-page .sp-hero-lead,
  body.lp-suburb-page .sp-hero-cta {
    animation: none !important;
  }
}
