/* ============ SCOTT JG CONSTRUCTIONS v2 - "Latitude" direction ============
   Bold high-contrast reskin modelled on latitudebuilding.com.au:
   Montserrat 800/900 uppercase display, near-black ground #121012, warm
   grey panels, pill buttons, floating rating chip. Scott's burnt orange
   #cf6530 plays Latitude's gold role. Body: Archivo.
   AA: ink #171412 on #fff 16.8:1; on black: #fff 18:1, orange #e8895b 6.2:1.
   Orange pills carry near-black labels (7:1). */
:root{
  --paper: #ffffff;
  --band: #edeae6;          /* warm grey panel */
  --black: #121012;
  --ink: #171412;
  --dim: #56504c;
  --faint: #8b847f;
  --orange: #cf6530;
  --orange-lift: #e8895b;   /* orange as text on black */
  --orange-text: #b4531f;
  --border: rgba(23,20,18,0.14);
  --r: 14px;
  --pill: 48px;
  --font: "Archivo", -apple-system, sans-serif;
  --display: "Montserrat", "Archivo", sans-serif;
  --ease: cubic-bezier(0.16,1,0.3,1);
}
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ background:var(--paper); scroll-behavior:smooth; overflow-x:clip; }
body{
  background:var(--paper); color:var(--dim);
  font-family:var(--font); font-size:16.5px; line-height:1.7;
  overflow-x:clip; -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }

