:root {
  --red: #c8102e;
  --red-dark: #8f0016;
  --red-deep: #5a000d;
  --red-soft: #fff1f3;
  --red-soft-2: #ffe4e8;
  --red-band: linear-gradient(115deg, #5a000d 0%, #8f0016 48%, #c8102e 100%);
  --red-band-soft: linear-gradient(180deg, #fff1f3 0%, #ffe4e8 100%);
  --white: #ffffff;
  --text: #111111;
  --text-muted: #222222;
  --line: rgba(200, 16, 46, 0.2);
  --shadow: 0 16px 38px rgba(200, 16, 46, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] {
  scroll-margin-top: 110px;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.mobile-nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.desktop-only {
  display: inline;
}
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(200, 16, 46, 0.35);
  outline-offset: 3px;
}
.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}
.section { padding: 78px 0; }
.section-tight { padding: 54px 0; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0;
}
h1 {
  max-width: 840px;
  font-size: clamp(2.35rem, 5.5vw, 5.1rem);
}
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.2rem; }
p {
  margin: 0;
  color: var(--text-muted);
}
.lead {
  max-width: 720px;
  font-size: 1.08rem;
}
.lead-spaced,
.copy-spaced {
  margin-top: 16px;
}
.service-copy-lead {
  margin-top: 18px;
}
.footer-about-copy {
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.24);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}
.btn-secondary:hover {
  background: var(--red);
  color: var(--white);
}
.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 310px;
  color: var(--red-deep);
  font-weight: 900;
  line-height: 1.05;
}
.brand-logo {
  display: block;
  width: 310px;
  height: 74px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--red-dark);
  font-size: 0.95rem;
  font-weight: 800;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--red);
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
}
.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.services-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(189, 40, 54, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav-dropdown:hover .services-dropdown,
.nav-dropdown:focus-within .services-dropdown,
.nav-dropdown.is-open .services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.services-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 850;
  white-space: nowrap;
}
.services-dropdown a:hover,
.services-dropdown a:focus {
  background: var(--red-soft);
  color: var(--red);
  outline: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: background 180ms ease, transform 180ms ease;
}
.phone-link:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.phone-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.mobile-panel {
  display: none;
  border-top: 2px solid var(--line);
  background: var(--white);
}
.mobile-panel a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--red-deep);
  font-weight: 900;
}
.mobile-panel.is-open {
  display: block;
  max-height: calc(100dvh - 78px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-services-group {
  border-bottom: 1px solid var(--line);
}
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 15px 20px;
  border: 0;
  background: var(--white);
  color: var(--red-deep);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.mobile-services-toggle span {
  transition: transform 160ms ease;
}
.mobile-services-toggle[aria-expanded="true"] span {
  transform: rotate(180deg);
}
.mobile-services-list {
  display: none;
  padding: 0 14px 12px;
  background: var(--white);
}
.mobile-services-group.is-open .mobile-services-list {
  display: grid;
  gap: 6px;
}
.mobile-services-list a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--text);
  font-size: 0.95rem;
}
.mobile-services-list a:hover,
.mobile-services-list a:focus {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}
.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.hero-actions .btn,
.actions .btn {
  flex: 0 1 180px;
  min-width: 150px;
  text-align: center;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.trust-item {
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  color: var(--text);
}
.trust-item:last-child { border-right: 0; }
.trust-item h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.15;
  font-weight: 900;
}
.trust-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.42;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.services-heading {
  display: block;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 25px;
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.08);
}
.card h3 {
  margin-bottom: 10px;
  color: #111111;
}
.card p {
  margin-bottom: 16px;
  color: #222222;
}
.card .text-link {
  margin-top: auto;
  padding-top: 2px;
}
.why-section h2,
.why-section h3 {
  color: #111111;
}
.why-section .card p,
.why-section .lead {
  color: #222222;
}
.why-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.why-head .lead {
  margin: 14px auto 0;
}
.why-cards {
  max-width: 1040px;
  margin: 0 auto;
}
.why-cards .card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-start;
}
.text-link {
  color: var(--red);
  font-weight: 900;
}
.text-link:hover { text-decoration: underline; }
.electric-placeholder {
  display: grid;
  min-height: 230px;
  width: 100%;
  place-items: center;
  padding: 22px;
  border: 2px dashed rgba(200, 16, 46, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 241, 243, 0.94), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(45deg, rgba(200, 16, 46, 0.08) 0 10px, transparent 10px 20px);
  color: var(--red-deep);
  text-align: center;
  font-weight: 900;
}
.electric-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.12);
}
.carousel-slide .electric-placeholder {
  height: 100%;
  min-height: 100%;
}
.service-slider-image .electric-placeholder {
  height: 100%;
  min-height: 210px;
  border-radius: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  margin: 0;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.08);
}
.gallery-card .electric-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 0;
}
.gallery-card figcaption {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 900;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.contact-card-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}
.contact-card-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}
.contact-info-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 122px;
  align-items: center;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), rgba(255, 247, 248, 0.7));
  color: var(--text);
  box-shadow: 0 12px 28px rgba(90, 0, 13, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.contact-info-card[href]:hover,
.contact-info-card[href]:focus-visible {
  border-color: rgba(200, 16, 46, 0.42);
  box-shadow: 0 16px 34px rgba(200, 16, 46, 0.12);
  transform: translateY(-1px);
  outline: none;
}
.contact-info-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: var(--radius);
  background: var(--red-soft);
  color: var(--red);
}
.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.contact-info-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.contact-info-copy strong {
  color: #111111;
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.contact-info-copy span:last-child {
  color: var(--text-muted);
  font-weight: 700;
}
.contact-form-card {
  align-self: stretch;
  max-width: none;
  margin: 0;
}
.contact-form-head {
  padding: 28px 28px 24px;
  border-bottom: 2px solid var(--line);
}
.contact-form-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}
.contact-form-head p {
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 700;
}
.contact-card {
  padding: 26px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.08);
}
.contact-card h3 {
  margin-bottom: 16px;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}
