/* ===== Tokens ===== */
:root {
  --bg: #171B21;
  --surface: #1F242C;
  --surface-alt: #262C35;
  --border: #313742;
  --accent: #6FB33F;
  --accent-dark: #4C8A2A;
  --accent-soft: rgba(111, 179, 63, 0.14);
  --text: #F2F4F1;
  --text-muted: #9AA3AD;
  --radius: 6px;
  --max: 1120px;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text-muted); max-width: 62ch; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.eyebrow-none { display: none; } /* explicitly avoiding eyebrow labels */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #12160F;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Header ===== */
header.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(23, 27, 33, 0.92);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}

.logo-link img { height: 70px; }

nav.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
}

nav.main-nav a {
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}
.phone-link span {
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 6px;
}

.nav-toggle { display: none; }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-graphic svg { width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-graphic { order: -1; max-width: 320px; margin: 0 auto 12px; }
}

/* ===== Trust strip ===== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 28px 0;
}

.trust-item {
  flex: 1 1 220px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-item .mark {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 2px;
  color: var(--text);
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Section heading row ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head .link-more {
  color: var(--accent);
  font-size: 0.95rem;
  white-space: nowrap;
}
.section-head .link-more:hover { text-decoration: underline; }

/* ===== Service list (no cards, divided rows) ===== */
.service-list {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.service-row h3 { margin: 0; color: var(--text); }

.service-row p { margin: 0; max-width: 56ch; }

@media (max-width: 700px) {
  .service-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== Split sections (Personal / Business) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split-graphic { order: 2; }

.split-graphic svg { width: 100%; height: auto; }

.split-text .tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-graphic { order: -1; }
}

/* ===== Pricing ===== */
.pricing-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.price-cell {
  background: var(--bg);
  padding: 32px 28px;
}

.price-cell .amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 700;
}

.price-cell .unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.price-cell .label { color: var(--text); font-weight: 500; margin-top: 4px; }

.guarantee-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 8px;
}

.guarantee-line .mark {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.3rem;
}

/* ===== About teaser ===== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .about-teaser { grid-template-columns: 1fr; }
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--border);
}

.credential-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.credential-list li strong { color: var(--text); font-weight: 500; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  text-align: left;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 { margin: 0; }

.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Footer ===== */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid img { height: 44px; margin-bottom: 14px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Page hero (non-home pages) ===== */
.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero p.lead { font-size: 1.05rem; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-method {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:first-child { border-top: 1px solid var(--border); }

.contact-method .mark {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
}

.contact-method strong { display: block; color: var(--text); margin-bottom: 2px; }
.contact-method a { color: var(--accent); }
.contact-method a:hover { text-decoration: underline; }

.booking-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form.contact-form label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

form.contact-form textarea { resize: vertical; min-height: 110px; }

.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.suburb-list span {
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
}

/* ===== About page bio ===== */
.bio-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

@media (max-width: 860px) {
  .bio-columns { grid-template-columns: 1fr; }
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--border);
  position: relative;
  margin-left: 4px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline strong { display: block; color: var(--text); margin-bottom: 4px; }
.timeline span { font-size: 0.9rem; color: var(--text-muted); }
