:root {
  --ink: #202325;
  --muted: #6b6b6b;
  --line: #dcdfe1;
  --paper: #f7f8f9;
  --mist: #eef1f3;
  --white: #ffffff;
  --brand: #1370b3;
  --brand-dark: #0d5488;
  --gold: #c18b28;
  --graphite: #484848;
  --shadow: 0 18px 44px rgba(19, 32, 37, .12);
  --page-max: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--page-max), calc(100% - 48px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--brand-dark);
  color: #d7e6f2;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 650;
}
.topbar .social-links { gap: 8px; }
.topbar .social-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .12);
}
.topbar .social-icon:hover { background: rgba(255, 255, 255, .22); }
@media (max-width: 560px) {
  .topbar-text { display: none; }
  .topbar-inner { justify-content: flex-end; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 250, 249, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  height: 60px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 8px;
  text-decoration: none;
}
.brand-text {
  display: grid;
  gap: 1px;
}
.brand-name {
  color: inherit;
  text-decoration: none;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.brand small a {
  color: inherit;
  text-decoration: none;
}
.brand small a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
}
.nav-links a { text-decoration: none; color: var(--graphite); }
.nav-links a.button { color: var(--white); }
.nav-links a.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--brand-dark);
}
.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand-dark);
  border-radius: 7px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.button.secondary {
  background: var(--white);
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(12, 26, 38, .88) 0%, rgba(12, 26, 38, .76) 42%, rgba(12, 26, 38, .18) 100%),
    url('/assets/hero-repair.svg') center right / cover no-repeat;
  color: var(--white);
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-copy { flex: 1 1 520px; }
.hero-logo-large {
  flex: 0 0 auto;
  width: min(420px, 38vw);
  height: auto;
  margin-right: 6%;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-flex { flex-direction: column; text-align: center; }
  .hero-logo-large { width: min(280px, 60vw); margin-right: 0; }
  .hero-copy .hero-actions { justify-content: center; }
}
.hero-inner { padding: 92px 0 68px; }
.eyebrow {
  color: #aad6f2;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0; }
h1 {
  max-width: 860px;
  margin-top: 16px;
  font-size: clamp(32px, 4.8vw, 56px);
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 68px);
}
.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d7e6f2;
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.internal-hero {
  min-height: 268px;
  display: grid;
  align-items: end;
  padding: 56px 0 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 26, 38, .90) 0%, rgba(12, 26, 38, .74) 52%, rgba(12, 26, 38, .18) 100%),
    var(--hero-image, url('/assets/hero-repair.svg')) center right / cover no-repeat;
}
.internal-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.4vw, 54px);
}
.internal-hero .lead {
  max-width: 760px;
  margin-top: 18px;
  color: #d7e6f2;
}

.trust-strip {
  padding: 0 24px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-strip-inner > div {
  background: var(--white);
  padding: 22px;
  font-weight: 800;
  color: var(--graphite);
}
.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  margin-top: 4px;
}

section { padding: 78px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .45fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
h2 { font-size: clamp(32px, 4vw, 48px); }
.lead { color: var(--muted); font-size: 18px; margin: 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--muted); margin: 0 0 16px; }
.asset-card img {
  width: 100%;
  min-height: 120px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  margin-bottom: 18px;
}
.asset-card .asset-mark {
  width: min(160px, 100%);
  margin-inline: auto;
}
.dark-preview img { background: #10191d; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 22px;
}
.faq-item summary {
  font-weight: 800;
  color: var(--graphite);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--brand-dark); font-weight: 800; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 14px 0 0; color: var(--muted); }