.contact-form .btn {
  justify-self: start;
  min-width: 220px;
}
.contact-form-card .contact-form .btn {
  width: 100%;
  justify-self: stretch;
}
.contact-form-note {
  margin-top: -4px;
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.bullets,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.bullets li {
  margin: 0;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.06);
}
.bullets li::before {
  content: none;
}
.gallery-band {
  background: linear-gradient(180deg, rgba(255, 241, 243, 0.72), rgba(255, 255, 255, 0.94));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-band > .container {
  max-width: 1520px;
}
.gallery-title {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.gallery-title .lead {
  margin: 12px auto 0;
}
.gallery-page-head {
  padding-bottom: 38px;
}
.work-carousel {
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(90, 0, 13, 0.12);
  border-radius: 8px;
  background: var(--white);
  aspect-ratio: 4 / 3.25;
  box-shadow: 0 14px 34px rgba(90, 0, 13, 0.11);
  scroll-snap-align: start;
}
.gallery-carousel .carousel-slide {
  aspect-ratio: 4 / 3.1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
.carousel-arrow {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--red-deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.1);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.carousel-arrow:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--red-soft-2);
  cursor: pointer;
  padding: 0;
  transition: width 180ms ease, background 180ms ease;
}
.carousel-dot.is-active {
  width: 28px;
  background: var(--red);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid.large {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  overflow: hidden;
  margin: 0;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.13);
}
.gallery-grid.large .gallery-item { aspect-ratio: 5 / 3.6; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-frame {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  background: var(--white);
}
.image-frame .electric-placeholder {
  height: 100%;
  min-height: 100%;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
}
.about-company-section {
  background: var(--white);
}
.about-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 54px;
}
.about-company-copy .lead {
  margin-top: 18px;
  max-width: 690px;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.about-feature-box {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.06);
}
.about-company-actions {
  justify-content: flex-start;
}
.about-company-image {
  aspect-ratio: 5 / 4;
}
.about-page-company-section {
  background: var(--white);
}
.about-page-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 54px;
}
.about-page-company-copy .lead {
  max-width: 720px;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.about-value-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(33, 8, 12, 0.05);
}
.about-value-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
}
.about-value-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.about-value-card h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}
.about-value-card p {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.35;
}
.about-page-company-image {
  aspect-ratio: 5 / 4;
}
.feature-band {
  background: var(--white);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-band p { color: var(--text-muted); }
.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}
.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  min-height: 180px;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.feature-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.05rem;
}
.service-list {
  display: grid;
  gap: 18px;
}
.service-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.08);
}
.service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.service-browser {
  background: var(--white);
}
.service-browser + .service-browser {
  border-top: 1px solid var(--line);
}
.service-browser-alt {
  background: var(--red-soft);
}
.service-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--line);
}
.service-category-head > div:last-child {
  flex: 1;
  min-width: 0;
}
.service-category-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-directory-grid {
  align-items: stretch;
}
.service-directory-grid .service-card {
  min-height: 100%;
}
.service-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.08);
}
.service-image {
  aspect-ratio: 4 / 2.35;
  overflow: hidden;
  background: var(--white);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.service-card-body h3 {
  color: #111111;
  font-size: 1.22rem;
}
.service-card-body p {
  margin-top: 10px;
  color: #222222;
}
.service-category-head h2,
.service-card h3,
.service-card p {
  overflow-wrap: anywhere;
}
.service-card-body .text-link {
  margin-top: auto;
  padding-top: 18px;
}
.service-chip {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.single-service-grid {
  grid-template-columns: minmax(0, 0.66fr);
}
.service-card-wide {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
}
.service-card-wide .service-image {
  aspect-ratio: auto;
  min-height: 280px;
}
.services-slider-section {
  background: var(--white);
}
.services-slider-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.services-slider-head .lead {
  margin: 12px auto 0;
}
.services-carousel .carousel-track {
  align-items: stretch;
  padding-bottom: 12px;
}
.services-carousel .carousel-slide {
  display: flex;
  flex-basis: calc((100% - 36px) / 3);
  aspect-ratio: auto;
}
.service-slider-card {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  border-color: var(--line);
}
.service-slider-image {
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  background: var(--white);
}
.service-slider-image .electric-placeholder,
.gallery-carousel-image .electric-placeholder {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 241, 243, 0.92), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(45deg, rgba(200, 16, 46, 0.045) 0 12px, transparent 12px 24px);
}
.service-slider-image .electric-placeholder span,
.gallery-carousel-image .electric-placeholder span {
  max-width: calc(100% - 36px);
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  line-height: 1.2;
}
.service-slider-image img,
.gallery-carousel-image img,
.service-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
img[src*="electrical-repair-1.webp"] {
  object-position: center 42%;
}
img[src*="basement-electrical-1.webp"],
img[src*="troubleshooting-diagnostics-1.webp"] {
  object-position: center 36%;
}
.service-slider-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.service-slider-body h3 {
  color: #111111;
  font-size: 1.25rem;
}
.service-slider-body p {
  margin-top: 10px;
  color: #222222;
}
.service-slider-body .text-link {
  margin-top: auto;
  padding-top: 18px;
}
.gallery-showcase .carousel-track {
  align-items: stretch;
  padding-bottom: 12px;
}
.gallery-showcase .carousel-slide {
  display: flex;
  aspect-ratio: auto;
  flex-basis: calc((100% - 22px) / 2);
  flex-direction: column;
}
.gallery-carousel-card {
  border-color: var(--line);
}
.gallery-carousel-image {
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  background: var(--white);
}
.gallery-carousel-image .electric-placeholder {
  height: 100%;
  min-height: 100%;
}
.gallery-carousel-card figcaption {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 900;
}
.service-simple-hero {
  padding: 74px 0 70px;
  background: var(--white);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--text);
  text-align: center;
}
.service-simple-hero-inner {
  display: grid;
  justify-items: center;
  max-width: 920px;
}
.service-simple-hero h1 {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}
.service-simple-hero p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.service-simple-hero .hero-actions {
  width: min(100%, 460px);
  justify-content: center;
  margin-top: 28px;
}
.service-simple-hero .hero-actions .btn {
  flex: 1 1 190px;
}
.service-simple-hero .btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(200, 16, 46, 0.2);
}
.service-simple-hero .btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
}
.service-simple-hero .btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--text);
}
.service-simple-hero .btn-secondary:hover {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red);
}
.home-clean-hero {
  padding: 72px 0 76px;
  text-align: left;
}
.home-clean-hero .service-simple-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 390px);
  gap: 52px;
  align-items: center;
  justify-items: stretch;
  max-width: var(--max);
}
.home-hero-copy {
  max-width: 780px;
}
.home-clean-hero h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 4vw, 3.85rem);
  line-height: 0.98;
}
.home-clean-hero p {
  max-width: 650px;
}
.home-clean-hero .hero-actions {
  justify-content: flex-start;
  margin-right: auto;
  margin-left: auto;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}
