/* ============================================================
   Voltage Electric — bold/industrial NYC electrician sample
   Black + safety yellow + signal red
   ============================================================ */

:root {
  --black:      #0a0a0a;
  --black-2:    #141414;
  --surface:    #1a1a1a;
  --line:       rgba(255,255,255,.1);
  --line-2:     rgba(255,255,255,.18);
  --bone:       #f5f5f3;
  --paper:      #ffffff;
  --ink:        #0a0a0a;
  --text:       #2a2a2a;
  --muted:      #6b6b6b;
  --yellow:     #ffd400;
  --yellow-2:   #ffe14d;
  --red:        #e63946;
  --red-2:      #c1121f;

  --display: 'Bebas Neue', 'Impact', sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

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

/* ============================================================
   SAMPLE BANNER
   ============================================================ */
.sample-banner {
  background: var(--yellow); color: var(--black);
  text-align: center; padding: 8px 16px;
  font-size: 12.5px; font-weight: 600;
}
.sample-banner a { color: var(--black); text-decoration: underline; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--black);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.topbar-l { display: flex; align-items: center; gap: 10px; }
.topbar-l .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.topbar-r { display: flex; gap: 18px; align-items: center; }
.topbar-r a { color: var(--yellow); }
@media (max-width: 720px) { .topbar-r { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
header.head {
  background: var(--black); color: var(--bone);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--yellow);
}
.head-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 400;
  font-size: 26px; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}
.brand-mark {
  width: 44px; height: 44px;
  background: var(--yellow); color: var(--black);
  display: grid; place-items: center;
  /* angled chevron — like a lightning strike */
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
}
.brand-mark svg { width: 22px; height: 22px; }
nav.primary { display: flex; gap: 0; justify-self: center; }
nav.primary a {
  font-family: var(--display); font-size: 16px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 10px 16px; color: var(--bone);
  position: relative;
  transition: color .15s, background .15s;
}
nav.primary a:hover { color: var(--yellow); }
nav.primary a.active { color: var(--black); background: var(--yellow); }
.head-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 12px 20px;
  font-family: var(--display); font-size: 16px;
  letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  padding-left: 28px; padding-right: 28px;
}
.head-cta:hover { background: var(--red-2); transform: translateY(-1px); }
.head-cta svg { width: 14px; height: 14px; }
.menu-toggle { display: none; }

@media (max-width: 880px) {
  .head-inner { gap: 12px; padding: 14px 16px; }
  nav.primary {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--black);
    border-bottom: 3px solid var(--yellow); padding: 10px;
  }
  nav.primary.open { display: flex; }
  nav.primary a { width: 100%; padding: 14px; }
  .menu-toggle {
    display: inline-grid; place-items: center;
    width: 38px; height: 38px;
    background: var(--surface); color: var(--yellow);
  }
  .menu-toggle svg { width: 20px; height: 20px; }
  .head-cta { padding: 10px 16px; font-size: 14px; }
  .head-cta-text { display: none; }
}

/* ============================================================
   HERO — full bleed dark with caution stripe
   ============================================================ */
.hero {
  background: var(--black); color: var(--bone);
  padding: clamp(60px, 8vw, 110px) var(--gutter) 0;
  position: relative;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 110px);
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yellow);
  padding: 6px 14px;
  border: 1px solid var(--yellow);
  margin-bottom: 28px;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 9vw, 128px);
  line-height: .92; letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone); margin: 0 0 24px;
}
.hero h1 .y { color: var(--yellow); }
.hero h1 .strike {
  display: inline-block;
  background: var(--red); color: white;
  padding: 0 .12em .04em;
  transform: skewX(-8deg);
}
.hero p.lede {
  font-size: 18px; line-height: 1.55;
  color: rgba(245,245,243,.8); max-width: 540px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 26px;
  font-family: var(--display); font-weight: 400;
  font-size: 18px; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-call {
  background: var(--red); color: white;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  padding-left: 32px; padding-right: 32px;
}
.btn-call:hover { background: var(--red-2); transform: translate(-1px,-1px); }
.btn-yellow {
  background: var(--yellow); color: var(--black);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  padding-left: 32px; padding-right: 32px;
}
.btn-yellow:hover { background: var(--yellow-2); transform: translate(-1px,-1px); }
.btn-ghost {
  border: 2px solid var(--bone);
  color: var(--bone);
  background: transparent;
}
.btn-ghost:hover { background: var(--bone); color: var(--black); }

.hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 6px solid var(--yellow);
  position: relative;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.15) saturate(.7);
}
.hero-photo .stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 16px, var(--black) 16px 32px);
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { aspect-ratio: 16/12; max-height: 400px; }
}

/* Caution stripe band beneath hero */
.caution-stripe {
  height: 14px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--black) 18px 36px);
}

/* ============================================================
   STATS / TICKER
   ============================================================ */
.stats {
  background: var(--bone);
  padding: 36px var(--gutter);
  border-bottom: 4px solid var(--black);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: left;
}
.stat .num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(42px, 5.5vw, 64px); line-height: .9;
  color: var(--black); letter-spacing: 0.01em;
}
.stat .label {
  margin-top: 6px;
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: clamp(70px, 9vw, 120px) var(--gutter); }
.container { max-width: var(--max); margin: 0 auto; }

