/* =========================================================
   Sparky's Electric — v2 "Voltage"
   Aesthetic: industrial-brutalist meets blueprint
   Per anthropic-skills/frontend-design — bold, distinctive,
   no Inter, no Space Grotesk, no AI-template clichés.
   ========================================================= */

:root {
  --void: #0A0A0A;
  --void-soft: #141414;
  --void-card: #1A1A1A;

  --volt: #F5FF00;            /* high-voltage yellow — primary accent */
  --volt-dim: #C8D000;        /* dimmer for press states */
  --hazard: #FF5C00;          /* hazard orange — danger / emergency */

  --white: #F5F5F0;           /* near-white, slightly warm */
  --bone: #E8E6DC;
  --stone: #8C8A82;
  --concrete: #4A4842;

  --grain-strength: 0.06;

  --font-brutal: 'Bungee', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
}

/* Focus visible — keyboard users get a real ring; mouse users don't see flash */
:focus-visible {
  outline: 3px solid var(--volt);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* Respect reduced-motion preference everywhere */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .voltage-strip .marquee { animation: none !important; }
  .hero-schematic path { animation: none !important; stroke-dashoffset: 0 !important; }
  .topbar .pulse::before { animation: none !important; }
}

/* Touch + scroll behavior */
body {
  touch-action: manipulation;
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--white);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay across entire site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: var(--grain-strength);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--volt); text-decoration: none; transition: color .15s; }
a:hover { color: var(--white); }

img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
.brutal {
  font-family: var(--font-brutal);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}
.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.04em;
}

h1, h2, h3 { font-family: var(--font-brutal); font-weight: 400; line-height: 0.9; text-transform: uppercase; letter-spacing: -0.015em; }

p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-tight {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Top voltage strip ---------- */
.voltage-strip {
  background: var(--volt);
  color: var(--void);
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.voltage-strip .marquee {
  display: flex;
  gap: 60px;
  animation: scroll-strip 30s linear infinite;
  white-space: nowrap;
}
@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.voltage-strip .marquee span::after {
  content: "⚡";
  margin-left: 60px;
  color: var(--void);
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--void);
  border-bottom: 1px solid rgba(245, 255, 0, 0.15);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.brand:hover { color: var(--white); }
.brand-mark {
  width: 48px; height: 48px;
  background: var(--volt);
  display: grid; place-items: center;
  color: var(--void);
  font-family: var(--font-brutal);
  font-size: 1.6rem;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 100%, 0 100%);
}
.brand-name {
  font-family: var(--font-brutal);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.9;
}
.brand-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--volt);
  letter-spacing: 0.22em;
  margin-top: 4px;
  font-weight: 600;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-items a {
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color .15s;
}
.nav-items a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--volt);
  transition: width .2s;
}
.nav-items a:hover,
.nav-items a.active { color: var(--volt); }
.nav-items a:hover::after,
.nav-items a.active::after { width: 100%; }

.nav-cta {
  background: var(--volt);
  color: var(--void) !important;
  padding: 12px 22px;
  font-family: var(--font-brutal) !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 92% 100%, 0 100%);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--white);
  color: var(--void) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--volt);
  color: var(--volt);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  cursor: pointer;
}

/* ---------- Hazard stripe divider ---------- */
.hazard-stripe {
  height: 24px;
  background: repeating-linear-gradient(
    -45deg,
    var(--volt) 0,
    var(--volt) 24px,
    var(--void) 24px,
    var(--void) 48px
  );
  position: relative;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: var(--void);
}

/* Schematic background — animated SVG lines */
.hero-schematic {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.18;
}
.hero-schematic path {
  fill: none;
  stroke: var(--volt);
  stroke-width: 1.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 3s ease-out forwards;
}
.hero-schematic path:nth-child(2) { animation-delay: 0.4s; }
.hero-schematic path:nth-child(3) { animation-delay: 0.8s; }
.hero-schematic path:nth-child(4) { animation-delay: 1.2s; }
@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  min-height: 75vh;
}

/* Vertical rotated lettering on the right */
.hero-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-brutal);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  letter-spacing: 0.42em;
  color: var(--volt);
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-vertical span {
  color: var(--stone);
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--volt);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-meta::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--volt);
}

.hero h1 {
  font-size: clamp(3.5rem, 11vw, 10rem);
  margin-bottom: 36px;
  letter-spacing: -0.03em;
  line-height: 0.85;
}
.hero h1 .line { display: block; }
.hero h1 .accent {
  color: var(--volt);
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 0.04em;
  left: -0.05em;
  right: -0.05em;
  height: 0.18em;
  background: var(--volt);
  opacity: 0.18;
  z-index: -1;
  transform: skewX(-12deg);
}