.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(200, 16, 46, 0.12);
}
.proof-card {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}
.proof-card h2 {
  font-size: 1.2rem;
}
.proof-card > p {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.proof-stat {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background: var(--white);
}
.proof-stat strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1;
}
.proof-stat .rating-value {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
}
.proof-stat .stat-star {
  display: inline-flex;
  align-items: center;
  font-size: 0.72em;
  line-height: 1;
}
.proof-stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.25;
}
.proof-card .btn {
  width: 100%;
  margin-top: 22px;
}
.home-clean-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 241, 243, 0.72) 100%);
}
.home-clean-hero .service-simple-hero-inner {
  position: relative;
  z-index: 1;
}
.hero-proof-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-self: center;
  padding: clamp(22px, 2.7vw, 30px);
  border: 1px solid rgba(90, 0, 13, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 247, 0.92) 100%);
  box-shadow: 0 18px 42px rgba(90, 0, 13, 0.1);
  gap: 18px;
}
.hero-proof-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: var(--radius);
}
.hero-proof-head {
  position: relative;
  display: grid;
  max-width: 460px;
  gap: 8px;
}
.hero-proof-head > span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-proof-head h2 {
  max-width: 380px;
  font-size: clamp(1.65rem, 2.1vw, 2.05rem);
  line-height: 1.04;
}
.hero-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hero-proof-stat {
  display: grid;
  min-height: 86px;
  min-width: 0;
  gap: 7px;
  padding: 15px;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(90, 0, 13, 0.08);
}
.hero-proof-stat strong {
  color: var(--text);
  font-size: clamp(1.5rem, 2.45vw, 1.95rem);
  line-height: 1;
}
.hero-proof-stat-text strong {
  max-width: 150px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.08;
}
.hero-proof-stat span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.12;
}
.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: var(--radius);
  background: var(--red-soft);
  color: var(--red);
}
.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon-grid .card {
  border-width: 1px;
  background: linear-gradient(180deg, var(--white), rgba(255, 247, 248, 0.72));
  box-shadow: 0 12px 28px rgba(90, 0, 13, 0.06);
}
.service-icon-grid .card .service-icon {
  margin-bottom: 16px;
}
.process-band {
  padding-top: 64px;
  padding-bottom: 68px;
  background: linear-gradient(180deg, rgba(255, 241, 243, 0.76), rgba(255, 255, 255, 0.94));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(90, 0, 13, 0.07);
}
.process-step h3 {
  margin-top: 18px;
  font-size: 1.14rem;
}
.process-step p {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.42;
}
.featured-work-section {
  background: var(--white);
}
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.featured-work-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 280px;
  border: 1px solid rgba(90, 0, 13, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 36px rgba(90, 0, 13, 0.11);
}
.featured-work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-work-tile figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
}
.featured-work-tile figcaption span,
.gallery-carousel-card figcaption::before {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.featured-work-tile figcaption strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.1;
}
.gallery-carousel-card figcaption {
  display: grid;
  gap: 4px;
  align-content: center;
  background: linear-gradient(180deg, var(--white), rgba(255, 247, 248, 0.82));
}
.gallery-carousel-card figcaption::before {
  content: "Project Type";
}
.service-slider-body .service-icon {
  margin-bottom: 14px;
}
.premium-cta {
  text-align: left;
  background:
    linear-gradient(135deg, var(--red-deep), var(--red-dark) 54%, var(--red));
  color: var(--white);
  border-top: 0;
}
.premium-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: center;
  justify-items: stretch;
}
.premium-cta .eyebrow,
.premium-cta h2,
.premium-cta p,
.premium-cta .lead {
  color: var(--white);
  text-align: left;
}
.premium-cta .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}
.premium-cta .lead {
  max-width: 720px;
}
.service-area-line {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}
.premium-cta-actions {
  display: grid;
  gap: 12px;
}
.premium-cta .btn-primary {
  background: var(--white);
  color: var(--red-dark);
  box-shadow: none;
}
.premium-cta .btn-primary:hover {
  background: var(--red-soft);
}
.premium-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}
.premium-cta .btn-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--red-dark);
}
.service-tabs {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  gap: 8px;
  margin-bottom: 34px;
  padding: 0 0 14px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
.service-tabs a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}
.service-tabs a:first-child,
.service-tabs a:hover,
.service-tabs a:focus {
  background: var(--red-soft);
  color: var(--red);
  outline: none;
}
.service-includes-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.service-includes-section .split {
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  gap: 52px;
}
.service-clean-bullets {
  max-width: 680px;
  margin-top: 22px;
  gap: 10px;
  align-items: stretch;
}
.service-clean-bullets li {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.98rem;
  line-height: 1.25;
}
.service-photo-slot {
  width: 100%;
  max-width: 680px;
  min-height: 0;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 4 / 3.08;
  background: var(--red-soft);
}
.service-photo-slot .electric-placeholder {
  height: 100%;
  min-height: 100%;
  border-style: solid;
  border-color: rgba(200, 16, 46, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 241, 243, 0.92), rgba(255, 255, 255, 0.98));
}
.related-services-section {
  padding: 46px 0;
  background: var(--red-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.related-services-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.related-services-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.related-services-card p {
  margin-top: 8px;
}
.related-service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.related-service-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--red-dark);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}
.related-service-links a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.related-service-links a:hover,
.related-service-links a:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}
.service-contact-section {
  padding: 50px 0 56px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.service-contact-section .container {
  max-width: 1180px;
}
.service-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  justify-items: center;
}
.service-contact-grid .map-card {
  width: 100%;
  max-width: none;
  min-height: 480px;
  margin: 0;
}
.service-contact-grid .map-card iframe {
  width: 100%;
  min-height: 480px;
  height: 100%;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-item {
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.contact-item span {
  display: block;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-item a,
.contact-item strong {
  color: var(--text);
  font-weight: 900;
}
.form-card {
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.08);
}
.form-card p {
  margin-bottom: 20px;
  color: var(--text-muted);
}
.request-frame-card {
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(200, 16, 46, 0.12);
}
.request-frame-card iframe {
  display: block;
  width: 100%;
  min-height: 960px;
  border: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
}
input, select, textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}
textarea {
  min-height: 126px;
  resize: vertical;
}
.full { grid-column: 1 / -1; }
.cta-band:not(.premium-cta) {
  background: var(--white);
  color: var(--text);
  text-align: center;
  border-top: 5px solid var(--red);
  border-bottom: 1px solid var(--line);
}
.cta-band:not(.premium-cta) .container {
  display: grid;
  justify-items: center;
}
.cta-band:not(.premium-cta) h2 {
  max-width: 980px;
}
.cta-band:not(.premium-cta) .lead,
.cta-band:not(.premium-cta) p:not(.eyebrow) {
  max-width: 720px;
}
.cta-band:not(.premium-cta) p,
.cta-band:not(.premium-cta) .eyebrow {
  color: var(--text-muted);
}
.cta-band:not(.premium-cta) .eyebrow {
  color: var(--red);
}
.cta-band:not(.premium-cta) .hero-actions,
.cta-band:not(.premium-cta) .actions {
  width: min(100%, 560px);
  justify-content: center;
}
.cta-band:not(.premium-cta) .hero-actions .btn,
.cta-band:not(.premium-cta) .actions .btn {
  flex: 1 1 190px;
}
.cta-band:not(.premium-cta) .btn-secondary {
  border-color: var(--red);
  background: var(--white);
  color: var(--red);
}
.cta-band:not(.premium-cta) .btn-secondary:hover {
  background: var(--red);
  color: var(--white);
}
.map-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.faq-section {
  background: var(--white);
}
.faq-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.faq-head .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
}
.faq-head h2 {
  margin-top: 14px;
  color: var(--text);
}
.faq-head p {
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
}
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 24px 28px;
  border: 0;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border: 2px solid var(--line);
  border-radius: 10px;
  color: var(--red);
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.faq-icon::before {
  content: "+";
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}
.faq-item[open] .faq-icon {
  background: var(--red);
  color: var(--white);
}
.faq-item[open] .faq-icon::before {
  content: "−";
}
.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-muted);
}
.faq-answer p {
  max-width: 820px;
  color: var(--text-muted);
}
.section-head.center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-head.center .lead,
.section-head.center p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}
.map-card {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(200, 16, 46, 0.12);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  min-height: 0;
  border: 0;
}
.service-contact-grid .map-card iframe {
  height: 500px;
}
.site-footer {
  background: var(--white);
  color: var(--red-deep);
  padding: 58px 0 24px;
  border-top: 5px solid var(--red);
}
.site-footer .brand-logo {
  width: 250px;
  height: 68px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1fr;
  gap: 32px;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--red-dark);
}
.site-footer h3 {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 1rem;
}
.footer-social {
  margin-top: 22px;
}
.footer-social span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-links a {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}
.social-links svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.social-links a[aria-label*="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}
.social-links img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
}
.footer-list li { margin-top: 8px; }
.copyright {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--red-dark);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .service-tabs {
    justify-content: flex-start;
  }
  .section-head,
  .feature-grid,
  .split,
  .about-company-grid,
  .about-page-company-grid,
  .contact-grid,
  .contact-layout,
  .service-row {
    grid-template-columns: 1fr;
  }
  .contact-card-layout {
    gap: 24px;
  }
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-contact-grid {
    grid-template-columns: 1fr;
  }
  .service-contact-grid .map-card,
  .service-contact-grid .map-card iframe {
    min-height: 420px;
    height: 420px;
  }
  .home-clean-hero .service-simple-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-hero-copy {
    max-width: 760px;
  }
  .hero-proof-panel {
    width: min(100%, 560px);
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .proof-card {
    max-width: 560px;
  }
  .single-service-grid {
    grid-template-columns: 1fr;
  }
  .service-card-wide {
    grid-template-columns: 1fr;
  }
  .service-card-wide .service-image {
    aspect-ratio: 4 / 2.35;
    min-height: 0;
  }
  .cards,
  .process-grid,
  .gallery-grid.large,
  .service-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-columns,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-work-grid,
  .premium-cta .container {
    grid-template-columns: 1fr;
  }
  .premium-cta,
  .premium-cta .eyebrow,
  .premium-cta h2,
  .premium-cta p,
  .premium-cta .lead {
    text-align: center;
  }
  .premium-cta-actions {
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }
  .carousel-track {
    gap: 18px;
  }
  .carousel-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
  .gallery-showcase .carousel-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
  .services-carousel .carousel-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 700px) {
  .desktop-only {
    display: none;
  }
  .container { width: calc(100% - 28px); }
  .section { padding: 56px 0; }
  .nav-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 112px;
    gap: 10px 12px;
    padding: 12px 0;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    font-size: 0.95rem;
  }
  .brand-logo {
    width: 232px;
    height: 62px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .header-actions {
    display: contents;
  }
  .phone-link {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 48px;
    width: 100%;
    min-width: 0;
    padding: 13px 20px;
    border-radius: var(--radius);
    font-size: 1rem;
  }
  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    position: static;
    flex: 0 0 44px;
    display: inline-grid;
    place-items: center;
    align-self: center;
    background: var(--white);
  }
  h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .service-simple-hero {
    padding: 36px 0 38px;
  }
  .home-clean-hero {
    padding: 34px 0 38px;
    text-align: center;
  }
  .home-clean-hero .service-simple-hero-inner {
    width: 100%;
    gap: 20px;
    justify-items: center;
  }
  .home-hero-copy {
    width: 100%;
    max-width: 100%;
  }
  .home-clean-hero .hero-actions {
    width: min(100%, 340px);
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
  .status-pill {
    margin-bottom: 14px;
    max-width: 100%;
    font-size: 0.8rem;
  }
  .service-simple-hero h1 {
    max-width: 360px;
    font-size: clamp(1.85rem, 7.4vw, 2.35rem);
    overflow-wrap: break-word;
  }
  .home-clean-hero h1 {
    max-width: 350px;
    font-size: clamp(1.9rem, 8.2vw, 2.28rem);
    line-height: 1.04;
  }
  .service-simple-hero p {
    max-width: 330px;
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.48;
    overflow-wrap: break-word;
  }
  .home-clean-hero p {
    max-width: 330px;
  }
  .home-clean-hero .hero-proof-panel {
    display: none;
  }
  .hero-proof-panel {
    width: 100%;
    padding: 18px;
    gap: 14px;
    text-align: left;
  }
  .hero-proof-panel::before {
    inset: 12px;
  }
  .hero-proof-head h2 {
    max-width: 300px;
    font-size: clamp(1.45rem, 5.6vw, 1.75rem);
  }
  .hero-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-proof-stat {
    min-height: 74px;
    padding: 11px;
  }
  .hero-proof-stat strong {
    font-size: 1.42rem;
  }
  .hero-proof-stat-text strong {
    font-size: 0.9rem;
  }
  .hero-proof-stat span {
    font-size: 0.72rem;
  }
  .service-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .service-icon svg {
    width: 22px;
    height: 22px;
  }
  .process-step {
    min-height: 0;
    padding: 20px;
  }
  .featured-work-grid {
    grid-template-columns: 1fr;
  }
  .featured-work-tile {
    min-height: 0;
  }
  .premium-cta .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .premium-cta-actions {
    width: min(100%, 340px);
  }
  .premium-cta-actions .btn {
    width: 100%;
    max-width: none;
  }
  .proof-card {
    width: 100%;
    padding: 20px;
    text-align: left;
  }
  .proof-grid {
    gap: 10px;
  }
  .proof-stat {
    min-height: 92px;
    padding: 14px;
  }
  .service-tabs {
    justify-content: flex-start;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
  .service-includes-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .service-includes-section .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-photo-slot {
    max-width: 100%;
    width: 100%;
  }
  .related-services-section {
    padding: 38px 0;
  }
  .related-services-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .related-service-links {
    justify-content: flex-start;
  }
  .related-service-links a {
    flex: 1 1 140px;
  }
  .services-slider-head {
    max-width: 320px;
  }
  .services-slider-head .lead {
    max-width: 300px;
  }
  .service-category-head {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }
  .service-category-head h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
  .service-card-body {
    min-width: 0;
  }
  .service-card-body p {
    overflow-wrap: break-word;
  }
  .bullets {
    grid-template-columns: 1fr;
  }
  .map-card iframe {
    height: 300px;
    min-height: 0;
  }
  .service-contact-grid .map-card,
  .service-contact-grid .map-card iframe {
    min-height: 360px;
    height: 360px;
  }
  .request-frame-card iframe {
    min-height: 1040px;
  }
  .mobile-panel.is-open {
    max-height: calc(100dvh - 116px);
  }
  .contact-form {
    padding: 22px;
  }
  .contact-form-head {
    padding: 22px 22px 20px;
  }
  .contact-info-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 112px;
    gap: 14px;
    padding: 18px;
  }
  .contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
  }
  .contact-form .btn {
    justify-self: stretch;
  }
  .hero-actions,
  .actions {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
  }
  .hero-actions .btn,
  .actions .btn {
    flex: 1 1 132px;
    min-width: 128px;
    max-width: 220px;
    min-height: 48px;
    padding: 11px 10px;
    font-size: 0.9rem;
  }
  .service-simple-hero .hero-actions .btn {
    flex: 1 1 132px;
  }
  .contact-form .btn,
  .contact-form-card .contact-form .btn,
  .proof-card .btn {
    width: 100%;
    max-width: none;
  }
  .gallery-title {
    margin-bottom: 28px;
  }
  .carousel-track {
    gap: 12px;
  }
  .carousel-slide {
    flex-basis: 82%;
  }
  .gallery-showcase .carousel-slide {
    flex-basis: 88%;
  }
  .services-carousel .carousel-slide {
    flex-basis: 100%;
  }
  .carousel-controls {
    gap: 12px;
  }
  .carousel-arrow {
    width: 48px;
    height: 48px;
  }
  .faq-head {
    margin-bottom: 28px;
  }
  .faq-question {
    padding: 20px 18px;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 18px 20px;
  }
  .faq-icon {
    flex: 0 0 32px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 0;
  }
  .carousel-dots {
    min-width: 96px;
    gap: 7px;
  }
  .trust-grid,
  .cards,
  .service-card-grid,
  .process-grid,
  .gallery-grid,
  .gallery-grid.large,
  .feature-columns,
  .footer-grid,
  .form-grid,
  .service-links {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child { border-bottom: 0; }
  .gallery-item.wide { grid-column: span 1; }
}

