/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0c;
  --bg2:       #111116;
  --bg3:       #17171e;
  --surface:   #1c1c24;
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.16);
  --text:      #f0ede8;
  --text-mid:  #9e9b95;
  --text-dim:  #5a5855;
  --accent:    #2563eb;
  --accent-hi: #3b82f6;
  --accent-lo: rgba(37,99,235,0.12);
  --radius:    10px;
  --radius-lg: 16px;
  --font-disp: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hi); border-color: var(--accent-hi); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-hi);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-mid); background: rgba(255,255,255,0.04); }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-full { width: 100%; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 12px;
}
h2 {
  font-family: var(--font-body);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  height: 60px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-mid);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
}
.hero-headline {
  font-family: var(--font-disp);
  font-size: clamp(64px, 12vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-line1 { display: block; color: var(--text); }
.hero-line2 { display: block; color: var(--accent-hi); }
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-sep { color: var(--border-hi); }

/* ===== MARQUEE ===== */
.marquee-wrap {
  margin-top: 64px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 32px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--text-mid); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== INTRO ===== */
.intro {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 16px; }
.intro-text p { color: var(--text-mid); margin-bottom: 32px; }
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-value {
  display: block;
  font-family: var(--font-disp);
  font-size: 48px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mid);
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.service-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}
.service-card p { color: var(--text-mid); font-size: 14px; margin-bottom: 16px; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-hi);
  background: var(--accent-lo);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 3px 10px;
  border-radius: 999px;
}
.services-cta { text-align: center; }

/* ===== WHY ===== */
.why {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-card {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--text-mid); font-size: 15px; }

/* ===== REVIEWS ===== */
.reviews {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.review-rating-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 24px;
  transition: color 0.15s;
}
.review-rating-link:hover { color: var(--text); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-initial {
  width: 32px; height: 32px;
  background: var(--bg3);
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.review-verified {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}
.reviews-cta { text-align: center; }

/* ===== AREA ===== */
.area {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 24px;
}
.suburb-chip {
  font-size: 13px;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
}
.area-address {
  font-size: 14px;
  color: var(--text-dim);
}

/* ===== QUOTE FORM ===== */
.quote {
  padding: 96px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-left h2 { margin-bottom: 16px; }
.quote-left > p { color: var(--text-mid); margin-bottom: 28px; }
.quote-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.quote-trust li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.quote-trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-hi);
  font-weight: 700;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5855' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  background: var(--surface);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.form-success p { color: var(--text-mid); margin-bottom: 8px; }
.form-success a { color: var(--accent-hi); }

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--text-mid);
  font-size: 15px;
  padding-bottom: 20px;
  max-width: 600px;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: block;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.6;
}
.footer-links h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 50;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ===== LOGO IMAGE ===== */
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-img { height: 28px; width: auto; object-fit: contain; }
.nav-logo-text { font-weight: 700; font-size: 15px; letter-spacing: 0.04em; }

/* ===== HERO BACKGROUND IMAGE ===== */
.hero { background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,12,0.75) 0%, rgba(10,10,12,0.92) 100%);
  z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.marquee-wrap { position: relative; z-index: 1; }

/* ===== WORK PHOTOS ===== */
.work { padding: 96px 0; border-top: 1px solid var(--border); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.work-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface); margin: 0; }
.work-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.work-photo:hover img { transform: scale(1.04); }
.work-photo figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; font-size: 12px; font-style: italic; }
.work-photo--empty { border: 1px dashed var(--border-hi); }
.work-photo--empty::after { content: 'No photo'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 13px; }
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links-cta { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .intro-grid,
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid,
  .why-grid,
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-hamburger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10,10,12,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links-cta {
    display: block;
    margin-top: 8px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .services-grid,
  .why-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 80px 20px 0; }
  .hero-headline { font-size: clamp(56px, 16vw, 80px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .sticky-cta { left: 20px; right: 20px; }
  .sticky-cta .btn { flex: 1; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  #nav { padding: 0 20px; }
}