.hero .stripe {
  display: inline-block;
  background: var(--hazard);
  color: var(--void);
  padding: 4px 10px;
  font-family: var(--font-brutal);
  letter-spacing: 0;
  transform: rotate(-2deg);
}

.hero p.lede {
  max-width: 540px;
  font-size: 1.2rem;
  color: var(--bone);
  margin-bottom: 48px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Buttons (industrial slabs) ---------- */
.slab {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 30px;
  font-family: var(--font-brutal);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s;
  position: relative;
  overflow: hidden;
}
.slab-volt {
  background: var(--volt);
  color: var(--void);
  box-shadow: 6px 6px 0 var(--hazard);
}
.slab-volt:hover {
  color: var(--void);
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--hazard);
}
.slab-volt:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--hazard);
}
.slab-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.slab-ghost:hover {
  background: var(--white);
  color: var(--void);
}

.slab .arrow { font-size: 1.3em; line-height: 1; transition: transform .2s; }
.slab:hover .arrow { transform: translateX(4px); }

/* ---------- Counters strip (below hero, full-bleed) ---------- */
.counters {
  background: var(--void);
  border-top: 2px solid var(--volt);
  border-bottom: 2px solid var(--volt);
  padding: 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counter {
  padding: 40px 32px;
  border-right: 1px solid rgba(245, 255, 0, 0.2);
  position: relative;
}
.counter:last-child { border-right: none; }
.counter .num {
  font-family: var(--font-brutal);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--volt);
  line-height: 0.85;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.big-stats strong { font-variant-numeric: tabular-nums; }

/* sr-only utility for screen-reader-only labels */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Meet-the-shop photo split */
.shop-photo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 30px 0 60px;
}
.shop-photo .photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid var(--volt);
  box-shadow: 12px 12px 0 var(--hazard);
}
.shop-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  display: block;
}
.shop-photo h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.shop-photo p {
  color: var(--bone);
  font-size: 1.08rem;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .shop-photo { grid-template-columns: 1fr; gap: 40px; }
}

/* Trust band — visible credentials, not buried in footer */
.trust-band {
  background: var(--void-soft);
  border-top: 1px solid rgba(245, 255, 0, 0.18);
  border-bottom: 1px solid rgba(245, 255, 0, 0.18);
  padding: 28px 0;
}
.trust-band .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 44px;
}
.trust-band .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 600;
}
.trust-band .item::before {
  content: "✓";
  color: var(--volt);
  font-size: 1.1rem;
  font-weight: 700;
}
.counter .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--bone);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Section base ---------- */
section { padding: 120px 0; position: relative; }

.section-marker {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 50px;
}
.section-marker .num {
  font-family: var(--font-brutal);
  font-size: clamp(5rem, 9vw, 8rem);
  color: var(--volt);
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.section-marker .meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--bone);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border-left: 2px solid var(--volt);
  padding-left: 16px;
}
.section-marker h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 14px;
  max-width: 16ch;
}

/* ---------- Services — bento with big numbers ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.svc {
  background: var(--void-card);
  border: 1px solid #2A2A2A;
  padding: 36px;
  position: relative;
  transition: background .25s, border-color .25s, transform .25s;
  overflow: hidden;
  cursor: default;
}
.svc.tall { grid-column: span 4; grid-row: span 2; }
.svc.wide { grid-column: span 8; }
.svc.std  { grid-column: span 4; }
.svc.half { grid-column: span 6; }

.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.svc:hover {
  background: var(--void-soft);
  border-color: var(--volt);
  transform: translateY(-4px);
}
.svc:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--font-brutal);
  font-size: 2.6rem;
  color: var(--volt);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  display: block;
}
.svc h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc p {
  color: var(--stone);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.55;
}
.svc.tall h3 { font-size: 2.2rem; }
.svc.tall p { font-size: 1.05rem; }

/* ---------- Diagonal cut sections ---------- */
.cut-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
}
.cut-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

/* ---------- Editorial split — "Why" section ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.editorial-lede {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-family: var(--font-brutal);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.editorial-lede em {
  color: var(--hazard);
  font-style: normal;
}

.principles {
  list-style: none;
}
.principles li {
  padding: 24px 0;
  border-top: 1px solid #2A2A2A;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.principles li:first-child { border-top: none; padding-top: 0; }
.principles .marker {
  font-family: var(--font-mono);
  color: var(--volt);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding-top: 6px;
}
.principles h4 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.principles p { color: var(--stone); margin: 0; font-size: 0.97rem; }

/* ---------- Testimonials — index-card stacked ---------- */
.testimonials-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: var(--void-card);
  border: 1px solid #2A2A2A;
  padding: 36px 32px;
  position: relative;
  transition: background .25s, border-color .25s, transform .25s;
}
.tcard::before {
  content: "★★★★★";
  display: block;
  color: var(--volt);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}