/* Hard override for the shared bottom CTA sections. Keep these centered even
   when page-specific containers or mobile button rules are active. */
body .section.cta-band:not(.premium-cta) {
  text-align: center !important;
}
body .section.cta-band:not(.premium-cta) > .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body .section.cta-band:not(.premium-cta) .eyebrow,
body .section.cta-band:not(.premium-cta) h2,
body .section.cta-band:not(.premium-cta) p {
  width: 100%;
  max-width: 880px;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}
body .section.cta-band:not(.premium-cta) .lead {
  max-width: 720px;
}
body .section.cta-band:not(.premium-cta) .hero-actions,
body .section.cta-band:not(.premium-cta) .actions {
  width: min(100%, 560px) !important;
  max-width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: stretch !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 700px) {
  .about-feature-grid {
    grid-template-columns: 1fr;
  }
  .about-value-grid {
    grid-template-columns: 1fr;
  }
  .about-company-actions {
    justify-content: stretch;
  }
  body .section.cta-band:not(.premium-cta) > .container {
    width: calc(100% - 32px);
  }
  body .section.cta-band:not(.premium-cta) h2 {
    max-width: 320px;
    font-size: clamp(1.48rem, 6vw, 1.8rem);
    overflow-wrap: normal;
  }
  body .section.cta-band:not(.premium-cta) .lead,
  body .section.cta-band:not(.premium-cta) p:not(.eyebrow) {
    max-width: 320px;
    font-size: 0.95rem;
  }
  body .section.cta-band:not(.premium-cta) .hero-actions,
  body .section.cta-band:not(.premium-cta) .actions {
    width: min(100%, 340px) !important;
    display: flex !important;
    gap: 10px !important;
    align-items: stretch !important;
    justify-items: center !important;
  }
  body .section.cta-band:not(.premium-cta) .hero-actions .btn,
body .section.cta-band:not(.premium-cta) .actions .btn {
    flex: 1 1 132px;
    min-width: 128px;
    max-width: 165px;
  }
}

