:root {
  --premium-bg: #f4f0e8;
  --premium-surface: #fffdf8;
  --premium-surface-2: #f8f3ea;
  --premium-ink: #1f201c;
  --premium-muted: #5d5f56;
  --premium-line: #e3d8c8;
  --premium-line-strong: rgba(214, 201, 181, 0.82);
  --premium-accent: #135fda;
  --premium-accent-deep: #0c3f9a;
  --premium-highlight: #f2c12e;
  --premium-highlight-soft: #fff7df;
  --premium-panel: rgba(255, 253, 248, 0.84);
  --premium-radius: 16px;
  --premium-radius-lg: 22px;
  --premium-shadow-sm: 0 8px 20px rgba(18, 18, 18, 0.08);
  --premium-shadow-md: 0 16px 38px rgba(18, 18, 18, 0.12);
}

html,
body {
  background:
    radial-gradient(1200px 520px at 92% -8%, rgba(19, 95, 218, 0.1), transparent 58%),
    radial-gradient(920px 460px at -12% 12%, rgba(19, 95, 218, 0.12), transparent 58%),
    var(--premium-bg);
  color: var(--premium-ink);
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("/logo-640.png") center 58% / min(135vmin, 1500px) auto no-repeat;
  opacity: 0.150;
  filter: saturate(0.85) contrast(0.95);
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(19, 95, 218, 0.24);
  color: #0a1f4d;
}

.wrap {
  max-width: 1140px !important;
}

main {
  animation: premiumFadeUp 420ms ease-out;
}

h1,
h2,
h3,
.section-title {
  font-family: "Fraunces", "Georgia", serif;
  color: #1a1a17;
  letter-spacing: -0.02em;
}

h1 {
  line-height: 1.08;
}

h2 {
  line-height: 1.18;
}

p,
li,
.lead,
.sub,
.section-sub {
  color: var(--premium-muted);
}

.hero-proof-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 95, 218, 0.08);
  border: 1px solid rgba(19, 95, 218, 0.16);
  color: #123d8c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.proof-grid,
.steps-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.proof-card,
.step-card {
  background: var(--premium-surface) !important;
  border: 1px solid var(--premium-line) !important;
  border-radius: var(--premium-radius);
  box-shadow: var(--premium-shadow-sm);
  padding: 18px;
}

.proof-card strong,
.step-card strong {
  display: block;
  margin-bottom: 8px;
  color: #182747;
  font-size: 15px;
  line-height: 1.45;
}

.proof-card p,
.step-card p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 14px;
  line-height: 1.7;
}

a {
  transition: color 0.18s ease, transform 0.18s ease;
}

a:hover {
  color: var(--premium-accent-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(27, 102, 226, 0.42);
  outline-offset: 2px;
}

main > section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

main > section {
  position: relative;
}

/* Keep watermark visible and ensure copy sits on card-like panels across templates. */
main > section:not([class]):not([style*="background:#111"]):not([style*="background: #111"]):not([style*="background:#0b0b0b"]):not([style*="background: #0b0b0b"]),
main section.hero,
main section.section,
main section.contact-hero-section,
main section.form-wrap,
main section[style*="background:#fff"],
main section[style*="background:#f5f5f5"],
main section[style*="background: #fff"],
main section[style*="background: #f5f5f5"] {
  background: transparent !important;
}

main > section:not([class]):not([style*="background:#111"]):not([style*="background: #111"]):not([style*="background:#0b0b0b"]):not([style*="background: #0b0b0b"]) > .wrap,
main > section:not([class]):not([style*="background:#111"]):not([style*="background: #111"]):not([style*="background:#0b0b0b"]):not([style*="background: #0b0b0b"]) > div:first-child,
main section.hero > .wrap,
main section.section > .wrap,
main section.contact-hero-section > .wrap,
main section.form-wrap > .wrap,
main section[style*="background:#fff"] > div:first-child,
main section[style*="background:#f5f5f5"] > div:first-child,
main section[style*="background: #fff"] > div:first-child,
main section[style*="background: #f5f5f5"] > div:first-child {
  background: var(--premium-panel);
  border: 1px solid var(--premium-line-strong);
  border-radius: var(--premium-radius-lg);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.1);
  padding: clamp(16px, 2.2vw, 24px);
  backdrop-filter: blur(1.5px);
  overflow: clip;
}