.tcard blockquote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 28px;
  font-weight: 500;
}
.tcard cite {
  font-style: normal;
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--volt);
  font-weight: 600;
}
.tcard cite small {
  color: var(--stone);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.tcard:hover {
  background: var(--void-soft);
  border-color: var(--volt);
}

/* ---------- Service area — split ---------- */
.area {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.towns {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 30px;
  border-top: 2px solid var(--volt);
}
.towns li {
  padding: 16px 0 16px 18px;
  border-bottom: 1px solid #2A2A2A;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--white);
  letter-spacing: 0.05em;
  position: relative;
}
.towns li:nth-child(odd) { border-right: 1px solid #2A2A2A; padding-right: 18px; margin-right: -1px; }
.towns li::before {
  content: "▸";
  color: var(--volt);
  margin-right: 12px;
}

.dispatch {
  background: var(--volt);
  color: var(--void);
  padding: 50px 40px;
  position: relative;
}
.dispatch::after {
  content: "";
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 4px solid var(--hazard);
  z-index: -1;
}
.dispatch .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.dispatch h3 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--void);
  letter-spacing: -0.02em;
}
.dispatch .phone-big {
  font-family: var(--font-brutal);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--void);
  display: block;
  margin: 20px 0 6px;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.dispatch .hours {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.dispatch .slab-volt {
  background: var(--void);
  color: var(--volt);
  margin-top: 28px;
  box-shadow: 6px 6px 0 var(--hazard);
}
.dispatch .slab-volt:hover {
  color: var(--volt);
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--hazard);
}

/* ---------- Final CTA — massive brutal ---------- */
.final {
  background: var(--volt);
  color: var(--void);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 40px,
    rgba(10, 10, 10, 0.04) 40px,
    rgba(10, 10, 10, 0.04) 80px
  );
}
.final .wrap { position: relative; }
.final h2 {
  font-size: clamp(3rem, 9vw, 8rem);
  margin-bottom: 32px;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--void);
}
.final h2 .hl {
  background: var(--void);
  color: var(--volt);
  padding: 0 0.1em;
  display: inline-block;
}
.final p {
  max-width: 580px;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--void);
}
.final .slab-volt {
  background: var(--void);
  color: var(--volt);
  box-shadow: 8px 8px 0 var(--hazard);
}
.final .slab-volt:hover {
  color: var(--volt);
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--hazard);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--void);
  border-top: 1px solid #2A2A2A;
  padding: 80px 0 36px;
  color: var(--stone);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--volt);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul li a, .site-footer ul li {
  color: var(--bone);
  font-size: 0.93rem;
}
.site-footer ul li a:hover { color: var(--volt); }
.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--concrete);
}

/* ---------- Page header (non-home) ---------- */
.page-header {
  background: var(--void);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--volt);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 60px,
    rgba(245, 255, 0, 0.025) 60px,
    rgba(245, 255, 0, 0.025) 120px
  );
}
.page-header .wrap { position: relative; }
.page-header .crumbs {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--bone);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.page-header .crumbs a { color: var(--bone); }
.page-header .crumbs span { color: var(--volt); margin: 0 10px; }
.page-header h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-bottom: 22px;
  max-width: 18ch;
  letter-spacing: -0.025em;
}
.page-header h1 .accent { color: var(--volt); }
.page-header p {
  max-width: 600px;
  color: var(--bone);
  font-size: 1.15rem;
}

/* ---------- Service detail blocks ---------- */
.svc-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  padding: 70px 0;
  border-bottom: 1px solid #2A2A2A;
  align-items: start;
}
.svc-block:last-child { border-bottom: none; }
.svc-block .number {
  font-family: var(--font-brutal);
  font-size: clamp(5rem, 10vw, 8rem);
  color: var(--volt);
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.svc-block h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.svc-block p { color: var(--bone); margin-bottom: 22px; max-width: 70ch; font-size: 1.05rem; }
.svc-block ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin-top: 22px;
}
.svc-block ul li {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--bone);
  padding: 6px 0;
  letter-spacing: 0.04em;
}
.svc-block ul li::before {
  content: "→ ";
  color: var(--volt);
  font-weight: 700;
}