/* Site-wide text centering requested for every content section. */
main .section,
.site-footer {
  text-align: center;
}

main .section .container,
.premium-cta .container,
.related-services-card,
.service-includes-section .split,
.about-company-grid,
.about-page-company-grid,
.contact-card-layout,
.contact-grid,
.feature-grid,
.service-row,
.service-category-head {
  justify-items: center;
}

main .section h1,
main .section h2,
main .section h3,
main .section p,
main .section li,
main .section figcaption,
main .section label,
.site-footer h3,
.site-footer p,
.site-footer li,
.site-footer a {
  text-align: center;
}

main .section p,
main .section .lead,
main .section .eyebrow,
main .section h1,
main .section h2,
main .section h3,
.site-footer p {
  margin-right: auto;
  margin-left: auto;
}

.home-clean-hero,
.premium-cta,
.premium-cta .eyebrow,
.premium-cta h2,
.premium-cta p,
.premium-cta .lead {
  text-align: center;
}

.home-clean-hero .hero-actions,
.about-company-actions,
.related-service-links,
.premium-cta-actions,
.social-links {
  justify-content: center;
}

.home-clean-hero .hero-actions {
  margin-right: auto;
  margin-left: auto;
}

.premium-cta-actions,
.contact-form .btn,
.contact-form-card .contact-form .btn,
.proof-card .btn {
  margin-right: auto;
  margin-left: auto;
}