.section-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 700;
  font-size: 11.5px; color: var(--red);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content: ''; width: 24px; height: 2px; background: var(--red);
}
.section-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .95; letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--black); margin: 0 0 14px;
}
.section-head h2 .y { color: var(--yellow); -webkit-text-stroke: 1px var(--black); }
.section-head p {
  font-size: 17px; line-height: 1.55;
  color: var(--muted); margin: 0;
}

/* ============================================================
   SERVICES — bold tile grid
   ============================================================ */
.services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 3px solid var(--black);
}
.svc {
  background: var(--paper);
  padding: 28px 24px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
  position: relative;
}
.svc:nth-child(4n) { border-right: 0; }
.svc:nth-last-child(-n+4) { border-bottom: 0; }
.svc:hover { background: var(--yellow); }
.svc .num {
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; color: var(--red);
  letter-spacing: 0.1em;
}
.svc h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; color: var(--black);
  margin: 0; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1;
}
.svc p {
  font-size: 14px; line-height: 1.55;
  color: var(--text); margin: 0;
}

@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .svc:nth-child(4n) { border-right: 1px solid var(--black); }
  .svc:nth-child(2n) { border-right: 0; }
  .svc:nth-last-child(-n+4) { border-bottom: 1px solid var(--black); }
  .svc:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .services { grid-template-columns: 1fr; }
  .svc { border-right: 0 !important; border-bottom: 1px solid var(--black) !important; }
  .svc:last-child { border-bottom: 0 !important; }
}

/* ============================================================
   WHY US — yellow band with checks
   ============================================================ */
.why { background: var(--yellow); color: var(--black); }
.why .section-head .eyebrow { color: var(--black); }
.why .section-head .eyebrow::before, .why .section-head .eyebrow::after { background: var(--black); }
.why .section-head h2 { color: var(--black); }
.why .section-head p { color: rgba(10,10,10,.75); }
.why-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--black); color: var(--bone);
  padding: 32px 28px;
  border: 2px solid var(--black);
  display: flex; flex-direction: column; gap: 10px;
}
.why-card .num {
  font-family: var(--display); font-weight: 400;
  font-size: 48px; color: var(--yellow);
  line-height: .85; letter-spacing: 0.02em;
}
.why-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 24px; color: var(--bone);
  margin: 8px 0 0; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1;
}
.why-card p {
  font-size: 14.5px; line-height: 1.55;
  color: rgba(245,245,243,.75); margin: 0;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.r-card {
  background: var(--paper);
  border: 2px solid var(--black);
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.r-card .stars { color: var(--yellow); -webkit-text-stroke: 1px var(--black); font-size: 15px; letter-spacing: 3px; }
.r-card blockquote {
  font-size: 15px; line-height: 1.55;
  color: var(--text); margin: 0;
}
.r-card blockquote em {
  background: var(--yellow); color: var(--black);
  padding: 0 4px; font-style: normal; font-weight: 700;
}
.r-meta {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--black);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.r-meta b { display: block; font-family: var(--display); font-weight: 400; font-size: 17px; color: var(--black); letter-spacing: 0.01em; text-transform: uppercase; }
.r-meta small { color: var(--muted); font-weight: 400; }
.r-meta .where { color: var(--red); }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA — full black with huge phone
   ============================================================ */
.cta {
  background: var(--black); color: var(--bone);
  padding: clamp(70px, 9vw, 110px) var(--gutter);
  text-align: center;
  position: relative;
  border-top: 14px solid;
  border-image: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--black) 18px 36px) 14;
}
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .95; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone); margin: 0 0 20px;
}
.cta h2 .y { color: var(--yellow); }
.cta p {
  color: rgba(245,245,243,.8); font-size: 17px;
  max-width: 560px; margin: 0 auto 30px;
}
.cta .phone-display {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1; letter-spacing: 0.01em;
  color: var(--yellow); padding: 24px 36px;
  border: 4px solid var(--yellow);
  margin: 16px auto 28px;
  max-width: max-content;
  transition: background .15s;
}
.cta .phone-display:hover { background: var(--yellow); color: var(--black); }
.cta-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: var(--black); color: rgba(245,245,243,.75);
  padding: 50px var(--gutter) 28px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.foot-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.foot-brand .mk {
  width: 38px; height: 38px;
  background: var(--yellow); color: var(--black);
  display: grid; place-items: center;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
}
.foot-brand .mk svg { width: 20px; height: 20px; }
.foot-brand .name {
  font-family: var(--display); font-weight: 400;
  color: var(--bone); font-size: 22px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.foot-tag p { margin: 0; max-width: 320px; line-height: 1.55; color: rgba(245,245,243,.65); }
.foot-col h4 {
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; color: var(--yellow);
  margin: 0 0 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col li a { color: rgba(245,245,243,.7); transition: color .15s; }
.foot-col li a:hover { color: var(--yellow); }
.foot-bottom {
  max-width: var(--max); margin: 22px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono); font-weight: 700;
  font-size: 11px; color: rgba(245,245,243,.5);
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 880px) { .foot-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-inner { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE STICKY CALL
   ============================================================ */
.mobile-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--red); color: white;
  padding: 14px 18px; z-index: 100;
  text-align: center;
  font-family: var(--display); font-size: 18px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-top: 4px solid var(--yellow);
}
.mobile-call svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 6px; }
@media (max-width: 720px) {
  .mobile-call { display: block; }
  body { padding-bottom: 56px; }
}