h1,h2{ font-family:var(--display); font-weight:900; text-transform:uppercase; color:var(--ink); line-height:1.05; letter-spacing:-0.01em; }
h3{ font-family:var(--display); font-weight:800; text-transform:uppercase; color:var(--ink); line-height:1.2; }
.section{ padding: 100px 0; }
.container{ max-width:1200px; margin:0 auto; padding:0 32px; }
.center{ text-align:center; }
.kicker{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--orange-text); margin-bottom:16px;
}
.section-title{ font-size: clamp(28px,3.6vw,46px); margin-bottom:18px; }
.lead{ max-width:62ch; }
.tbc{ background:#fff3cd; color:#7a5d00; padding:1px 7px; border-radius:4px; font-size:0.85em; font-weight:600; }

/* ============ BUTTONS: pills ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:var(--pill); padding:16px 32px; font-weight:700; font-size:15px;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover{ transform: translateY(-2px); }
.btn-orange{ background:var(--orange); color:#171412; }
.btn-orange:hover{ background:#e8895b; }
.btn-dark{ background:var(--black); color:#fff; }
.btn-ghost{ border:1.5px solid var(--border); color:var(--ink); }
.btn-ghost:hover{ border-color:var(--ink); }
.on-dark .btn-ghost, .btn-ghost.on-dark{ border-color:rgba(255,255,255,0.5); color:#fff; }
.on-dark .btn-ghost:hover, .btn-ghost.on-dark:hover{ border-color:#fff; }

/* ============ HEADER: black, pill CTA, phone ============ */
.site-header{ position:sticky; top:0; z-index:100; background:var(--black); }
.header-inner{
  max-width:1200px; margin:0 auto; padding:16px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.wordmark img{ height:44px; width:auto; }
.main-nav{ display:flex; gap:28px; align-items:center; }
.main-nav a{ font-weight:600; font-size:15px; color:rgba(255,255,255,0.85); }
.main-nav a:hover, .main-nav a.active{ color:var(--orange-lift); }
.header-cta{ display:flex; gap:14px; align-items:center; }
.header-phone{ color:#fff; font-weight:700; font-size:15px; }
.header-phone:hover{ color:var(--orange-lift); }
.header-cta .btn{ padding:12px 26px; font-size:14px; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span{ width:24px; height:2.5px; background:#fff; border-radius:2px; }
.nav-item{ position:relative; }
.nav-drop{
  position:absolute; top:100%; left:-14px; background:var(--black); border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--r); padding:10px 0; min-width:260px; display:none;
  box-shadow:0 16px 40px rgba(0,0,0,0.3);
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop{ display:block; }
.nav-drop a{ display:block; padding:9px 18px; font-weight:600; font-size:14px; }
.nav-drop a:hover{ background:rgba(255,255,255,0.08); }

/* ============ HERO: statement type over dark video ============ */
.hero{ position:relative; min-height:86vh; display:flex; align-items:center; overflow:hidden; background:var(--black); }
.hero-bg{ position:absolute; inset:0; }
.hero-bg img, .hero-bg video{ width:100%; height:100%; object-fit:cover; opacity:0.62; }
.hero-bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(18,16,18,0.35) 0%, rgba(18,16,18,0.2) 50%, rgba(18,16,18,0.75) 100%); }
.hero-inner{ position:relative; z-index:1; width:100%; padding-top:90px; padding-bottom:90px; }
.hero h1{
  color:#fff; font-size:clamp(36px,5.4vw,72px); max-width:18ch; margin-bottom:22px;
}
.hero h1 .em{ color:var(--orange-lift); }
.hero-sub{ color:rgba(255,255,255,0.85); max-width:54ch; font-size:18px; margin-bottom:34px; }
.hero-cta-row{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-chips{ display:flex; gap:10px; margin-bottom:26px; flex-wrap:wrap; }
.chip{
  background:rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.3); color:#fff;
  border-radius:var(--pill); padding:8px 18px; font-size:13px; font-weight:600;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
/* floating Google chip - latitude-style white card */
.hero-grating{
  display:inline-flex; align-items:center; gap:10px; margin-top:26px;
  background:#fff; border-radius:var(--r); padding:12px 18px;
  font-weight:700; font-size:13.5px; color:var(--ink);
  box-shadow:0 16px 40px rgba(0,0,0,0.35);
  transition:transform .25s var(--ease);
}
.hero-grating:hover{ transform:translateY(-2px); }
.hero-grating img{ height:18px; width:auto; }
.hero-grating .hg-stars{ color:#fbbc04; letter-spacing:2px; }
.hero-grating .hg-arrow{ color:var(--orange-text); }

/* page hero (subpages) */
.page-hero{ position:relative; min-height:46vh; display:flex; align-items:flex-end; overflow:hidden; background:var(--black); }
.page-hero .hero-bg img, .page-hero .hero-bg video{ opacity:0.6; }
.page-hero .hero-inner{ padding-top:80px; padding-bottom:50px; }
.page-hero h1{ font-size:clamp(30px,4vw,54px); color:#fff; }
.page-hero .hero-bg::after{ background:linear-gradient(180deg, rgba(18,16,18,0.2) 0%, rgba(18,16,18,0.8) 100%); }
.crumbs{ color:rgba(255,255,255,0.7); font-size:13.5px; font-weight:600; margin-bottom:12px; }
.crumbs a:hover{ color:#fff; }

/* ============ SERVICES: image + grey panel cards on black ============ */
.svc-editorial{ background:var(--black); padding:100px 0 110px; }
.svc-editorial .kicker{ color:var(--orange-lift); }
.svc-editorial .section-title{ color:#fff; }
.svc-ed-row{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:0; align-items:stretch;
  max-width:1200px; margin:0 auto 26px; padding:0 32px;
}
.svc-ed-row .svc-ed-photo{ border-radius:var(--r) 0 0 var(--r); overflow:hidden; }
.svc-ed-photo img{ width:100%; height:100%; object-fit:cover; min-height:380px; transition:transform 1.2s var(--ease); }
.svc-ed-row:hover .svc-ed-photo img{ transform:scale(1.03); }
.svc-ed-copy{
  background:var(--band); padding:52px 48px; display:flex; flex-direction:column; justify-content:center;
  border-radius:0 var(--r) var(--r) 0;
}
.svc-ed-flip .svc-ed-photo{ order:2; border-radius:0 var(--r) var(--r) 0; }
.svc-ed-flip .svc-ed-copy{ order:1; border-radius:var(--r) 0 0 var(--r); }
.svc-ed-copy .svc-num{ font-family:var(--display); font-weight:800; color:var(--orange-text); font-size:13px; letter-spacing:0.2em; display:block; margin-bottom:12px; }
.svc-ed-copy h3{ font-size:clamp(20px,2.2vw,28px); margin-bottom:14px; }
.svc-ed-copy p{ max-width:46ch; }
.svc-ed-more{
  display:inline-flex; align-items:center; gap:8px; margin-top:22px; align-self:flex-start;
  font-weight:700; font-size:14px; color:var(--ink);
  border:1.5px solid var(--ink); border-radius:var(--pill); padding:10px 22px;
  transition:background .25s, color .25s;
}
.svc-ed-more:hover{ background:var(--ink); color:#fff; }

/* ============ SERVICE CARDS (index pages) ============ */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px; }
.svc-card{
  background:var(--band); border-radius:var(--r); overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s; display:flex; flex-direction:column;
}
.svc-card:hover{ transform:translateY(-4px); box-shadow:0 20px 50px rgba(18,16,18,0.16); }
.svc-card img{ aspect-ratio:3/2; object-fit:cover; width:100%; }
.svc-card-body{ padding:24px 26px 28px; text-align:left; flex:1; display:flex; flex-direction:column; }
.svc-card h3{ font-size:17px; margin-bottom:8px; }
.svc-card p{ font-size:14.5px; flex:1; }
.svc-card .more{ margin-top:14px; font-weight:700; font-size:13.5px; color:var(--orange-text); }

/* ============ SPLIT / WHY ============ */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.split-photo{ border-radius:var(--r); overflow:hidden; }
.split-photo img{ width:100%; height:100%; object-fit:cover; aspect-ratio:1.2/1; }
.check-list{ display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-weight:600; color:var(--ink); }
.check-list .tick{
  width:24px; height:24px; border-radius:50%; background:var(--orange); color:#171412;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:13px; font-weight:800; margin-top:2px;
}

.band{ background:var(--band); }
.dark-band{ background:var(--black); }
.dark-band h2,.dark-band h3{ color:#fff; }
.dark-band p{ color:rgba(255,255,255,0.8); }

.why-bleed{ position:relative; overflow:hidden; padding:110px 0; background:var(--black); }
.why-bleed-bg{ position:absolute; inset:0; }
.why-bleed-bg img{ width:100%; height:100%; object-fit:cover; opacity:0.55; }
.why-bleed-bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(18,16,18,0.5) 0%, rgba(18,16,18,0.1) 60%); }
.why-panel{
  position:relative; z-index:1; max-width:580px;
  background:rgba(255,255,255,0.96); border-radius:var(--r);
  padding:50px 48px 46px;
  box-shadow:0 30px 70px rgba(0,0,0,0.4);
}

.cta-band{ position:relative; overflow:hidden; background:var(--black); }
.cta-band-bg{ position:absolute; inset:0; }
.cta-band-bg img{ width:100%; height:100%; object-fit:cover; opacity:0.45; }
.cta-band-bg::after{ content:""; position:absolute; inset:0; background:rgba(18,16,18,0.35); }
.cta-band .container{ position:relative; z-index:1; text-align:center; padding-top:96px; padding-bottom:96px; }
.cta-band h2{ color:#fff; }
.cta-band p{ color:rgba(255,255,255,0.85); }

/* ============ GALLERY ============ */
.gal-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:210px; gap:14px; margin-top:40px; }
.gal-grid img{ width:100%; height:100%; object-fit:cover; border-radius:var(--r); }
.gal-grid .gal-wide{ grid-column:span 2; }

/* ============ SERVICE PAGE / OTHER ============ */
.svc-body{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:start; }
.svc-photos{ display:flex; flex-direction:column; gap:16px; }
.svc-photos img{ border-radius:var(--r); }
.other-svcs{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:36px; }
.other-svcs a{
  background:var(--band); border-radius:var(--pill);
  padding:14px 22px; font-weight:700; color:var(--ink); font-size:14px;
  transition:background .2s, color .2s;
}
.other-svcs a:hover{ background:var(--black); color:#fff; }

/* ============ CONTACT / FORM ============ */
.contact-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:start; }
.form-card{
  background:var(--band); border-radius:var(--r);
  padding:30px 30px 34px; position:relative; overflow:hidden;
}
.form-card h3{ font-size:20px; margin-bottom:6px; }
.form-card p{ font-size:14px; margin-bottom:12px; }
.form-crop{ overflow:hidden; border-radius:10px; }
iframe[id^="inline-66kXd0T5ZqQPXnYuYQMx"]{ height:700px !important; width:100%; border:0; display:block; }
.git-list{ display:flex; flex-direction:column; gap:18px; margin-top:24px; }
.git-list li{ display:flex; gap:14px; align-items:flex-start; color:var(--ink); font-weight:600; }
.git-list svg{ width:20px; height:20px; stroke:var(--orange-text); flex-shrink:0; margin-top:3px; }
.git-list small{ display:block; color:var(--faint); font-weight:500; }

/* ============ REVIEWS ============ */
.rv-stars-inline{ color:#fbbc04; letter-spacing:2px; margin-right:6px; }
.rv-marquee{ overflow:hidden; margin-top:36px;
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rv-marquee + .rv-marquee{ margin-top:18px; }
.rv-track{ display:flex; gap:20px; width:max-content; animation:rvscroll 70s linear infinite; }
.rv-track.rv-rev{ animation-direction:reverse; }
.rv-track:hover{ animation-play-state:paused; }
@keyframes rvscroll{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .rv-track{ animation:none; flex-wrap:wrap; width:auto; } }
.rv-track .rv-card{ width:360px; flex-shrink:0; text-align:left; }
.rv-card{
  background:#fff; border-radius:var(--r); padding:22px 24px; position:relative;
  box-shadow:0 10px 30px rgba(18,16,18,0.10);
}
.rv-card::after{
  content:""; position:absolute; top:20px; right:18px; width:20px; height:20px;
  background:url("https://d9hhrg4mnvzow.cloudfront.net/fraserelectrical.localchoice.com.au/e794a707-google-lens-icon-logo-symbol-free-png.webp") center/contain no-repeat;
}
.rv-top{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.rv-avatar{
  width:40px; height:40px; border-radius:50%; background:var(--orange); color:#171412;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px;
}
.rv-card:nth-child(even) .rv-avatar{ background:var(--black); color:#fff; }
.rv-name{ font-weight:700; font-size:14.5px; color:var(--ink); }
.rv-date{ font-size:12.5px; color:var(--faint); }
.rv-stars{ color:#fbbc04; letter-spacing:2px; margin-bottom:8px; }
.rv-text{ font-size:14px; }
.rv-more-row[hidden]{ display:none; }
.rv-cta{ text-align:center; margin-top:32px; }

/* ============ QUOTE BAND ============ */
.quote-band{ background:var(--band); }
.quote-band .container{ padding-top:110px; padding-bottom:110px; text-align:center; }
.quote-band blockquote{
  font-family:var(--display); font-weight:800; text-transform:uppercase;
  font-size:clamp(20px,2.6vw,34px); line-height:1.3; color:var(--ink); max-width:30ch; margin:0 auto 26px;
  text-wrap:balance;
}
.quote-band cite{ font-style:normal; font-size:13px; letter-spacing:0.14em; text-transform:uppercase; color:var(--faint); }
.quote-band cite b{ color:var(--ink); font-weight:700; }
.quote-band .q-stars{ color:#fbbc04; letter-spacing:3px; display:block; margin-bottom:22px; font-size:18px; }

/* ============ LOCATIONS ============ */
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.loc-map img{ width:100%; height:auto; }
.loc-label{ font-weight:700; color:var(--ink); margin-top:22px; margin-bottom:6px; }
.loc-list{ display:grid; grid-template-columns:1fr 1fr; gap:0 40px; }
.loc-list li{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 2px; border-bottom:1px solid var(--border);
  font-weight:700; color:var(--ink); font-size:15.5px;
}
.loc-list li::after{ content:"\2192"; color:var(--orange-text); }

/* ============ FAQ ============ */
.faq-wrap{ max-width:840px; }
.faq-list{ margin-top:34px; }
.faq-item{ background:var(--band); border-radius:var(--r); margin-bottom:12px; }
.faq-item summary{
  display:flex; align-items:center; gap:16px; cursor:pointer; list-style:none;
  padding:20px 24px; font-family:var(--display); font-weight:800; text-transform:uppercase;
  font-size:15px; color:var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-q{ flex:1; }
.faq-toggle{ position:relative; width:22px; height:22px; flex-shrink:0; }
.faq-toggle::before, .faq-toggle::after{
  content:""; position:absolute; background:var(--orange-text); transition:transform .3s var(--ease);
}
.faq-toggle::before{ left:0; right:0; top:10px; height:2px; }
.faq-toggle::after{ top:0; bottom:0; left:10px; width:2px; }
.faq-item[open] .faq-toggle::after{ transform:scaleY(0); }
.faq-item p{ padding:0 60px 22px 24px; }

/* ============ VIDEOS ============ */
.vid-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:40px; }
.vid-card{ aspect-ratio:16/9; border-radius:var(--r); overflow:hidden; background:#000; }
.vid-card iframe{ width:100%; height:100%; border:0; display:block; }
.vid-grid-portrait{ display:grid; grid-template-columns:repeat(3,minmax(0,260px)); gap:18px; margin-top:40px; justify-content:center; }
.vid-card.vid-portrait{ aspect-ratio:9/16; }
.vid-feature{ margin-top:18px; }

/* ============ FOOTER ============ */
.footer{ background:var(--black); color:rgba(255,255,255,0.72); padding:70px 0 36px; }
.footer h4{ color:#fff; font-family:var(--display); font-size:12.5px; letter-spacing:0.16em; text-transform:uppercase; margin-bottom:14px; }
.footer-grid{ display:flex; justify-content:space-between; gap:44px; flex-wrap:wrap; }
.footer li{ margin-bottom:8px; font-size:14.5px; }
.footer a:hover{ color:#fff; }
.footer .f-logo{ height:52px; width:auto; margin-bottom:14px; }
.footer p{ font-size:14px; max-width:40ch; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.14); margin-top:44px; padding-top:20px; font-size:13px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

/* ============ REVEAL ============ */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============ RESPONSIVE ============ */
@media (max-width:1000px){
  .main-nav{ display:none; position:absolute; top:100%; left:0; right:0; background:var(--black);
    border-bottom:1px solid rgba(255,255,255,0.14); flex-direction:column; align-items:flex-start;
    padding:16px 32px 22px; gap:14px; }
  .main-nav.open{ display:flex; }
  .nav-drop{ position:static; display:block; border:none; box-shadow:none; padding:4px 0 0 14px; min-width:0; }
  .nav-toggle{ display:flex; }
  .split,.svc-body,.contact-grid,.loc-grid{ grid-template-columns:1fr; gap:40px; }
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
  .gal-grid{ grid-template-columns:repeat(2,1fr); }
  .svc-ed-row, .svc-ed-flip{ grid-template-columns:1fr; }
  .svc-ed-row .svc-ed-photo, .svc-ed-flip .svc-ed-photo{ order:0; border-radius:var(--r) var(--r) 0 0; }
  .svc-ed-copy, .svc-ed-flip .svc-ed-copy{ border-radius:0 0 var(--r) var(--r); padding:34px 28px; }
}
@media (max-width:640px){
  .section{ padding:64px 0; }
  .container{ padding:0 20px; }
  .header-inner{ padding:12px 20px; }
  .wordmark img{ height:36px; }
  .header-phone{ display:none; }
  .hero{ min-height:74vh; }
  .hero-inner{ padding-top:70px; padding-bottom:64px; }
  .svc-grid{ grid-template-columns:1fr; }
  .other-svcs{ grid-template-columns:1fr; }
  .gal-grid{ grid-auto-rows:150px; gap:10px; }
  .rv-track .rv-card{ width:300px; }
  .vid-grid{ grid-template-columns:1fr; }
  .vid-grid-portrait{ grid-template-columns:1fr 1fr; }
  .why-bleed{ padding:64px 0; }
  .why-panel{ padding:32px 24px 30px; }
  .loc-list{ grid-template-columns:1fr; }
  .faq-item p{ padding:0 24px 22px; }
}