.service-icon-grid .card .service-icon,
.service-slider-body .service-icon,
.process-step .service-icon,
.service-chip,
.contact-info-icon,
.about-value-icon {
  margin-right: auto;
  margin-left: auto;
}

.card,
.service-card,
.service-slider-card,
.service-slider-body,
.service-card-body,
.trust-item,
.process-step,
.feature-card,
.contact-card,
.contact-item,
.about-company-copy,
.about-page-company-copy,
.about-feature-box,
.about-value-card,
.contact-info-card,
.contact-info-copy,
.footer-grid > div {
  text-align: center;
}

.about-feature-box,
.service-clean-bullets li {
  justify-content: center;
}

.about-value-card,
.contact-info-card {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
input,
select,
textarea {
  text-align: center;
}

.contact-form .btn {
  justify-self: center;
}

.text-link,
.service-card-body .text-link,
.service-slider-body .text-link {
  align-self: center;
}

.service-chip {
  align-self: center;
}

.faq-question {
  justify-content: center;
  text-align: center;
}

.faq-question span:first-child {
  flex: 1 1 auto;
  text-align: center;
}

.faq-answer p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 700px) {
  .hero-proof-panel,
  .proof-card,
  .service-category-head,
  .related-services-card,
  .related-service-links {
    text-align: center;
  }

  .service-tabs {
    justify-content: flex-start;
  }
}

