/* IKE Electrical - Trade Tough */
:root {
  --charcoal: #1a1a1a;
  --charcoal-2: #232323;
  --charcoal-3: #2e2e2e;
  --cream: #f5f3ee;
  --cream-2: #ebe7df;
  --yellow: #ffd60a;
  --cyan: #00d4ff;
  --grey: #8a8784;
  --grey-2: #5a5854;
  --max: 1180px;
  --radius: 4px;
  --shadow: 0 2px 18px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  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: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.8em; }
h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
p { margin-bottom: 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--charcoal);
  padding: 14px 26px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; font-size: 1rem;
  border: 2px solid var(--yellow);
  transition: all 0.18s;
}
.btn:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--charcoal); }
.btn-charcoal { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-charcoal:hover { background: var(--yellow); color: var(--charcoal); border-color: var(--yellow); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal); color: var(--cream);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--max); margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  transition: transform 0.18s;
}
.brand:hover { transform: translateY(-1px); }
.brand img {
  height: 92px;
  width: auto;
  display: block;
}
.brand-text { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: 1.5px; text-transform: uppercase; }
.brand-text .bolt { color: var(--yellow); }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.nav-desktop a:hover { color: var(--yellow); }
.nav-desktop a.active { border-bottom-color: var(--yellow); color: var(--yellow); }

.phone-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--charcoal);
  padding: 10px 18px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.05rem;
  letter-spacing: 1px;
}
.phone-cta:hover { background: var(--cream); }

.burger {
  display: none; background: none; border: none; color: var(--cream);
  cursor: pointer; padding: 6px;
}
.burger svg { width: 32px; height: 32px; }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--charcoal); padding: 80px 32px 32px;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav a {
  color: var(--cream); font-family: 'Oswald', sans-serif; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding-bottom: 12px; border-bottom: 1px solid var(--charcoal-3);
}
.mobile-nav a.phone-mobile {
  margin-top: 24px;
  background: var(--yellow); color: var(--charcoal);
  text-align: center; padding: 18px; border: none; border-radius: var(--radius);
  font-size: 1.4rem;
}
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--cream);
  font-size: 2rem; cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  background: var(--charcoal); color: var(--cream);
  overflow: hidden;
}
.hero-bg, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.82) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0; max-width: 780px; }
.hero-eyebrow {
  display: inline-block; color: var(--yellow);
  padding: 0; border-left: 3px solid var(--yellow); padding-left: 12px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero h1 { color: var(--cream); }
.hero h1 .accent { color: var(--yellow); }
.hero-sub {
  font-size: 1.2rem; color: var(--cream-2); margin: 20px 0 32px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* SECTION */
.section { padding: 80px 0; }
.section.dark { background: var(--charcoal); color: var(--cream); }
.section.dark h2 { color: var(--cream); }
.section.dark h2 .accent { color: var(--yellow); }
.section.cream { background: var(--cream); }
.section.cream-2 { background: var(--cream-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block; color: var(--charcoal-3);
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.section.dark .section-head .eyebrow { color: var(--yellow); }
.section-head h2 .accent { color: var(--yellow); }
.section.cream .section-head h2 .accent,
.section.cream-2 .section-head h2 .accent {
  color: var(--charcoal); border-bottom: 3px solid var(--yellow);
}

/* HERO BG (per-page) */
.page-hero {
  position: relative; min-height: 44vh;
  background: var(--charcoal); color: var(--cream);
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.45;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.85) 100%);
}
.page-hero-inner { position: relative; z-index: 2; padding: 60px 0; max-width: 760px; }
.page-hero h1 { color: var(--cream); }
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p { color: var(--cream-2); font-size: 1.1rem; margin-top: 16px; max-width: 600px; }

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream); padding: 32px 26px;
  border-top: 4px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.section.dark .service-card { background: var(--charcoal-2); color: var(--cream); }
.section.dark .service-card h3 { color: var(--cream); }
.service-card .icon {
  width: 44px; height: 44px;
  background: var(--charcoal); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px; margin-bottom: 18px;
}
.section.dark .service-card .icon { background: var(--yellow); color: var(--charcoal); }
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--charcoal); }
.service-card p { font-size: 0.95rem; color: var(--grey-2); margin: 0; }
.section.dark .service-card p { color: var(--cream-2); }