.checklist-tool { display: grid; gap: 24px; }
.checklist-category {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px 26px;
}
.checklist-category h3 { font-size: 18px; margin-bottom: 6px; }
.checklist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.checklist-row label { font-weight: 700; color: var(--graphite); flex: 1; }
.checklist-row select {
  flex: none;
  width: 160px;
  min-height: 42px;
  border: 1px solid #b9c8ca;
  border-radius: 6px;
  padding: 0 10px;
  font: inherit;
  background: var(--paper);
}
.checklist-submit-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.checklist-submit-hint { color: var(--muted); margin: 0; }
.checklist-submit-hint.is-warning { color: #a24614; font-weight: 800; }
.checklist-result { scroll-margin-top: 100px; }
.checklist-result-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.checklist-result-icon { flex: none; width: 48px; height: 48px; }
.checklist-result h3 { margin-bottom: 10px; }
.checklist-result p { color: var(--muted); margin: 0 0 18px; }
.checklist-enquiry {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.checklist-enquiry h4 { margin-bottom: 6px; }
.checklist-enquiry p { color: var(--muted); margin: 0 0 16px; }
.text-link {
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.card ul, .checklist { padding: 0; margin: 0; list-style: none; }
.card li, .checklist li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: var(--graphite);
}
.card li::before, .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
}

.band {
  background: var(--graphite);
  color: var(--white);
}
.band .lead, .band p { color: #d7dde1; }
.band .checklist li { color: #d7dde1; }
.band .card {
  border-color: rgba(213, 225, 226, .24);
  background: rgba(255, 255, 255, .075);
  color: var(--white);
  box-shadow: none;
}
.band .card h3 {
  color: var(--white);
}
.band .card p {
  color: #d7dde1;
}
.band .card li {
  color: #d7dde1;
}
.band .text-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.band .panel {
  color: var(--ink);
}
.band .panel p {
  color: var(--muted);
}
.band .panel .text-link {
  color: var(--brand-dark);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}
.step strong { display: block; font-size: 20px; margin-bottom: 8px; }

.split {
  display: grid;
  grid-template-columns: .85fr .55fr;
  gap: 34px;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.profile-panel { display: grid; gap: 16px; }
.cal-embed { width: 100%; min-height: 680px; }
.about-link { margin-top: 22px; }
.location-context { margin-top: 24px; }
.featured-location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.about-link a {
  color: var(--brand-dark);
  font-weight: 800;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.credential-badge {
  width: 72px;
  height: 72px;
  margin: 4px 0 2px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline-item {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
}
.timeline-item strong {
  display: block;
  color: #aad6f2;
  font-size: 13px;
  margin-bottom: 10px;
}
.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.timeline-item p { margin: 0; color: #d7dde1; }
.form-grid { display: grid; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--graphite); }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b9c8ca;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 136px; resize: vertical; }
.fineprint { color: var(--muted); font-size: 13px; margin: 10px 0 20px; }
.turnstile-wrap {
  min-height: 65px;
  display: flex;
  align-items: center;
}
.news-paragraph { margin-top: 22px; }
.news-paragraph strong {
  color: var(--graphite);
  font-weight: 850;
}
.news-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 7px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: var(--mist);
}
.latest-update {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 720px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.latest-update img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}
.latest-update h3 {
  max-width: 520px;
  margin: 6px 0 12px;
  font-size: 20px;
  line-height: 1.18;
}
.news-figure {
  margin: 28px 0;
}
.news-hero-image {
  margin: 28px 0 30px;
}
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 12px;
}
.tag-pill {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 750;
  font-size: 13px;
  text-decoration: none;
}
.tag-pill:hover {
  border-color: var(--brand);
  background: var(--mist);
}
.related-heading {
  font-size: 22px;
  margin-bottom: 16px;
}
.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}
.pagination-status {
  color: var(--muted);
  font-size: 14px;
}
.news-figure-lead {
  margin-top: 24px;
}
.news-figure img,
.news-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--mist);
}
.news-hero-image img {
  box-shadow: var(--shadow);
}
.news-figure figcaption,
.news-hero-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.resource-links {
  padding: 0;
  margin: 16px 0 20px;
  list-style: none;
}
.resource-links li {
  margin: 10px 0;
}
.resource-links a {
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: none;
}
.resource-links a:hover { text-decoration: underline; }
.vendor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.vendor-badge {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  color: var(--graphite);
  font-weight: 750;
  font-size: 14px;
}
.band .vendor-badge {
  border-color: rgba(213, 225, 226, .3);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}
.vendor-badge-logo {
  padding: 8px 18px;
}
.vendor-badge-logo img {
  height: 22px;
  width: auto;
  display: block;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.resource-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.resource-mark {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 7px;
  background: var(--paper);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}
.resource-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.resource-card p {
  margin: 0 0 12px;
  color: var(--muted);
}
.document-hub {
  display: grid;
  gap: 28px;
}
.document-section {
  padding: 0;
}
.document-section h2 {
  font-size: 28px;
  margin-bottom: 14px;
}
.document-list {
  display: grid;
  gap: 12px;
}
.document-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.document-row h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.document-row p {
  margin: 0 0 6px;
  color: var(--muted);
}
.document-row span {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.deliverable-summary {
  margin-top: 34px;
}
.legal-content {
  max-width: 860px;
}
.legal-section {
  padding: 0 0 28px;
}
.legal-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.legal-section p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 14px;
}
.alert {
  padding: 14px 16px;
  border-radius: 7px;
  margin-bottom: 16px;
  background: #e5f0f8;
  color: var(--brand-dark);
  font-weight: 750;
}
.error { background: #fdeaea; color: #8a1e1e; }

.location-list {
  columns: 3;
  column-gap: 32px;
  margin-top: 22px;
}
.location-list a {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-weight: 750;
  text-decoration: none;
}
.site-footer {
  padding: 42px 0;
  background: #10191d;
  color: #d4dee0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-grid a { color: #cfe6f5; }
.footer-blurb {
  display: block;
  margin-top: 4px;
}
.footer-abn {
  display: block;
  margin-top: 12px;
}
.footer-credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #d4dee0;
}
.footer-credential-badge {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.footer-legal {
  color: #9fb3b6;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
}
.footer-legal a { color: #9fb3b6; }
.social-links { display: flex; gap: 12px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
  color: #d4dee0;
}
.social-icon:hover { background: rgba(255, 255, 255, .16); color: var(--white); }
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-link {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.cookie-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .nav { padding: 14px 0; flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 2px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 7px;
    background: var(--white);
    border: 1px solid var(--line);
  }
  .nav-links a.button {
    justify-content: center;
    background: var(--brand-dark);
    border-color: var(--brand-dark);
  }
  .nav-links a.button.secondary {
    background: var(--white);
    color: var(--brand-dark);
    border-color: var(--brand-dark);
  }
  .hero { min-height: 620px; background-position: 62% center; }
  .internal-hero { background-position: 62% center; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .grid, .steps, .split, .section-head, .timeline, .latest-update { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .checklist-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .checklist-row select { width: 100%; }
  .location-list { columns: 2; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, var(--page-max)); }
  .brand { max-width: calc(100% - 60px); }
  .hero-inner { padding: 72px 0 48px; }
  .hero p { font-size: 18px; }
  .internal-hero { min-height: 238px; padding: 44px 0 38px; }
  section { padding: 54px 0; }
  .trust-strip { padding: 0 12px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip-inner > div { padding: 18px 14px; }
  .document-row { align-items: stretch; flex-direction: column; }
  .document-row .button { width: 100%; }
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cookie-actions .button { flex: 1 1 180px; }
  .latest-update { max-width: none; }
  .latest-update img { max-width: 180px; }
  .location-list { columns: 1; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