/* Stronger brand rhythm: use red bands for major narrative sections so the
   page does not read as a stack of white panels. */
.process-band,
.gallery-band,
.service-overview-section,
.about-company-section,
.about-page-company-section,
.services-slider-section,
.service-includes-section,
body .section.cta-band:not(.premium-cta) {
  background: var(--red-band);
  color: var(--white);
  border-top: 0;
  border-bottom: 0;
}

.faq-section,
.related-services-section,
.map-section,
.service-contact-section {
  background: var(--red-band-soft);
}

.process-band .eyebrow,
.process-band h2,
.process-band p,
.gallery-band .eyebrow,
.gallery-band h2,
.gallery-band p,
.service-overview-section .eyebrow,
.service-overview-section h2,
.service-overview-section p,
.about-company-section .eyebrow,
.about-company-section h2,
.about-company-section p,
.about-page-company-section .eyebrow,
.about-page-company-section h2,
.about-page-company-section p,
.services-slider-section .eyebrow,
.services-slider-section h2,
.services-slider-section p,
.service-includes-section .eyebrow,
.service-includes-section h2,
.service-includes-section p,
body .section.cta-band:not(.premium-cta) .eyebrow,
body .section.cta-band:not(.premium-cta) h2,
body .section.cta-band:not(.premium-cta) p {
  color: var(--white);
}