/* FAQ sections should sit on the page background; only the individual FAQ items get cards. */
main section > .wrap.faq,
main section > .wrap:has(> .faq),
main section > div:first-child:has(> .faq) {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 20px !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.services-page .services-faq-section > .wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 20px !important;
  backdrop-filter: none !important;
}

.home-faq-section > .wrap {
  text-align: center;
}

.home-faq-section .faq {
  max-width: 980px;
  margin: 0 auto;
}

.home-faq-section h2 {
  text-align: center;
}

.home-faq-section summary {
  font-weight: 700;
  cursor: pointer;
}

.home-faq-section .faq p {
  margin: 10px 0 0;
  color: #333;
  line-height: 1.75;
}

.home-faq-section .faq details {
  background: var(--premium-surface) !important;
  border: 1px solid var(--premium-line) !important;
  border-radius: var(--premium-radius) !important;
  box-shadow: var(--premium-shadow-sm) !important;
  padding: 14px 16px !important;
  margin-top: 12px !important;
}

.home-faq-section .faq details:first-of-type {
  margin-top: 0 !important;
}

.services-page .services-detail-section {
  padding: 18px 0 !important;
}

.about-page main > section {
  background: transparent !important;
}

.about-page .about-section {
  padding: 18px 0 !important;
}

.about-page .about-hero-section {
  padding-top: 46px !important;
}

.about-page .about-links-section {
  padding-bottom: 46px !important;
}