/* ---------- About / Story ---------- */
.story {
  max-width: 760px;
  margin: 0 auto;
}
.story p {
  color: var(--bone);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5em;
}
.story .pull {
  font-family: var(--font-brutal);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  padding: 40px 0;
  border-top: 4px solid var(--volt);
  border-bottom: 4px solid var(--volt);
  margin: 50px 0;
  text-transform: uppercase;
}
.story .pull em { color: var(--hazard); font-style: normal; }

.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--void-soft);
  border: 2px solid var(--volt);
  margin: 60px 0;
}
.big-stats > div {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid #2A2A2A;
}
.big-stats > div:last-child { border-right: none; }
.big-stats strong {
  font-family: var(--font-brutal);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--volt);
  display: block;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.big-stats span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--bone);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 18px;
  display: block;
  font-weight: 600;
}

/* ---------- Reviews ---------- */
.review-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
  padding: 60px 50px;
  background: var(--void-soft);
  border: 2px solid var(--volt);
}
.review-meta .big-rating {
  text-align: left;
}
.review-meta .big-rating .num {
  font-family: var(--font-brutal);
  font-size: 6rem;
  color: var(--volt);
  line-height: 0.85;
  letter-spacing: -0.05em;
  display: block;
}
.review-meta .big-rating .stars { color: var(--volt); font-size: 1.3rem; letter-spacing: 0.2em; margin: 12px 0 8px; }
.review-meta .big-rating .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--bone);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.review-meta h3 {
  font-size: 2.2rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.review-meta p { color: var(--bone); font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info {
  background: var(--void-soft);
  border: 2px solid var(--volt);
  padding: 50px 44px;
}
.contact-info h3 {
  font-size: 1.8rem;
  color: var(--volt);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.contact-info > p { color: var(--bone); margin-bottom: 36px; }
.cblock {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #2A2A2A;
}
.cblock:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.cblock .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--volt);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.cblock .value {
  font-family: var(--font-brutal);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cblock .value a { color: var(--white); }
.cblock .value a:hover { color: var(--volt); }
.cblock .sub { color: var(--stone); font-size: 0.88rem; margin-top: 6px; font-family: var(--font-mono); letter-spacing: 0.06em; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid #2A2A2A;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}
.hours-table th { color: var(--bone); text-align: left; font-weight: 500; }
.hours-table td { text-align: right; color: var(--volt); font-weight: 600; }
.hours-table th, .hours-table td { padding: 11px 0; border-bottom: 1px solid #2A2A2A; font-family: var(--font-mono); font-size: 0.92rem; letter-spacing: 0.05em; }

.contact-form {
  background: var(--void-soft);
  border: 2px solid #2A2A2A;
  padding: 50px;
}
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.contact-form > p { color: var(--bone); margin-bottom: 28px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  background: var(--void);
  border: 2px solid #2A2A2A;
  color: var(--white);
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--volt);
  background: var(--void);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  background: var(--volt);
  color: var(--void);
  border: none;
  padding: 22px;
  font-family: var(--font-brutal);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--hazard);
  transition: all .15s;
  margin-top: 12px;
}
.form-submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--hazard);
}
.form-submit:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--hazard);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ---------- Electric arc cursor decoration ---------- */
.arc-trace {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  width: 0; height: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-items { display: none; }
  .nav-items.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--void);
    padding: 22px 32px 30px;
    gap: 16px;
    align-items: stretch;
    border-bottom: 2px solid var(--volt);
  }
  .nav-toggle { display: inline-flex; }

  .hero .wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-vertical { display: none; }

  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter { border-right: 1px solid rgba(245,255,0,.2); border-bottom: 1px solid rgba(245,255,0,.2); }
  .counter:nth-child(2) { border-right: none; }
  .counter:nth-child(4) { border-right: none; }

  .services { grid-template-columns: 1fr; }
  .svc.tall, .svc.wide, .svc.std, .svc.half { grid-column: 1 / -1; grid-row: auto; }

  .editorial, .area, .contact-grid { grid-template-columns: 1fr; gap: 50px; }

  .big-stats { grid-template-columns: 1fr 1fr; }
  .big-stats > div:nth-child(2) { border-right: none; }
  .big-stats > div:nth-child(1), .big-stats > div:nth-child(2) { border-bottom: 1px solid #2A2A2A; }

  .testimonials-strip { grid-template-columns: 1fr; }

  .review-meta { grid-template-columns: 1fr; padding: 40px 30px; gap: 30px; }

  .svc-block { grid-template-columns: 1fr; gap: 24px; padding: 50px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  section { padding: 80px 0; }
  .hero { padding: 60px 0 90px; }
}

@media (max-width: 540px) {
  .counters-grid { grid-template-columns: 1fr; }
  .counter { border-right: none; }
  .big-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-block ul { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .wrap, .wrap-tight { padding: 0 22px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
}