.process-band .lead,
.gallery-band .lead,
.service-overview-section .lead,
.about-company-section .lead,
.about-page-company-section .lead,
.services-slider-section .lead,
.service-includes-section .lead,
body .section.cta-band:not(.premium-cta) .lead {
  color: rgba(255, 255, 255, 0.9);
}

.process-band .process-step,
.gallery-band .carousel-slide,
.gallery-band .gallery-carousel-card,
.service-overview-section .card,
.about-feature-box,
.about-value-card,
.services-slider-section .service-card,
.services-slider-section .service-slider-card,
.service-includes-section .bullets li,
.service-includes-section .image-frame,
.service-includes-section .electric-placeholder,
.related-services-card,
.faq-item,
.map-card,
.contact-card,
.contact-info-card,
.request-frame-card {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(90, 0, 13, 0.18);
}

.about-value-card h3,
.about-value-card p,
.about-feature-box,
.service-overview-section .card h3,
.service-overview-section .card p,
.services-slider-section .service-card h3,
.services-slider-section .service-card p,
.services-slider-section .service-slider-card h3,
.services-slider-section .service-slider-card p,
.process-band .process-step h3,
.process-band .process-step p,
.service-includes-section .bullets li {
  color: var(--text);
}

.gallery-band .carousel-arrow {
  border-color: rgba(255, 255, 255, 0.5);
  background: var(--white);
}

.gallery-band .carousel-dot {
  background: rgba(255, 255, 255, 0.38);
}

.gallery-band .carousel-dot.is-active {
  background: var(--white);
}

.services-slider-section .service-tabs a {
  color: rgba(255, 255, 255, 0.86);
}

.services-slider-section .service-tabs a:hover,
.services-slider-section .service-tabs a:focus {
  color: var(--white);
}

.services-slider-section .service-tabs a[aria-current="page"],
.services-slider-section .service-tabs a:first-child {
  background: var(--white);
  color: var(--red);
}

body .section.cta-band:not(.premium-cta) .btn-primary {
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

body .section.cta-band:not(.premium-cta) .btn-primary:hover {
  background: var(--red-soft);
  color: var(--red-deep);
}

body .section.cta-band:not(.premium-cta) .btn-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}

body .section.cta-band:not(.premium-cta) .btn-secondary:hover {
  background: var(--white);
  color: var(--red-dark);
}
