/* Canberra's Super Handyman — site styles
   Australian palette: deep blue + gold (matching the shield brand) */

:root {
  --navy: #0d3b66;
  --blue: #1b6ec2;
  --gold: #ffd166;
  --ink: #1a1a1a;
  --paper: #f5f8fc;
  --muted: #5a6472;
  --line: #e6eaf0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-name { font-size: 15px; line-height: 1.1; }
.brand-name strong { color: var(--blue); }
.nav { display: flex; align-items: center; gap: 22px; font-weight: 600; }
.nav a { color: var(--navy); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 800;
}
.nav-cta:hover { text-decoration: none; filter: brightness(1.05); }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; }
.hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding: 70px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-size: 13px; font-weight: 700; margin: 0 0 10px; }
.hero h1 { font-size: clamp(30px, 5vw, 52px); margin: 0 0 16px; line-height: 1.1; }
.lede { font-size: 18px; max-width: 52ch; color: #eaf2fb; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 16px; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 999px; font-weight: 800; cursor: pointer; border: 0; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { text-decoration: none; filter: brightness(1.05); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { text-decoration: none; border-color: #fff; }
.hero-trust { font-size: 14px; color: #d6e6f7; margin: 0; }
.hero-card { display: grid; place-items: center; }
.logo-badge {
  background: #fff; border-radius: 28px; padding: 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,.30);
}
.hero-logo { width: 230px; height: auto; display: block; }

/* Trust bar */
.trustbar { background: var(--navy); color: var(--gold); }
.trust-inner { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; padding: 14px 0; font-weight: 700; font-size: 14px; }

/* Sections */
.section { padding: 66px 0; }
.section-alt { background: var(--paper); }
.section-title { font-size: clamp(26px, 4vw, 38px); color: var(--navy); margin: 0 0 8px; }
.section-sub { color: var(--muted); margin: 0 0 32px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  box-shadow: 0 6px 18px rgba(13,59,102,.05); transition: transform .15s ease;
}
.service:hover { transform: translateY(-3px); }
.service h3 { margin: 0 0 8px; color: var(--blue); }
.service p { margin: 0; color: var(--muted); font-size: 15px; }
a.service { text-decoration: none; color: inherit; display: block; }
a.service:hover { text-decoration: none; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.ticks { list-style: none; padding: 0; margin: 18px 0 0; }
.ticks li { padding: 8px 0 8px 30px; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; background: var(--navy); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }
.about-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: 0 6px 18px rgba(13,59,102,.05); }
.about-card h3 { margin: 0 0 4px; color: var(--navy); }
.about-card .hours { margin: 0 0 16px; font-weight: 700; }
.about-card .findus a { color: var(--blue); font-weight: 600; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { padding: 6px 0; border-bottom: 1px dashed #e0e6ef; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px; display: grid; gap: 14px; box-shadow: 0 6px 18px rgba(13,59,102,.05); }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; color: var(--navy); }
.contact-form input, .contact-form textarea {
  font: inherit; padding: 11px 13px; border: 1px solid #cdd5e0; border-radius: 10px; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--blue); border-color: var(--blue); }

/* Footer */
.site-footer { background: var(--navy); color: #cfe0f2; padding: 36px 0; }
.footer-inner { text-align: center; }
.site-footer strong { color: #fff; }
.site-footer .fine { font-size: 13px; color: #8fb0d4; margin-top: 10px; }
.site-footer .social { margin-top: 14px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.site-footer .social a { color: var(--gold); font-weight: 700; }
.site-footer .social a:hover { text-decoration: underline; color: #fff; }

/* Buttons: secondary outline (light backgrounds) */
.btn-ghost2 { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost2:hover { text-decoration: none; background: var(--navy); color: #fff; }

/* Reviews CTA */
.review-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }

/* FAQ accordion */
.faq { max-width: 820px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; margin-bottom: 10px; }
.faq summary { font-weight: 700; cursor: pointer; color: var(--navy); }
.faq p { margin: 10px 0 0; color: var(--muted); }

/* Responsive */
@media (max-width: 820px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .nav { gap: 14px; font-size: 14px; }
  .nav a:not(.nav-cta) { display: none; }
}
