@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Gordita';
  src: url('./Gordita-Font/Gordita-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}
:root {
  --bg: #f3f3f3;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-alt: #fafafa;
  --text: #111111;
  --text-soft: #555555;
  --text-muted: #6a6a6a;
  --red: #d71920;
  --red-dark: #b31218;
  --border: #d9d9d9;
  --border-strong: #c9c9c9;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.05);
  --radius: 20px;
  --radius-sm: 14px;
  --content-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(215, 25, 32, 0.045), transparent 38%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.22);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: #111111;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 2000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-banner {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e7e7e7;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.banner-inner {
  width: min(92%, 1280px);
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-logo {
  width: auto;
  height: auto;
  max-width: min(460px, 76vw);
  max-height: 76px;
  object-fit: contain;
}

.site-header {
  position: fixed;
  top: 88px;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 24px;
  z-index: 1000;
  pointer-events: none;
}

.menu-toggle,
.site-menu {
  pointer-events: auto;
}

.menu-toggle {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 14px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: 82px;
  right: 24px;
  min-width: 230px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.site-menu.open {
  display: flex;
}

.site-menu a {
  color: #111111;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: #f3f3f3;
  color: var(--red);
}

.landing-shell {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 108px 28px 40px;
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  animation: fadeUp 0.8s ease;
}

.eyebrow {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.hero-logo {
  width: min(560px, 62vw);
  margin: 0 auto 24px;
  height: auto;
}

.hero-text {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.14rem;
  line-height: 1.78;
}

.hero-sub {
  max-width: 860px;
  margin: 12px auto 34px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.division-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.division-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 228px;
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
  align-items: center;
  background: #ffffff;
  color: #111111;
}

.division-card:hover,
.division-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  border-color: var(--border-strong);
}

.division-card.electrical {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  color: #111111;
  border-color: var(--border);
}

.division-card.electrical .division-services {
  color: var(--text-soft);
}

.division-card.utility {
  background: linear-gradient(145deg, #cc161d, #f01a23);
  color: #ffffff;
  border-color: #cf1a20;
}

.division-card.utility .division-services {
  color: rgba(255, 255, 255, 0.9);
}

.division-label {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.division-services {
  font-size: 1rem;
  line-height: 1.7;
}

.home-support-grid {
  width: 100%;
  max-width: 920px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  border: 1px solid #222222;
  border-radius: 18px;
  padding: 18px 18px;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.support-card h2 {
  font-size: 0.94rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.support-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.inner-page {
  min-height: 100vh;
  padding: 84px 24px 72px;
}

.inner-wrap {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.brand-lockup img {
  width: 220px;
  height: auto;
}

.back-link {
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.back-link:hover,
.back-link:focus-visible {
  background: #ececec;
  border-color: #cfcfcf;
  transform: translateY(-1px);
}

.page-intro {
  margin-bottom: 28px;
}

.page-intro h1,
.inner-wrap h1:first-of-type {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.page-intro p,
.inner-wrap > p {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}

.section-block {
  margin-top: 30px;
}

.section-block h2,
.inner-wrap h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-block h3,
.inner-wrap h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.section-block p {
  max-width: 860px;
  color: var(--text-soft);
  line-height: 1.8;
}

.inner-wrap p + h2,
.inner-wrap p + h3,
.inner-wrap .service-grid,
.inner-wrap .feature-list,
.inner-wrap .contact-form,
.inner-wrap .cta-strip {
  margin-top: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-box {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.service-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-box p,
.service-box li {
  color: var(--text-soft);
  line-height: 1.72;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.feature-list div {
  background: linear-gradient(180deg, #ffffff, #fcfcfc);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.cta-strip {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 18px;
  background: linear-gradient(145deg, #111111, #1d1d1d);
  color: #ffffff;
}

.cta-strip h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.page-note {
  margin-top: 30px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 860px;
}

.contact-callout {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}

.contact-callout-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.contact-phone-main {
  display: inline-block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.contact-phone-main:hover,
.contact-phone-main:focus-visible {
  text-decoration: underline;
}

.contact-form {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font: inherit;
  background: #ffffff;
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
}

.form-submit {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--red);
  transform: translateY(-1px);
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111111;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: all 0.25s ease;
}

.floating-call:hover,
.floating-call:focus-visible {
  background: var(--red);
  transform: translateY(-2px);
}

.site-footer {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 20px 0 24px;
  margin-top: 20px;
  border-top: 1px solid #222222;
}

.footer-inner {
  width: min(90%, 1100px);
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-align: center;
  opacity: 0.88;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .landing-shell {
    padding-top: 100px;
  }

  .hero-logo {
    width: min(470px, 68vw);
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .service-grid,
  .home-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .division-buttons,
  .service-grid,
  .feature-list,
  .form-row,
  .home-support-grid {
    grid-template-columns: 1fr;
  }

  .landing-shell {
    padding-top: 86px;
    padding-bottom: 80px;
  }

  .hero-inner {
    max-width: 760px;
  }

  .hero-logo {
    width: min(380px, 78vw);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-sub {
    font-size: 0.96rem;
  }

  .division-card {
    min-height: 190px;
  }

  .home-support-grid {
    max-width: 100%;
  }

  .inner-page {
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 18px;
    padding: 18px 0 22px;
  }

  .division-buttons {
    margin-bottom: 4px;
  }
}

@media (max-width: 640px) {
  .top-banner {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .banner-inner {
    min-height: 72px;
  }

  .banner-logo {
    max-width: min(300px, 72vw);
    max-height: 54px;
  }

  .site-header {
    top: 72px;
    padding: 12px 14px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .site-menu {
    right: 14px;
    top: 68px;
    min-width: 190px;
  }

  .landing-shell,
  .inner-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .landing-shell {
    align-items: flex-start;
    padding-top: 78px;
    padding-bottom: 72px;
    min-height: auto;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .hero-logo {
    width: min(320px, 86vw);
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 10px auto 18px;
  }

  .division-buttons {
    gap: 14px;
    margin-top: 8px;
  }

  .division-card {
    min-height: 176px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .division-label {
    font-size: 1.4rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .division-services {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .home-support-grid {
    gap: 14px;
    margin-top: 16px;
  }

  .support-card {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .support-card h2 {
    font-size: 0.9rem;
  }

  .support-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .inner-page {
    padding-top: 42px;
    padding-bottom: 92px;
    min-height: auto;
  }

  .brand-lockup img {
    width: 180px;
  }

  .page-intro {
    margin-bottom: 22px;
  }

  .page-intro h1,
  .inner-wrap h1:first-of-type {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .page-intro p,
  .inner-wrap > p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .section-block,
  .inner-wrap p + h2,
  .inner-wrap p + h3,
  .inner-wrap .service-grid,
  .inner-wrap .feature-list,
  .inner-wrap .contact-form,
  .inner-wrap .cta-strip {
    margin-top: 18px;
  }

  .section-block h2,
  .inner-wrap h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .section-block h3,
  .inner-wrap h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .service-box,
  .contact-form,
  .contact-callout {
    padding: 18px;
    border-radius: 16px;
  }

  .feature-list div {
    padding: 12px 14px;
  }

  .floating-call {
    right: 12px;
    bottom: 12px;
    padding: 12px 18px;
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .site-footer {
    margin-top: 16px;
    padding: 16px 0 20px;
  }

  .footer-inner {
    font-size: 11px;
    letter-spacing: 1.2px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}.division-label {
  font-family: 'Gordita', Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.9rem, 3vw, 3.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 14px;
}/* LANDING PAGE BACKGROUND IMAGE */
body.landing-page {
  background: 
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.70)),
    url('mainbackground.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}.utility-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 10px 0 30px;
}

.utility-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

@media (max-width: 900px) {
  .utility-gallery {
    grid-template-columns: 1fr;
  }

  .utility-gallery img {
    height: 220px;
  }
}
