/* ============ Brand & tokens ============ */
:root {
  --orange: #F7941D;
  --red: #ED1C24;
  --gradient: linear-gradient(180deg, #F7941D 0%, #ED1C24 100%);
  --charcoal: #2A2A2A;
  --charcoal-soft: #3A3A3A;
  --grey-900: #1A1A1A;
  --grey-700: #4B4B4B;
  --grey-500: #7A7A7A;
  --grey-200: #E5E5E5;
  --grey-100: #F2F2F2;
  --grey-50: #FAFAFA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1180px;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--grey-900);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; letter-spacing: .08em; }
p { margin: 0 0 1em; color: var(--grey-700); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--red);
  margin: 0 0 .8em;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { height: 60px; width: auto; }
.nav-menu {
  display: flex;
  gap: 28px;
}
.nav-menu a {
  font-weight: 600;
  color: var(--charcoal);
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 18px;
  background: var(--gradient);
  border-radius: var(--radius);
  color: var(--white);
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.header-cta:hover { transform: translateY(-2px); }
.header-cta-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
}
.header-cta-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(247,148,29,.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(237,28,36,.12), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero .eyebrow { color: var(--orange); }
.hero h1 { color: var(--white); }
.hero .lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.hero .btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-strip li {
  display: flex;
  flex-direction: column;
}
.trust-strip strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.trust-strip span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-visual {
  position: relative;
  height: 460px;
}
.hero-card-back {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  transform: rotate(-4deg);
  box-shadow: var(--shadow-lg);
  opacity: .85;
}
.hero-card-front {
  position: absolute;
  inset: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  overflow: hidden;
}
.hero-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(247,148,29,.08), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(237,28,36,.06), transparent 45%);
  pointer-events: none;
}
.hero-mark {
  width: 62%;
  max-width: 200px;
  height: auto;
  position: relative;
}
.hero-card-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 6px;
  margin: 14px 0 0;
  line-height: 1;
}
.hero-card-sub {
  position: relative;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .9rem;
  margin: 6px 0 0;
}
.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 130px;
}
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: 1px;
}
.hero-badge span {
  font-size: .72rem;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
  font-weight: 600;
}
.hero-badge-years {
  top: -16px;
  right: -22px;
  transform: rotate(4deg);
}
.hero-badge-license {
  bottom: -16px;
  left: -22px;
  background: var(--charcoal);
  transform: rotate(-3deg);
}
.hero-badge-license strong { color: var(--orange); }
.hero-badge-license span { color: rgba(255,255,255,.7); }

/* ============ Section base ============ */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow { text-align: center; }
.section-sub {
  font-size: 1.1rem;
  color: var(--grey-700);
}

/* ============ Services ============ */
.services { background: var(--grey-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin: 0; color: var(--grey-700); }

/* ============ About ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.about-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  color: var(--charcoal);
}
.about-points li::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient);
}
.about-card {
  background: var(--charcoal);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '"';
  position: absolute;
  top: -30px; right: 10px;
  font-family: var(--font-display);
  font-size: 16rem;
  color: var(--orange);
  opacity: .15;
  line-height: 1;
}
.about-card .quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.about-card .quote-attr {
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0;
  position: relative;
}

/* ============ Service area ============ */
.area { background: var(--grey-50); }
.suburb-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.suburb-list li {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.suburb-list li:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.area-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: var(--grey-700);
}

/* ============ Contact ============ */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-details li {
  padding: 16px 20px;
  background: var(--grey-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.contact-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--grey-500);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-value {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.05rem;
}
a.contact-value:hover { color: var(--red); }

.quote-form {
  background: var(--grey-50);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}
.quote-form h3 { margin-bottom: 20px; }
.quote-form label {
  display: block;
  margin-bottom: 16px;
}
.quote-form label span {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,148,29,.18);
}
.quote-form textarea { resize: vertical; }
.form-fineprint {
  font-size: .8rem;
  color: var(--grey-500);
  margin: 12px 0 0;
  text-align: center;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--grey-900);
  color: rgba(255,255,255,.7);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}
.site-footer h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
}
.site-footer p { margin: 0 0 8px; font-size: .95rem; }
.site-footer a:hover { color: var(--orange); }
.footer-col ul { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0 28px;
}
.footer-bottom p {
  font-size: .85rem;
  margin: 0;
  color: rgba(255,255,255,.5);
}

/* ============ Mobile call bar ============ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gradient);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  z-index: 100;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.mobile-call-bar svg { width: 22px; height: 22px; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 70px 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 720px) {
  .header-cta-label { display: none; }
  .header-cta { padding: 8px 14px; }
  .header-cta-number { font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 8px 0;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { border-top: 1px solid var(--grey-100); }
  .nav-menu li:first-child { border-top: none; }
  .nav-menu a {
    display: block;
    padding: 14px 24px;
  }
  .nav-menu a::after { display: none; }
  body { padding-bottom: 60px; }
  .mobile-call-bar { display: flex; }
}

@media (max-width: 720px) {
  .logo { height: 46px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .logo { height: 38px; }
  h1 { font-size: 2rem; }
  .quote-form { padding: 24px; }
}
