/* =========================================================
   OUTFITTED ELECTRIC LLC
   Dark industrial / high-voltage theme
   ========================================================= */

:root {
  --red: #E5231C;
  --red-deep: #b01410;
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --panel: #141417;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --text: #f2f2f3;
  --muted: #9c9ca4;
  --muted-2: #7a7a82;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
}

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

html { scroll-behavior: smooth; }
.card[id] { scroll-margin-top: 130px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.wrap { width: min(var(--maxw), 100% - 48px); margin-inline: auto; }

/* ---------- shared type ---------- */
.kicker {
  font-family: "Space Mono", monospace;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker--red { color: var(--red); }

.h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: .98;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 18px 0 22px;
}
.hl { color: var(--red); }

.section { padding: clamp(64px, 9vw, 130px) 0; }
.section__head { margin-bottom: 54px; }
.lede { color: var(--muted); max-width: 54ch; margin-top: 4px; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 13px 22px;
  background: var(--red);
  color: #fff;
  border: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { background: #ff3127; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(229,35,28,.22); }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--sm { padding: 10px 16px; font-size: .8rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--text);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: var(--text); box-shadow: none; }
.btn__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,12,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(10,10,12,.94); border-color: var(--line-strong); }
.nav__inner {
  width: min(var(--maxw), 100% - 48px);
  margin-inline: auto;
  height: 104px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand__mark svg { width: 76px; height: 70px; display: block; }
.brand__type { display: flex; flex-direction: column; line-height: .9; }
.brand__type strong {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: 2rem; letter-spacing: .02em;
}
.brand__type em {
  font-family: "Archivo", sans-serif; font-weight: 800;
  font-size: 1.1rem; letter-spacing: .2em; color: var(--red);
}
.brand__type em span { color: var(--muted); margin-left: 2px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn),
.nav__dd > a {
  font-weight: 600; font-size: .92rem; color: var(--muted);
  transition: color .2s; position: relative;
}
.nav__links > a:not(.btn):hover,
.nav__dd > a:hover { color: var(--text); }
.nav__links > a:not(.btn)::after,
.nav__dd > a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red); transition: width .25s var(--ease);
}
.nav__links > a:not(.btn):hover::after,
.nav__dd > a:hover::after { width: 100%; }

/* services dropdown */
.nav__dd { position: relative; display: inline-flex; align-items: center; }
.nav__dd > a { display: inline-flex; align-items: center; gap: 6px; }
.nav__caret { font-size: .7em; line-height: 1; color: var(--red); transition: transform .25s var(--ease); display: inline-block; }
.nav__dd:hover .nav__caret, .nav__dd:focus-within .nav__caret { transform: rotate(180deg); }
.nav__ddmenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 16px; min-width: 250px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 110;
}
.nav__dd:hover .nav__ddmenu, .nav__dd:focus-within .nav__ddmenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__ddpanel {
  background: rgba(10,10,12,.97);
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--red);
  padding: 8px 0;
  backdrop-filter: blur(14px);
}
.nav__ddpanel a {
  display: block; padding: 11px 20px;
  font-weight: 600; font-size: .88rem; color: var(--muted);
  transition: color .2s, background .2s, padding-left .2s var(--ease);
}
.nav__ddpanel a:hover { color: var(--text); background: rgba(255,255,255,.05); padding-left: 26px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(70px, 12vw, 150px) 0 0;
  overflow: hidden;
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 80%);
  opacity: .6;
}
.hero__glow {
  position: absolute; top: -10%; right: -10%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(229,35,28,.14), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero__pulse {
  position: absolute; left: 0; bottom: 6%;
  width: 100%; height: 200px; opacity: .35; pointer-events: none;
}
.hero__pulse path {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  filter: drop-shadow(0 0 6px rgba(229,35,28,.8));
  animation: trace 9s linear infinite;
}
@keyframes trace { to { stroke-dashoffset: -2200; } }

.hero__content { position: relative; z-index: 2; width: min(var(--maxw), 100% - 48px); margin-inline: auto; }
.hero__title {
  font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: .92; letter-spacing: .005em; text-transform: uppercase;
  margin: 22px 0 18px;
}
.hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
}
.hero__slogan {
  font-family: "Anton", sans-serif; font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: .04em; text-transform: uppercase; color: var(--text); margin-bottom: 18px;
}
.hero__slogan span { color: var(--red); }
.hero__lede { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats {
  position: relative; z-index: 2;
  width: min(var(--maxw), 100% - 48px); margin: clamp(48px,7vw,90px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); padding-top: 30px; gap: 20px;
}
.stat b {
  display: block; font-family: "Anton", sans-serif; font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1;
}
.stat b span { color: var(--red); }
.stat i { font-style: normal; color: var(--muted); font-size: .92rem; letter-spacing: .02em; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-block: 1px solid rgba(229,35,28,.4);
  background: var(--bg-2);
  overflow: hidden; white-space: nowrap;
  padding: 14px 0;
}
.marquee__track { display: inline-flex; animation: marquee 42s linear infinite; }
.marquee__track span {
  font-family: "Anton", sans-serif; font-size: 1.05rem; letter-spacing: .08em;
  text-transform: uppercase; color: #cfcfd4; padding-right: 40px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 60px; align-items: start; }
.about__copy p { color: var(--muted); margin-bottom: 16px; max-width: 56ch; }
.about__copy em { color: var(--text); font-weight: 600; }
.about__sign { font-family: "Space Mono", monospace; color: var(--text)!important; margin-top: 8px; }

.about__card {
  background: var(--panel); border: 1px solid var(--line);
  padding: 34px; position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.about__card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red);
}
.about__cardhead {
  font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .2em;
  color: var(--muted); display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: pulse 2s infinite; }
.about__promise { font-family: "Anton", sans-serif; font-size: 1.9rem; line-height: 1.05; text-transform: uppercase; margin-bottom: 24px; }
.about__promise span { color: var(--red); }
.about__list { list-style: none; }
.about__list li {
  padding: 13px 0 13px 26px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .98rem; position: relative;
}
.about__list li::before { content: "⚡"; position: absolute; left: 0; color: var(--red); }

/* =========================================================
   SERVICES
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--bg); padding: 40px 32px 44px; position: relative;
  transition: background .3s var(--ease); overflow: hidden; min-height: 230px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.card:hover { background: var(--panel); }
.card__num {
  font-family: "Space Mono", monospace; font-size: .85rem; color: var(--red);
  letter-spacing: .1em; display: block; margin-bottom: 22px;
}
.card h3 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.32rem; margin-bottom: 12px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: .98rem; }
.card__slash {
  position: absolute; right: -40px; bottom: -40px; width: 110px; height: 110px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 6px, transparent 6px 16px);
  opacity: 0; transform: translate(10px,10px); transition: opacity .35s var(--ease), transform .35s var(--ease);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.card:hover .card__slash { opacity: .5; transform: translate(0,0); }

/* expandable service details */
.card__toggle {
  margin-top: auto; padding: 18px 0 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; cursor: pointer;
  font-family: "Space Mono", monospace; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  position: relative; z-index: 2;
}
.card__toggle::after {
  content: "+"; font-size: 1.05rem; line-height: 1;
  transition: transform .3s var(--ease);
}
.card.open .card__toggle::after { transform: rotate(45deg); }
.card__toggle:hover { color: #ff3127; }
.card__details {
  list-style: none; overflow: hidden; width: 100%;
  max-height: 0; margin-top: 0;
  transition: max-height .45s var(--ease), margin-top .3s var(--ease);
}
.card.open .card__details { max-height: 340px; margin-top: 16px; }
.card__details li {
  padding: 9px 0 9px 24px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .9rem; position: relative;
}
.card__details li::before { content: "⚡"; position: absolute; left: 0; color: var(--red); font-size: .8rem; }

.card--cta {
  background: var(--red); grid-column: 1 / -1; min-height: 0;
  flex-direction: row; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px 40px;
}
.card--cta:hover { background: #ff3127; }
.card--cta h3 { font-size: 1.4rem; }
.card--cta p { color: rgba(255,255,255,.85); }
.card--cta .btn { background: #0a0a0c; flex-shrink: 0; }
.card--cta .btn:hover { background: #000; }

/* industries strip */
.industries { margin-top: 46px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 26px; }
.industries__list { list-style: none; display: flex; flex-wrap: wrap; align-items: baseline; }
.industries__list li { color: var(--muted); font-size: .95rem; font-weight: 600; }
.industries__list li + li::before { content: "·"; color: var(--red); margin: 0 12px; font-weight: 800; }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.area { background: var(--bg-2); }
.area__grid { display: grid; grid-template-columns: 1.2fr .85fr; gap: 60px; align-items: center; }
.area__lede { color: var(--muted); max-width: 48ch; margin-bottom: 28px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  font-family: "Space Mono", monospace; font-size: .82rem;
  border: 1px solid var(--line-strong); padding: 8px 14px; color: var(--muted);
  transition: .25s var(--ease);
}
.chips li:hover { border-color: var(--red); color: var(--text); }
.chips__more { border-style: dashed!important; color: var(--red)!important; }

.area__hoursbox {
  background: var(--panel); border: 1px solid var(--line); padding: 34px;
  clip-path: polygon(0 24px, 24px 0, 100% 0, 100% 100%, 0 100%);
}
.hours { margin: 18px 0; }
.hours__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.hours__row span { color: var(--muted); font-size: .92rem; }
.hours__row b { font-family: "Anton", sans-serif; font-weight: 400; font-size: 1.3rem; letter-spacing: .02em; }
.hours__row--accent b { color: var(--red); }
.area__note { color: var(--muted-2); font-size: .88rem; margin: 8px 0 24px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact__item {
  background: var(--panel); border: 1px solid var(--line); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 8px; position: relative;
  transition: .3s var(--ease); overflow: hidden;
}
.contact__item::after {
  content: "→"; position: absolute; top: 28px; right: 28px; color: var(--muted-2);
  font-size: 1.2rem; transition: .3s var(--ease);
}
.contact__item:hover { border-color: var(--red); transform: translateY(-4px); }
.contact__item:hover::after { color: var(--red); transform: translate(4px,-4px); }
.contact__label { font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.contact__item strong { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.18rem; word-break: break-word; }
.contact__sub { color: var(--muted); font-size: .9rem; }

/* quote form */
.contact__form {
  margin-top: 22px;
  background: var(--panel); border: 1px solid var(--line);
  padding: 40px 36px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.form__hp { display: none; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 28px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field--full { grid-column: 1 / -1; }
.form__field span {
  font-family: "Space Mono", monospace; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.form__field span em { color: var(--muted-2); text-transform: none; letter-spacing: 0; }
.form__field input, .form__field textarea {
  background: var(--bg); border: 1px solid var(--line-strong);
  color: var(--text); font-family: "Archivo", sans-serif; font-size: 1rem;
  padding: 13px 15px; transition: border-color .25s var(--ease);
  resize: vertical;
}
.form__field input:focus, .form__field textarea:focus {
  outline: none; border-color: var(--red);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 56px 0; background: #060607; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__logo { width: 150px; height: auto; border-radius: 8px; }
.footer__meta { text-align: right; }
.footer__slogan { font-family: "Anton", sans-serif; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .03em; }
.footer__addr { color: var(--muted); font-size: .9rem; margin: 6px 0; }
.footer__copy { color: var(--muted-2); font-size: .82rem; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   SAFETY
   ========================================================= */
.safety { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.safety__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.safety__copy { color: var(--muted); max-width: 56ch; margin-top: 4px; }
.safety__sub {
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .08em; margin: 28px 0 10px;
}
.safety__photo {
  background: var(--panel); border: 1px solid var(--line);
  padding: 12px 12px 14px;
}
.safety__photo img { width: 100%; height: auto; display: block; }
.safety__photo figcaption {
  font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-top: 12px; text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .about__grid, .area__grid, .safety__grid { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 104px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,12,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-strong);
    padding: 10px 24px 24px;
    transform: translateY(-130%); transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav__links .btn { margin-top: 16px; justify-content: center; }

  /* dropdown flattens into the mobile menu */
  .nav__dd { display: contents; }
  .nav__dd > a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav__dd > a::after { display: none; }
  .nav__caret { display: none; }
  .nav__ddmenu {
    position: static; transform: none; opacity: 1; visibility: visible;
    padding-top: 0; min-width: 0;
  }
  .nav__ddpanel { background: transparent; border: 0; padding: 0; backdrop-filter: none; }
  .nav__ddpanel a {
    padding: 12px 0 12px 22px; border-bottom: 1px solid var(--line);
    font-size: .85rem;
  }
  .nav__ddpanel a:hover { background: transparent; padding-left: 22px; }
  .cards { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 24px; }
  .form__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 30px 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
}