/* SUBURB CHIPS */
.chip-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.chip {
  background: var(--cream); color: var(--charcoal);
  border: 2px solid var(--charcoal); padding: 10px 18px;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-size: 0.95rem; border-radius: 2px;
  transition: all 0.15s;
}
.chip:hover, .chip.featured { background: var(--yellow); border-color: var(--yellow); }
.section.dark .chip { background: transparent; color: var(--cream); border-color: var(--cream); }
.section.dark .chip:hover, .section.dark .chip.featured { background: var(--yellow); color: var(--charcoal); border-color: var(--yellow); }

/* WHY GRID */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--charcoal-2); color: var(--cream);
  padding: 32px 24px; border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
}
.why-card .num {
  font-family: 'Oswald', sans-serif; color: var(--yellow);
  font-size: 2.4rem; font-weight: 600; line-height: 1; margin-bottom: 10px;
}
.why-card h3 { color: var(--cream); margin-bottom: 8px; }
.why-card p { color: var(--cream-2); font-size: 0.95rem; margin: 0; }

/* REVIEW CARDS */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--cream); padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 3px solid var(--yellow);
}
.review-card .stars {
  color: var(--yellow); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 12px;
}
.review-card .quote {
  font-style: italic; color: var(--charcoal); font-size: 1rem; margin-bottom: 16px;
  min-height: 80px;
}
.review-card .author {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 1px; color: var(--grey-2); font-size: 0.9rem;
}
.placeholder-tag {
  display: inline-block; background: var(--cyan); color: var(--charcoal);
  padding: 4px 10px; border-radius: 2px;
  font-family: 'Oswald', sans-serif; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.cms-empty {
  display: inline-block;
  color: var(--grey);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.7;
}
.review-card .stars .cms-empty {
  font-style: normal;
  font-size: 0.95rem;
}

/* CTA BAND */
.cta-band {
  background: var(--yellow); color: var(--charcoal);
  padding: 56px 24px; text-align: center;
}
.cta-band h2 { color: var(--charcoal); margin-bottom: 14px; }
.cta-band .btn { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.cta-band .btn:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }

/* CONTENT */
.content { max-width: 760px; margin: 0 auto; }
.content p { font-size: 1.05rem; color: var(--charcoal-3); margin-bottom: 1.2em; }
.content h2 { margin-top: 1.5em; }
.content ul { margin: 0 0 1.5em 24px; }
.content li { margin-bottom: 0.5em; color: var(--charcoal-3); }
.callout {
  background: var(--charcoal); color: var(--cream);
  padding: 24px 28px; border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  margin: 28px 0;
}
.callout strong { color: var(--yellow); }

/* TWO-COL */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-card {
  background: var(--charcoal); color: var(--cream);
  padding: 40px; border-radius: var(--radius);
  border-top: 4px solid var(--yellow);
}
.contact-card h3 { color: var(--cream); }
.contact-line {
  display: flex; gap: 14px; align-items: center; margin: 18px 0;
}
.contact-line .label {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-size: 0.85rem; color: var(--yellow);
  min-width: 70px;
}
.contact-line .val { font-size: 1.05rem; }
.contact-card .phone-big {
  font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--yellow);
  display: block; margin-top: 8px;
}
.contact-card .phone-big:hover { color: var(--cream); }

/* FOOTER */
.site-footer {
  background: var(--charcoal); color: var(--grey);
  padding: 30px 24px; text-align: center;
  border-top: 1px solid var(--charcoal-3);
  font-size: 0.9rem;
}
.site-footer a { color: var(--yellow); }

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav-desktop, .phone-cta.desktop { display: none; }
  .burger { display: block; }
  .hero { min-height: 70vh; }
  .hero-inner { padding: 60px 0; }
  .section { padding: 56px 0; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .header-inner { padding: 12px 16px; gap: 12px; }
  .brand { padding: 0; border: 0; }
  .brand img { height: 64px; }
  .brand-text { font-size: 1rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