.about-page main > section > .wrap {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 20px !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.about-page .about-card {
  background: rgba(255, 253, 248, 0.78) !important;
  border: 1px solid rgba(214, 201, 181, 0.72) !important;
  border-radius: var(--premium-radius) !important;
  box-shadow: var(--premium-shadow-sm) !important;
  padding: clamp(18px, 2.4vw, 26px) !important;
  backdrop-filter: blur(1.5px);
}

.about-page .about-hero-card {
  text-align: center;
}

.about-page .about-hero-card .sub,
.about-page .about-links-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-links-card {
  text-align: center;
}

.about-page .about-links-card h2 {
  text-align: center;
}

.about-page .about-grid {
  margin-top: 0;
}

.about-page .about-help-band {
  justify-content: center !important;
  text-align: center;
}

.about-page .about-help-band > div {
  text-align: center;
}

.about-page .about-help-band > div:last-child {
  justify-content: center !important;
}

.about-page .about-help-band strong {
  display: block;
  margin-bottom: 8px;
}

/* Service Areas should use the site background with smaller content cards, not one giant panel. */
.service-areas-page main > section {
  background: transparent !important;
}

.service-areas-page .service-areas-section {
  padding: 18px 0 !important;
}

.service-areas-page .service-areas-hero-section {
  padding-top: 46px !important;
}

.service-areas-page .service-areas-faq-section {
  padding-bottom: 46px !important;
}

.service-areas-page .service-areas-wrap {
  text-align: center;
}

.service-areas-page main > section > .wrap {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 20px !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.service-areas-page .service-hero-card,
.service-areas-page .service-block {
  background: rgba(255, 253, 248, 0.78) !important;
  border: 1px solid rgba(214, 201, 181, 0.72) !important;
  border-radius: var(--premium-radius) !important;
  box-shadow: var(--premium-shadow-sm) !important;
  padding: clamp(16px, 2.2vw, 24px) !important;
  backdrop-filter: blur(1.5px);
}

.service-areas-page .service-hero-card {
  margin-bottom: 0;
}

.service-areas-page .service-block {
  margin-top: 0;
}

.service-areas-page .service-areas-faq-section .service-block {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
}

.suburb-page main > section {
  background: transparent !important;
}

.suburb-page .hero,
.suburb-page .section {
  padding: 18px 0 !important;
}

.suburb-page .hero {
  padding-top: 46px !important;
}

.suburb-page .section > .wrap {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 20px !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.suburb-page main > section[style*="background:#fff"] > div:first-child,
.suburb-page main > section[style*="background:#f5f5f5"] > div:first-child,
.suburb-page main > section[style*="background: #fff"] > div:first-child,
.suburb-page main > section[style*="background: #f5f5f5"] > div:first-child {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.suburb-page .hero > .wrap,
.suburb-page .suburb-hero-card,
.suburb-page .card,
.suburb-page main div[style*="background:#f8f8f8"][style*="border-radius:12px"],
.suburb-page main div[style*="background:#fff"][style*="border-radius:12px"],
.suburb-page main div[style*="background: #f8f8f8"][style*="border-radius:12px"],
.suburb-page main div[style*="background: #fff"][style*="border-radius:12px"],
.suburb-page .faq details,
.suburb-page main details[style*="border-radius:12px"] {
  background: rgba(255, 253, 248, 0.78) !important;
  border: 1px solid rgba(214, 201, 181, 0.72) !important;
  border-radius: var(--premium-radius) !important;
  box-shadow: var(--premium-shadow-sm) !important;
  backdrop-filter: blur(1.5px);
  text-align: center;
}

.suburb-page .hero > .wrap,
.suburb-page .suburb-hero-card {
  max-width: 980px !important;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(18px, 2.4vw, 26px) !important;
}

.suburb-page .suburb-hero-card {
  margin-bottom: 22px;
}

.suburb-page main .wrap,
.suburb-page main .faq {
  text-align: center;
}

.suburb-page main h1,
.suburb-page main h2,
.suburb-page main h3,
.suburb-page .lead,
.suburb-page .faq summary,
.suburb-page .faq details p {
  text-align: center;
}

.suburb-page .lead,
.suburb-page .suburb-hero-card > p {
  margin-left: auto;
  margin-right: auto;
}

.suburb-page .cta-row,
.suburb-page main div[style*="display:flex"][style*="gap:12px"] {
  justify-content: center !important;
}

.suburb-page main ul {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.suburb-page .suburb-cta-section {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 18px 0 46px !important;
  overflow: visible !important;
}

.suburb-page .suburb-cta-card {
  max-width: 900px !important;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 30px) !important;
  display: grid;
  gap: 16px;
  background: rgba(255, 253, 248, 0.78) !important;
  border: 1px solid rgba(214, 201, 181, 0.72) !important;
  border-radius: var(--premium-radius) !important;
  box-shadow: var(--premium-shadow-sm) !important;
  backdrop-filter: blur(1.5px);
  text-align: center !important;
}

.suburb-page .suburb-cta-card h2 {
  color: #123a82 !important;
  margin-bottom: 0;
}

.suburb-page .suburb-cta-card p,
.suburb-page .suburb-cta-card a:not(.btn) {
  color: #2b344a !important;
}

.suburb-page .suburb-cta-card p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  max-width: 60ch;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Older suburb templates still hardcode their own light panels inline. Normalize them here. */
.suburb-page main div[style*="background:#f8f8f8"][style*="border-radius:12px"],
.suburb-page main div[style*="background:#fff"][style*="border-radius:12px"],
.suburb-page main div[style*="background: #f8f8f8"][style*="border-radius:12px"],
.suburb-page main div[style*="background: #fff"][style*="border-radius:12px"],
.suburb-page main details[style*="border-radius:12px"] {
  background: linear-gradient(180deg, #fffefb 0%, #fcf8f0 100%) !important;
  border: 1px solid var(--premium-line) !important;
  border-radius: var(--premium-radius) !important;
  box-shadow: var(--premium-shadow-sm) !important;
}

.topbar {
  background: linear-gradient(120deg, #0b3d91 0%, #1559c9 55%, #c62828 100%) !important;
  color: #f4f1e8 !important;
  font-size: 13px !important;
  text-align: center !important;
  padding: 12px 14px !important;
  letter-spacing: 0.2px;
  box-shadow: inset 0 -1px 0 rgba(242, 193, 46, 0.62);
}

header {
  background: rgba(255, 252, 246, 0.88) !important;
  border-bottom: 1px solid var(--premium-line) !important;
  backdrop-filter: blur(10px);
}

.header-logo {
  flex-shrink: 0;
  line-height: 0;
  overflow: visible;
  position: relative;
}

.header-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 200px;
  height: auto !important;
  max-height: none !important;
}

@media (min-width: 921px) {
  header {
    justify-content: center !important;
    position: relative !important;
  }

  header nav {
    justify-content: center !important;
  }

  header > .header-logo {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  header > a.btn,
  header > a[href^="tel:"] {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

header img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

nav a {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 650 !important;
  font-size: 14px !important;
  letter-spacing: 0.25px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  color: #141414 !important;
  text-decoration: none !important;
  border: 1px solid transparent;
}

nav a:hover {
  background: rgba(19, 95, 218, 0.08) !important;
  border-color: rgba(19, 95, 218, 0.16);
}

nav a.nav-active {
  background: transparent !important;
  border-color: transparent !important;
  color: #141414 !important;
  box-shadow: none !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(19, 95, 218, 0.34);
  background: #fffdf8;
  color: #123e8a;
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(11, 53, 122, 0.16);
}

.btn,
button,
input[type="submit"] {
  background: linear-gradient(135deg, #1f74ef 0%, var(--premium-accent) 56%, var(--premium-accent-deep) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(8, 58, 136, 0.82) !important;
  border-radius: 999px !important;
  min-height: 46px;
  padding: 12px 20px !important;
  letter-spacing: 0.1px;
  box-shadow: 0 10px 24px rgba(13, 63, 148, 0.24), inset 0 0 0 1px rgba(242, 193, 46, 0.34);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow: 0 14px 28px rgba(13, 63, 148, 0.27);
}

.btn-outline {
  background: #eef4ff !important;
  color: #103f97 !important;
  border: 1px solid rgba(19, 95, 218, 0.34) !important;
  box-shadow: 0 8px 18px rgba(11, 53, 122, 0.12);
}

.btn-outline:hover {
  transform: translateY(-1px);
  background: #e2ecff !important;
  box-shadow: 0 10px 22px rgba(11, 53, 122, 0.16);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -90px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at center, rgba(19, 95, 218, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-trust-side {
  text-align: center;
  background:
    radial-gradient(240px 160px at 12% 12%, rgba(242, 193, 46, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(255, 251, 238, 0.98) 0%, rgba(242, 247, 255, 0.98) 100%) !important;
  border: 1px solid rgba(19, 95, 218, 0.24) !important;
  padding: 18px !important;
  overflow: hidden;
}

.hero-trust-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(16, 63, 156, 0.08);
  border: 1px solid rgba(16, 63, 156, 0.14);
  color: #103f9c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}

.hero-trust-heading {
  margin: 14px 0 8px;
  color: #123a82 !important;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.05;
}

.hero-trust-copy {
  margin: 0 auto;
  max-width: 30ch;
  color: #2c3a54;
  font-size: 15px;
  line-height: 1.7;
}

.hero-trust-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust-stat {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(16, 63, 156, 0.08);
  border: 1px solid rgba(16, 63, 156, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-trust-stat span {
  display: block;
  margin-bottom: 5px;
  color: #4a5b79;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}

.hero-trust-stat strong {
  display: block;
  color: #123a82;
  font-size: 18px;
  line-height: 1.15;
}

.hero-side {
  min-width: 0;
}

.hero-side .side-box {
  overflow: hidden;
}

.hero-side .side-title {
  line-height: 1.25;
}

.crumbs {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(214, 201, 181, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.crumbs,
.crumbs span {
  color: #5e5f58 !important;
}

.card,
.hero-card,
.hero-side,
.box,
details,
.band,
.cta-band {
  border-radius: var(--premium-radius) !important;
}

.card,
.box,
details,
.area {
  background: var(--premium-surface) !important;
  border: 1px solid var(--premium-line) !important;
  box-shadow: var(--premium-shadow-sm) !important;
  overflow: clip;
}

.faq {
  display: grid;
  gap: 12px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.faq details {
  margin-top: 0 !important;
}

.card:hover,
details:hover,
.area:hover {
  box-shadow: var(--premium-shadow-md) !important;
  border-color: rgba(19, 95, 218, 0.2) !important;
}

.card,
details,
.area {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-hero-section .sub {
  max-width: 760px;
}

.contact-page .contact-hero-section .wrap,
.contact-page .contact-form-section .contact-card {
  max-width: 900px !important;
  margin-left: auto;
  margin-right: auto;
}

.contact-page .contact-hero-section .wrap {
  display: grid;
  gap: 18px;
}

.contact-page .contact-hero-section .row,
.contact-page .contact-hero-section .hero-proof-list {
  justify-content: center;
}

.contact-form-section .contact-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.96) 0%, rgba(251, 247, 239, 0.96) 100%) !important;
  border: 1px solid rgba(215, 200, 179, 0.9) !important;
  box-shadow: 0 16px 40px rgba(13, 53, 119, 0.12) !important;
}

.contact-page .contact-band {
  margin-top: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.contact-page .contact-band-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.contact-page .contact-band-copy p {
  margin: 0;
  max-width: 56ch;
}

.contact-page .contact-band-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.contact-page .contact-band-link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}

.contact-page .contact-form-section .contact-card {
  padding: clamp(24px, 3vw, 32px);
}

.contact-page .contact-form-section .hint {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.card h2,
.area h3,
.box h2 {
  color: #123a82 !important;
}

.card p strong,
.sub strong,
.note strong {
  color: #123a82;
}

ul li::marker {
  color: #d7a11e;
}

.hero-card,
.hero-side {
  background: linear-gradient(180deg, #fffefb 0%, #fcf8f0 100%) !important;
  border: 1px solid var(--premium-line) !important;
  overflow: clip;
}

.band,
.cta-band {
  background:
    radial-gradient(260px 170px at 12% 14%, rgba(242, 193, 46, 0.28), transparent 72%),
    linear-gradient(120deg, #103f9c 0%, #135fda 58%, #c62828 100%) !important;
  border: 1px solid rgba(242, 193, 46, 0.35) !important;
  box-shadow: 0 20px 45px rgba(18, 18, 18, 0.24), inset 0 1px 0 rgba(242, 193, 46, 0.34) !important;
  overflow: clip;
}

.band p,
.cta-band p {
  color: rgba(246, 241, 232, 0.9) !important;
}

.links-row a,
.pill {
  border: 1px solid rgba(19, 95, 218, 0.22) !important;
  background: #eff4ff !important;
  color: #123e8a !important;
}

.links-row a:hover,
.pill:hover {
  background: #dfeafe !important;
}

.pill {
  box-shadow: 0 8px 18px rgba(13, 63, 148, 0.12);
}

input,
select,
textarea {
  border-radius: 10px !important;
  border: 1px solid #d9ccba !important;
  background: #fffefb;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2b6fe0 !important;
  box-shadow: 0 0 0 3px rgba(43, 111, 224, 0.2);
}

.intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
  justify-content: center;
}

.intent-help {
  margin: -4px 0 14px;
  font-size: 12px;
  color: #4f5c74;
}

.intent-chip {
  background: #fffdf8;
  border: 1px solid rgba(19, 95, 218, 0.28);
  color: #123e8a;
  border-radius: 999px;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.intent-chip:hover {
  background: #eff4ff;
}

.intent-chip.is-active {
  background: var(--premium-accent-deep);
  color: #fff;
  border-color: var(--premium-accent-deep);
  box-shadow: inset 0 -2px 0 rgba(242, 193, 46, 0.75);
}

.card small {
  display: block;
  margin-top: 6px;
  color: #5d5f56;
  font-size: 12px;
  line-height: 1.45;
}

.reviews-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  text-align: left;
}

#google-reviews-cards:empty {
  display: none;
}

.review-card {
  background: var(--premium-surface) !important;
  border: 1px solid var(--premium-line) !important;
  border-radius: var(--premium-radius);
  box-shadow: var(--premium-shadow-sm);
  padding: 18px;
}

.review-stars {
  color: #d7a11e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.review-quote {
  margin: 10px 0 0;
  color: #27344e;
  line-height: 1.7;
  font-size: 14px;
}

.review-meta {
  margin-top: 12px;
  color: #4b5f80;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.field-meta {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.field-meta small {
  margin-top: 0;
}

.contact-page .contact-form-actions {
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(215, 200, 179, 0.72);
}

.contact-page .contact-form-note {
  margin: 0;
  flex: 1 1 280px;
  color: #4f5c74;
  font-size: 13.5px;
  line-height: 1.7;
  text-align: left;
}

.contact-page .contact-form-note a {
  color: #123e8a;
  font-weight: 800;
}

.contact-page .contact-submit {
  width: auto !important;
  min-width: 180px;
  margin-top: 0 !important;
  padding: 13px 22px !important;
  border-radius: 999px !important;
  background: linear-gradient(120deg, #103f9c 0%, #135fda 100%) !important;
  box-shadow: 0 14px 28px rgba(16, 63, 156, 0.2);
}

.contact-page .contact-submit:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
}

.contact-page .contact-privacy-note {
  margin-top: 12px;
  font-size: 12.5px;
}

#message-counter {
  margin-left: auto;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

#message-counter.is-near-limit {
  color: #8c5a00;
}

#message-counter.is-at-limit {
  color: #8a2110;
}

textarea.is-near-limit {
  border-color: rgba(140, 90, 0, 0.55) !important;
}

footer {
  background: linear-gradient(180deg, #0f1324 0%, #0a0f1f 100%) !important;
  color: #d4d4cd !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer a {
  color: #f4f1e8 !important;
}

.footer-services {
  margin: 0 auto 14px;
  max-width: 1100px;
  padding: 0 20px;
  text-align: center;
  line-height: 1.9;
  color: #ddd9d1;
  font-size: 13.5px;
}

.footer-services a {
  color: #f4f1e8 !important;
  text-decoration: none;
  font-weight: 700;
}

.footer-legal {
  margin: 14px auto 0;
  max-width: 1100px;
  padding: 0 20px;
  text-align: center;
  line-height: 1.9;
  color: #ddd9d1;
  font-size: 13.5px;
}

.footer-legal a {
  color: #f4f1e8 !important;
  text-decoration: none;
  font-weight: 700;
}

.consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 10002;
  background: rgba(12, 18, 37, 0.96);
  color: #f2f1ea;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.consent-banner p {
  margin: 0;
  color: rgba(242, 241, 234, 0.9);
  font-size: 13px;
  line-height: 1.55;
}

.consent-banner a {
  color: #ffd56a !important;
  font-weight: 700;
  text-decoration: underline;
}

.consent-banner-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.consent-banner-actions button {
  width: auto !important;
  min-height: 38px;
  padding: 8px 12px !important;
  font-size: 13px;
}

.consent-reject {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f2f1ea !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  box-shadow: none !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  pointer-events: none;
  background: transparent;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #135fda 0%, #1a57b8 48%, #c62828 100%);
  box-shadow: 0 0 12px rgba(19, 95, 218, 0.35);
  transition: width 0.1s linear;
}

.back-to-top {
  position: fixed;
  right: 14px;
  bottom: 88px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(19, 95, 218, 0.34);
  background: rgba(255, 253, 248, 0.96);
  color: #123d8c;
  border-radius: 999px;
  min-height: 44px;
  width: auto;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1px;
  box-shadow: 0 12px 24px rgba(11, 53, 122, 0.18);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -60px;
  z-index: 10005;
  background: #ffffff;
  color: #123d8c;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(19, 95, 218, 0.32);
  box-shadow: var(--premium-shadow-sm);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 10004;
  display: none;
  gap: 8px;
  background: rgba(10, 15, 31, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.mobile-sticky-cta a {
  flex: 1 1 calc(50% - 4px);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.mobile-sticky-cta .call-btn {
  background: linear-gradient(135deg, #1f74ef 0%, var(--premium-accent) 56%, var(--premium-accent-deep) 100%);
  color: #fff;
  border: 1px solid rgba(8, 58, 136, 0.82);
  box-shadow: inset 0 0 0 1px rgba(242, 193, 46, 0.34);
}

.mobile-sticky-cta .quote-btn {
  background: linear-gradient(135deg, #1f74ef 0%, var(--premium-accent) 56%, var(--premium-accent-deep) 100%);
  color: #fff;
  border: 1px solid rgba(8, 58, 136, 0.82);
  box-shadow: inset 0 0 0 1px rgba(242, 193, 46, 0.34);
}

.form-status.success {
  background: #edf3ff !important;
  border-color: #c5d9ff !important;
  color: #0d3f94 !important;
  box-shadow: 0 10px 20px rgba(13, 63, 148, 0.12);
}

.form-status.error {
  background: #fff3ef !important;
  border-color: #f1b6a9 !important;
  color: #7e2d1f !important;
  box-shadow: 0 10px 20px rgba(126, 45, 31, 0.12);
}

.premium-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--premium-delay, 0ms);
}

.premium-reveal.premium-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  :root {
    --premium-radius: 14px;
    --premium-radius-lg: 18px;
  }

  body::before {
    background-size: min(175vmin, 980px);
    opacity: 0.150;
  }

  main > section:not([class]):not([style*="background:#111"]):not([style*="background: #111"]):not([style*="background:#0b0b0b"]):not([style*="background: #0b0b0b"]) > .wrap,
  main > section:not([class]):not([style*="background:#111"]):not([style*="background: #111"]):not([style*="background:#0b0b0b"]):not([style*="background: #0b0b0b"]) > div:first-child,
  main section.hero > .wrap,
  main section.section > .wrap,
  main section.contact-hero-section > .wrap,
  main section.form-wrap > .wrap,
  main section[style*="background:#fff"] > div:first-child,
  main section[style*="background:#f5f5f5"] > div:first-child,
  main section[style*="background: #fff"] > div:first-child,
  main section[style*="background: #f5f5f5"] > div:first-child {
    padding: 14px;
    border-radius: var(--premium-radius-lg);
  }

  .card,
  .box,
  details,
  .area,
  .hero-card,
  .hero-side,
  .band,
  .cta-band,
  .suburb-page main div[style*="background:#f8f8f8"][style*="border-radius:12px"],
  .suburb-page main div[style*="background:#fff"][style*="border-radius:12px"],
  .suburb-page main div[style*="background: #f8f8f8"][style*="border-radius:12px"],
  .suburb-page main div[style*="background: #fff"][style*="border-radius:12px"],
  .suburb-page main details[style*="border-radius:12px"] {
    border-radius: var(--premium-radius) !important;
  }

  header {
    padding: 8px 12px !important;
    gap: 8px !important;
  }

  .header-logo img {
    width: 200px !important;
  }

  header nav {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    justify-content: center !important;
  }

  header nav a {
    font-size: 13px !important;
    padding: 8px 9px !important;
  }

  header img {
    height: 42px !important;
    width: auto !important;
  }

  header .header-inner {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  header .header-inner nav {
    order: 3;
  }

  header .header-cta {
    margin-left: auto !important;
    min-width: 0 !important;
  }

  h1 {
    font-size: 34px !important;
  }

  h2,
  .section-title {
    font-size: 28px !important;
  }

  .hero-trust-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn,
  .btn-outline,
  button:not(.back-to-top):not(.intent-chip):not(.nav-toggle) {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal !important;
    box-sizing: border-box;
    text-align: center;
  }

  header .btn,
  header .btn-outline,
  header a.btn,
  header a.btn-outline,
  header .header-cta .btn {
    width: auto !important;
    min-width: 0 !important;
  }

  .row,
  .cta-row,
  .cta-actions {
    width: 100%;
  }

  header.mobile-nav-enhanced .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  header.mobile-nav-enhanced nav {
    display: none !important;
    width: 100% !important;
    margin-top: 6px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(19, 95, 218, 0.16);
    background: rgba(255, 254, 250, 0.95);
    box-shadow: 0 10px 24px rgba(11, 53, 122, 0.12);
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
  }

  header.mobile-nav-enhanced.nav-open nav {
    display: flex !important;
    position: relative;
    z-index: 10;
  }

  header.mobile-nav-enhanced.nav-open .header-logo {
    display: none !important;
  }

  header.mobile-nav-enhanced.nav-open .nav-toggle {
    display: none !important;
  }

  header.mobile-nav-enhanced nav a.nav-active {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  header.mobile-nav-enhanced nav a:hover {
    background: transparent !important;
    border-color: transparent !important;
  }

  header.mobile-nav-enhanced nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    border-radius: 10px;
  }

  header.mobile-nav-enhanced .header-cta {
    display: none !important;
  }

  header.mobile-nav-enhanced > a[href^="tel:"] {
    display: none !important;
  }

  header.mobile-nav-enhanced > a[href="/"] {
    display: inline-flex;
    align-items: center;
  }

  header.mobile-nav-enhanced > .header-logo {
    flex-shrink: 0;
  }

  header.mobile-nav-enhanced > .header-logo img {
    width: 200px;
  }

  header.mobile-nav-enhanced > .nav-toggle {
    margin-left: auto;
  }

  .topbar {
    font-size: 11px !important;
    padding: 8px 10px !important;
    letter-spacing: 0.2px !important;
  }

  .contact-page .contact-band {
    grid-template-columns: 1fr;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-page .contact-band-link {
    width: 100%;
    box-sizing: border-box;
    white-space: normal !important;
    text-align: center;
  }

  .intent-row {
    justify-content: center;
  }

  .intent-chip {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .field-meta {
    flex-direction: column;
    gap: 4px;
  }

  .contact-page .contact-form-actions {
    align-items: stretch;
  }

  .contact-page .contact-submit {
    width: 100% !important;
  }

  #message-counter {
    margin-left: 0;
  }

  body {
    padding-bottom: 96px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .mobile-sticky-cta a {
    flex-basis: calc(50% - 4px);
  }

  .consent-banner {
    bottom: 108px;
  }

  .back-to-top {
    right: 10px;
    bottom: 108px;
    width: auto;
    max-width: calc(100vw - 20px);
  }
}

@media (max-width: 560px) {
  .hero-trust-stats {
    grid-template-columns: 1fr;
  }

  .hero-trust-heading {
    font-size: 28px;
  }

  .intent-chip {
    min-height: 44px;
    padding: 10px 12px;
  }

  .pill {
    min-height: 44px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
  }

  .hero-proof-chip {
    min-height: 44px;
    padding: 10px 12px;
  }
}

@media (max-width: 375px) {
  h1 {
    font-size: 26px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  .topbar {
    font-size: 10px !important;
  }

  .consent-banner {
    font-size: 12px;
    padding: 10px;
  }

  .wrap {
    padding: 0 14px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .area:hover {
    transform: translateY(-2px);
  }
}
