@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --f5-background: var(--theme-surface-soft, #f8fafc);
  --f5-foreground: var(--theme-text-strong, #0f172a);
  --f5-card: var(--theme-surface, #ffffff);
  --f5-primary: var(--theme-brand, #2563eb);
  --f5-primary-foreground: var(--primary-fg, #ffffff);
  --f5-secondary: var(--secondary-500, #334155);
  --f5-secondary-soft: var(--secondary-50, #f1f5f9);
  --f5-muted: var(--theme-bg-soft, #f8fafc);
  --f5-muted-foreground: var(--theme-text-muted, #64748b);
  --f5-border: var(--theme-border-soft, #dbe4ee);
  --f5-shadow: var(--theme-shadow-soft, 0 16px 32px rgba(15, 23, 42, 0.08));
  --background: var(--f5-background);
  --foreground: var(--f5-foreground);
  --card: var(--f5-card);
  --primary: var(--f5-primary);
  --primary-foreground: var(--f5-primary-foreground);
  --secondary: var(--f5-secondary-soft);
  --muted: var(--f5-muted);
  --muted-foreground: var(--f5-muted-foreground);
  --accent: var(--f5-secondary);
  --border: var(--f5-border);
  --emergency: var(--f5-primary);
  --emergency-foreground: var(--f5-primary-foreground);
  --mint: var(--f5-secondary);
  --radius: 16px;
  --shadow: var(--f5-shadow);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--f5-background);
  color: var(--f5-foreground);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .serif {
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  margin: 0;
}
p { margin: 0; }
strong { font-weight: 600; }

.container { width: min(100% - 32px, 1280px); margin-inline: auto; }
.narrow { width: min(100% - 32px, 760px); margin-inline: auto; }
.emergency-bar { background: var(--f5-primary); color: var(--f5-primary-foreground); font-size: 14px; }
.emergency-bar .container { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.emergency-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #fff; vertical-align: middle; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--f5-card) 92%, transparent);
  border-bottom: 1px solid var(--f5-border);
  backdrop-filter: blur(14px);
}
.site-header .container { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif; font-size: 24px; font-weight: 700; }
.brand-mark { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 999px; background: var(--f5-primary); color: var(--f5-primary-foreground); font: 700 14px "Work Sans", sans-serif; }
.brand-text { color: var(--f5-foreground); }
.footer-brand { margin-bottom: 18px; color: var(--f5-primary-foreground); }
.footer-brand .brand-text { color: var(--f5-primary-foreground); }
.logo-img { display: block; width: auto; max-width: 180px; max-height: 54px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 18px; font-size: 13px; }
.desktop-nav a:hover, .footer a:hover, .accent-link:hover { color: var(--f5-secondary); text-decoration: underline; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.call-pill, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.call-pill { background: var(--f5-primary); color: var(--f5-primary-foreground); font-size: 14px; padding: 9px 16px; }
.button:hover, .call-pill:hover { opacity: 0.9; transform: translateY(-1px); }
.button-emergency { background: var(--f5-primary); color: var(--f5-primary-foreground); }
.button-primary { background: var(--f5-primary); color: var(--f5-primary-foreground); }
.button-light { background: var(--f5-card); border-color: var(--f5-border); }
.button-outline { border-color: currentColor; background: transparent; }
.mobile-nav { position: relative; display: none; }
.mobile-nav summary { list-style: none; cursor: pointer; padding: 8px; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav-panel {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 210px;
  padding: 10px;
  margin-top: 10px;
  background: var(--f5-card);
  border: 1px solid var(--f5-border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.mobile-nav[open] .mobile-nav-panel { display: block; }
.mobile-nav-panel a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.mobile-nav-panel .mobile-call { margin: 8px 4px 2px; text-align: center; color: var(--primary-foreground); }
.mobile-nav-panel a:hover { background: var(--f5-secondary-soft); }

.section { padding: 80px 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.eyebrow { margin-bottom: 12px; color: var(--f5-secondary); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.section h2, .h2 { font-size: clamp(40px, 5vw, 56px); line-height: 1.05; }
.intro { margin-top: 20px; color: var(--f5-muted-foreground); font-size: 18px; line-height: 1.7; }
.lead { color: var(--f5-muted-foreground); font-size: 18px; line-height: 1.7; }
.muted { color: var(--f5-muted-foreground); }
.accent { color: var(--f5-secondary); }
.mint { color: var(--f5-secondary); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card { background: var(--f5-card); border: 1px solid var(--f5-border); border-radius: var(--radius); padding: 28px; }
.form-card { background: var(--f5-card); border: 1px solid var(--f5-border); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 30px; line-height: 1.12; }
.form-note { margin-top: 14px; color: var(--f5-muted-foreground); font-size: 13px; line-height: 1.55; }
.soft { background: var(--f5-secondary-soft); }
.dark { background: var(--f5-primary); color: var(--f5-primary-foreground); }
.dark .muted, .dark .lead { color: color-mix(in srgb, var(--f5-primary-foreground) 78%, transparent); }
.emergency { background: var(--f5-primary); color: var(--f5-primary-foreground); }
.rounded { border-radius: 24px; overflow: hidden; }
.shadow { box-shadow: var(--shadow); }

.hero-home { padding: 64px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 7fr 5fr; align-items: center; gap: 40px; }
.hero-home h1, .page-hero h1, .wdr-hero h1 { font-size: clamp(48px, 6vw, 78px); line-height: 1; letter-spacing: -0.03em; }
.hero-copy { margin-top: 24px; max-width: 700px; color: var(--f5-muted-foreground); font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 580px; margin-top: 40px; }
.stat-value { font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif; color: var(--f5-primary); font-size: 30px; font-weight: 700; }
.stat-label { margin-top: 4px; color: var(--f5-muted-foreground); font-size: 12px; }
.trust-strip { border-block: 1px solid var(--f5-border); background: var(--f5-secondary-soft); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 18px; color: var(--f5-muted-foreground); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.breadcrumb { padding-top: 24px; color: var(--f5-muted-foreground); font-size: 12px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0; margin: 0; list-style: none; }
.breadcrumb span.current { color: var(--f5-foreground); }

.faq-item { border-bottom: 1px solid var(--f5-border); }
.faq-item summary { display: flex; justify-content: space-between; gap: 16px; list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--f5-secondary); font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif; font-size: 24px; line-height: 1; }
.faq-item[open] summary::after { content: "-"; }
.faq-answer { padding-bottom: 18px; color: var(--f5-muted-foreground); line-height: 1.65; }

.footer { margin-top: 96px; background: var(--f5-primary); color: var(--f5-primary-foreground); }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0; }
.footer h2 { font-size: 34px; }
.footer-title { margin-bottom: 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.72; }
.footer ul { padding: 0; margin: 0; list-style: none; }
.footer li, .footer address, .footer p { color: rgba(248, 251, 252, 0.76); font-size: 14px; line-height: 1.65; }
.footer-bottom { border-top: 1px solid rgba(248, 251, 252, 0.16); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; padding: 20px 0; color: rgba(248, 251, 252, 0.7); font-size: 12px; }

.wdr-hero { position: relative; overflow: hidden; background: var(--f5-primary); color: var(--f5-primary-foreground); }
.wdr-hero-bg { position: absolute; inset: 0; }
.wdr-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.wdr-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--f5-primary), color-mix(in srgb, var(--f5-primary) 84%, transparent), color-mix(in srgb, var(--f5-primary) 34%, transparent)); }
.wdr-hero-content { position: relative; padding: 32px 0 96px; }
.promise-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 32px; backdrop-filter: blur(12px); }
.check-list, .plain-list { padding: 0; margin: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; margin-top: 14px; line-height: 1.5; }
.check-list li::before { content: "\2713"; color: var(--f5-secondary); font-weight: 700; }
.dot-list { padding: 0; margin: 0; list-style: none; }
.dot-list li { display: flex; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--f5-border); }
.dot-list li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-top: 8px; border-radius: 50%; background: var(--f5-secondary); }
.table-wrap { overflow-x: auto; border: 1px solid var(--f5-border); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; background: var(--f5-card); font-size: 14px; }
th { background: var(--f5-secondary-soft); color: var(--f5-foreground); text-align: left; font-weight: 600; }
th, td { padding: 15px 20px; border-top: 1px solid var(--f5-border); }
thead th { border-top: 0; }

.form-field { display: grid; gap: 8px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--f5-border);
  border-radius: 8px;
  padding: 12px;
  background: var(--f5-card);
  color: var(--f5-foreground);
  font: inherit;
}
select {
  width: 100%;
  border: 1px solid var(--f5-border);
  border-radius: 8px;
  padding: 12px;
  background: var(--f5-card);
  color: var(--f5-foreground);
  font: inherit;
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 14px; line-height: 1.5; }
.form-status.success { color: #146c43; }
.form-status.error { color: #b42318; }
label { font-size: 14px; font-weight: 600; }
address { font-style: normal; }

.page-hero { padding: 64px 0 72px; border-bottom: 1px solid var(--f5-border); background: var(--f5-secondary-soft); }
.page-hero .intro { max-width: 820px; }
.testimonial-card { display: grid; gap: 18px; }
.stars { color: var(--f5-primary); font-weight: 700; letter-spacing: 0.08em; }
.reviewer { display: flex; justify-content: space-between; gap: 16px; color: var(--f5-muted-foreground); font-size: 14px; }
.suburb-list { columns: 4 180px; column-gap: 24px; padding: 0; margin: 0; list-style: none; }
.suburb-list li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid var(--f5-border); }
.suburb-list a { display: flex; justify-content: space-between; gap: 12px; }
.suburb-list span { color: var(--f5-muted-foreground); font-size: 12px; }
.service-area-map { width: 100%; min-height: 360px; border: 0; border-radius: 24px; box-shadow: var(--shadow); }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 42px; font-size: 30px; }
.legal-content p, .legal-content li { color: var(--f5-muted-foreground); line-height: 1.75; }
.legal-content ul { padding-left: 20px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .grid-5, .footer-main { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .hide-sm { display: none; }
  .emergency-bar .container, .footer-bottom .container { flex-direction: column; align-items: flex-start; padding-block: 10px; }
  .site-header .container { height: auto; min-height: 64px; padding-block: 10px; }
  .call-pill span { display: none; }
  .hero-home h1, .page-hero h1, .wdr-hero h1 { font-size: 48px; }
  .section h2, .h2 { font-size: 38px; }
  .hero-copy { font-size: 18px; }
  .stats-row { grid-template-columns: 1fr; }
}
