/* Penny Electric homepage — approved mockup build brief */
:root {
  --charcoal: #141414;
  --charcoal-light: #1a1a1a;
  --charcoal-mid: #222222;
  --yellow: #f8ae1a;
  --yellow-deep: #db8f15;
  --yellow-hover: #ffc933;
  --off-white: #fafaf7;
  --text: #2a2a2a;
  --text-muted: #666666;
  --border-dark: rgba(255, 255, 255, 0.08);
  --max-w: 1440px;
  --radius: 6px;
  --header-h: 72px;
  --header-gap: 2rem;
  --page-top: calc(var(--header-h) + var(--header-gap));
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Duran Medium", system-ui, -apple-system, sans-serif;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Duran Medium";
  src: url("../fonts/DuranMedium.woff2") format("woff2"),
       url("../fonts/DuranMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--page-top);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .stat-value, .section-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--yellow); color: var(--charcoal); padding: 0.5rem 1rem;
}
.skip-link:focus { top: 1rem; }

/* ── Photo containers (fixes crop/cutoff) ── */
.photo-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal-mid);
}
.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-container--blog { aspect-ratio: 16 / 10; }

/* ── Van showcase (true white section, no card) ── */
.van-showcase {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
}
.van-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.van-showcase img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Header (matches live pennyelectric.com tb_header) ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background-color: var(--yellow);
  background-image: linear-gradient(180deg, #f8ae1a 0%, #db8f15 100%);
  box-shadow: 0 8px 9px -6px rgba(0, 0, 0, 0.3);
  padding: 0.85rem 1.25rem;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  padding: 0.5rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.header-inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
  box-sizing: border-box;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
header .logo {
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: height 0.25s ease;
}
.site-header.scrolled .logo-img {
  height: 32px;
}
.main-nav { display: none; }
.main-nav-list { display: flex; gap: 1.25rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.main-nav-list > li { position: relative; }
.main-nav a, .nav-dropdown-toggle {
  color: #000; font-size: 0.875rem; letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 700; text-decoration: none;
}
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: inherit; display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-dropdown-toggle::after {
  content: ""; border: 4px solid transparent; border-top-color: currentColor;
  margin-top: 3px;
}
.main-nav a:hover, .main-nav a:focus-visible,
.nav-dropdown-toggle:hover, .nav-dropdown-toggle:focus-visible { color: var(--charcoal); opacity: 0.75; }
.nav-emergency-link {
  color: #b91c1c !important;
}
.nav-emergency-link:hover,
.nav-emergency-link:focus-visible {
  color: #991b1b !important;
  opacity: 1;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 0.5rem); left: 0;
  min-width: 14rem; max-width: min(18rem, calc(100vw - 2rem));
  background: #fff; border: 1px solid #e8e8e4;
  border-radius: 6px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.35rem 0; z-index: 200; list-style: none; margin: 0;
  overflow: hidden;
}
.nav-dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: -0.75rem; height: 0.75rem;
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-label {
  padding: 0.45rem 1rem 0.25rem; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #888; font-weight: 700; pointer-events: none;
}
.nav-dropdown-divider {
  height: 1px; background: #e8e8e4; margin: 0.35rem 0; pointer-events: none;
  list-style: none;
}
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1rem; text-transform: none;
  letter-spacing: 0.01em; font-weight: 600; white-space: normal;
  font-family: var(--font-display); font-size: 0.9375rem; color: #2a2a2a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #faf7f0; border-left-color: var(--yellow); opacity: 1; outline: none;
}
.nav-dropdown-menu__view-all {
  color: var(--yellow-deep); font-weight: 700;
}
.nav-dropdown-menu__view-all:hover,
.nav-dropdown-menu__view-all:focus-visible {
  color: var(--yellow-deep);
}
.nav-dropdown-social {
  border-top: 1px solid #e8e8e4;
  margin-top: 0.35rem;
  padding: 0.55rem 0.75rem 0.4rem;
}

.header-actions { display: flex; align-items: center; gap: 0; }
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  text-decoration: none;
  margin-right: 0;
}
.header-phone-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.header-phone:hover { color: var(--charcoal); opacity: 0.75; }
.header-actions-divider {
  display: none;
  align-self: stretch;
  width: 1px;
  margin: 0.35rem 1rem;
  background: rgba(0, 0, 0, 0.22);
}

/* ── Social links ── */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-links li { display: flex; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #000;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.social-link:hover,
.social-link:focus-visible {
  opacity: 1;
  color: var(--charcoal);
  outline: none;
}
.social-icon {
  width: 1.05rem;
  height: 1.05rem;
}
.social-links--footer {
  margin-top: 1.25rem;
}
.social-links--footer .social-link {
  color: #bbb;
}
.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  color: var(--yellow);
}
.social-links--company {
  justify-content: flex-start;
  gap: 0.15rem;
}
.social-links--company .social-link {
  width: 1.85rem;
  height: 1.85rem;
}
.social-links--menu {
  justify-content: center;
  margin-top: 0.75rem;
}
.social-links--menu .social-link {
  color: var(--charcoal);
}

/* ── Mobile nav toggle + drawer ── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }
}
.mobile-nav-toggle__bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(21rem, 92vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.14);
}
.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e8e8e4;
  flex-shrink: 0;
}
.mobile-nav__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}
.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
}
.mobile-nav__close:hover,
.mobile-nav__close:focus-visible {
  opacity: 0.75;
  outline: none;
}
.mobile-nav__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0;
}
.mobile-nav__view[hidden] {
  display: none !important;
}
.mobile-nav__list,
.mobile-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__item,
.mobile-nav__sublist a,
.mobile-nav__item--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 1px solid #ececea;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--charcoal);
  text-align: left;
  text-decoration: none;
  line-height: 1.25;
  cursor: pointer;
}
.mobile-nav__item--emergency {
  color: #b91c1c;
  font-weight: 700;
  background: #fef2f2;
}
.mobile-nav__item--emergency:hover,
.mobile-nav__item--emergency:focus-visible {
  background: #fee2e2;
}
.mobile-nav__item--toggle::after,
.mobile-nav__list > li > button.mobile-nav__item--toggle::after {
  content: "›";
  font-size: 1.15rem;
  line-height: 1;
  color: #888;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.mobile-nav__item:hover,
.mobile-nav__item:focus-visible,
.mobile-nav__item--toggle:hover,
.mobile-nav__item--toggle:focus-visible,
.mobile-nav__sublist a:hover,
.mobile-nav__sublist a:focus-visible {
  background: var(--off-white);
  opacity: 1;
  outline: none;
}
.mobile-nav__sublist-divider {
  height: 1px;
  margin: 0.35rem 1rem;
  background: #e8e8e4;
  list-style: none;
}
.mobile-nav__sublist-view-all {
  color: var(--yellow-deep);
  font-weight: 700;
}
.mobile-nav__back {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 1px solid #e8e8e4;
  background: transparent;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--charcoal);
  cursor: pointer;
}
.mobile-nav__back:hover,
.mobile-nav__back:focus-visible {
  background: var(--off-white);
  outline: none;
}
.mobile-nav__footer {
  flex-shrink: 0;
  padding: 1rem;
  border-top: 1px solid #e8e8e4;
  background: var(--off-white);
}
.mobile-nav__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.75rem;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
.mobile-nav__phone-icon {
  width: 1.1rem;
  height: 1.1rem;
}
.mobile-nav__quote {
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  margin-bottom: 0.25rem;
}
body.mobile-nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.15rem; font-size: 0.85rem; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.btn-primary { background: var(--yellow); color: var(--charcoal); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-hover); }
.btn-header-quote {
  background: linear-gradient(180deg, #5b5b5b 0%, #1c0505 100%);
  background-color: #000;
  color: var(--yellow) !important;
  border: 1px solid #000;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.25rem;
}
.btn-header-quote:hover {
  background: #000;
  color: var(--yellow-hover) !important;
}
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--charcoal); color: var(--yellow); border-color: var(--charcoal); }

/* ── Hero (full-bleed bg — matches live et_pb_section_0 pattern) ── */
.hero {
  position: relative;
  color: #fff;
  padding: var(--page-top) 1.25rem 5rem;
  min-height: clamp(520px, 82vh, 760px);
  display: flex;
  align-items: center;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.48) 42%, rgba(10, 10, 10, 0.22) 100%),
    url("../images/2026-bg-05.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
  box-sizing: border-box;
}
.hero-logo {
  height: clamp(36px, 6vw, 52px);
  width: auto;
  margin-bottom: 1rem;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.05; text-transform: uppercase; margin-bottom: 1rem;
}
.hero-sub { color: #bbb; max-width: 540px; margin-bottom: 1.25rem; font-size: 1.05rem; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.7rem; font-size: 0.78rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); color: #ddd;
}
.chip svg { color: var(--yellow); flex-shrink: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1rem; }
.hero-phone-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 0 28px rgba(0,0,0,0.55);
  margin-top: 0.5rem;
}
.hero-phone-large a {
  color: var(--yellow);
  white-space: nowrap;
}
.hero-phone-large a:hover { color: var(--yellow-hover); }

/* ── Stat bar ── */
.stat-bar {
  background: var(--charcoal-light);
  border-top: 3px solid var(--yellow);
  padding: 2rem 1.25rem;
}
.stat-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.stat-item { text-align: center; color: #fff; }
.stat-value {
  font-size: 2rem; color: var(--yellow); line-height: 1; margin-bottom: 0.2rem;
}
.stat-value--sm { font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.15; }
.stat-label {
  font-size: 0.75rem; color: #a8a8a8; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Quote form section ── */
.quote-section {
  background: var(--charcoal); color: #fff;
  padding: 3.5rem 1.25rem;
}
.quote-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; gap: 2rem; align-items: start;
}
.quote-hardhat img { width: 100%; height: auto; max-width: min(100%, 560px); margin: 0 auto; display: block; }

.quote-form-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase; margin-bottom: 1rem;
}
.form-steps { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.form-step-indicator {
  padding: 0.35rem 0.75rem; font-size: 0.75rem; letter-spacing: 0.06em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); color: #888;
}
.form-step-indicator.is-active { border-color: var(--yellow); color: var(--yellow); }
.form-step-indicator.is-done { color: #ccc; }
.form-panel { display: none; }
.form-panel.is-active { display: block; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block; font-size: 0.8rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: #aaa; margin-bottom: 0.35rem;
}
.form-field input:not([type="radio"]):not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.65rem 0.75rem; font-family: var(--font-body);
  font-size: 1rem; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); background: rgba(255,255,255,0.06); color: #fff;
}
.form-field input:not([type="radio"]):not([type="checkbox"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--yellow); border-color: var(--yellow);
}
.form-field textarea { min-height: 100px; resize: vertical; }

/* ── Homepage emergency band ── */
.emergency-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1515 100%);
  color: #fff;
  padding: 2.75rem 1.25rem;
  border-top: 4px solid #b91c1c;
  border-bottom: 4px solid #b91c1c;
}
.emergency-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .emergency-band__inner {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}
.emergency-band__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 0.5rem;
}
.emergency-band h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.15;
}
.emergency-band p {
  color: #d4d4d4;
  margin: 0;
  max-width: 42rem;
}
.emergency-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 480px) {
  .emergency-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.emergency-band .btn.emergency-band__phone,
.emergency-band .btn.emergency-band__link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-height: 56px;
  margin: 0;
  padding: 0 1.25rem;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: none;
  border: 2px solid transparent;
  vertical-align: middle;
}
.emergency-band .btn.emergency-band__phone {
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
}
.emergency-band .btn.emergency-band__phone:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}
.emergency-band .btn.emergency-band__link.btn-outline {
  height: 58px;
  min-height: 58px;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.emergency-band .btn.emergency-band__link.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

fieldset.form-field,
.form-field--radios {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  min-width: 0;
}
.form-field legend {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 0.8rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: #aaa; margin-bottom: 0.5rem;
  float: none;
}
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: none;
  color: #ddd;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: normal;
  margin-bottom: 0;
}
.form-radio-group input[type="radio"] {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: var(--yellow);
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  flex-shrink: 0;
}
.form-radio-group input[type="radio"]:focus {
  outline: none;
  box-shadow: none;
}
.form-radio-group input[type="radio"]:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.form-field--conditional {
  overflow: hidden;
  max-height: 8rem;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}
.form-field--conditional.is-hidden {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  pointer-events: none;
}
.form-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.form-msg { margin-top: 1rem; font-size: 0.9rem; color: var(--yellow); }

/* ── Sections ── */
.section { padding: 4rem 1.25rem; }
/* First section on non-hero pages — clear fixed header + comfortable eyebrow gap */
#main > .section:first-child {
  padding-top: var(--page-top);
}
.section-inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
  box-sizing: border-box;
}
.section-dark { background: var(--charcoal); color: #fff; }
.section-light { background: var(--off-white); }
#services.section-light { background: #ffffff; }
.section-header { margin-bottom: 2rem; text-align: center; }
.section-eyebrow {
  display: block; font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 0.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase; line-height: 1.1;
}
.section-light .section-header h2 { color: var(--charcoal); }
.section-header p { margin-top: 0.65rem; color: var(--text-muted); }
.section-header p a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 2px; }
.section-header p a:hover { color: var(--yellow-deep); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.section-prose { padding-top: 3rem; padding-bottom: 3rem; }
.prose-block { max-width: 760px; margin: 0 auto; }
.prose-block .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.prose-block h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 1rem;
}
.prose-block p { color: var(--text-muted); margin-bottom: 1rem; }
.prose-block p:last-child { margin-bottom: 0; }
.prose-block a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 2px; }
.prose-block a:hover { color: var(--yellow-deep); }

.area-tags--light { margin-top: 0; }
.area-tags--centered { justify-content: center; }
.area-tag--light {
  background: var(--off-white);
  border-color: #e8e8e4;
  color: var(--charcoal);
}
.area-tag--light:hover { color: var(--yellow-deep); border-color: var(--yellow); }

.valley-links { max-width: 560px; margin: 0 auto; }
.valley-links-list {
  list-style: none; padding: 0; margin: 0;
  border: 1px solid #e8e8e4; border-radius: var(--radius); background: #fff;
}
.valley-links-list li { border-bottom: 1px solid #e8e8e4; }
.valley-links-list li:last-child { border-bottom: 0; }
.valley-links-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; color: var(--charcoal); font-weight: 700;
  text-decoration: none; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.valley-links-list a::after { content: "→"; color: var(--yellow); font-weight: 800; }
.valley-links-list a:hover { color: var(--yellow-deep); background: var(--off-white); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e8e8e4; border-radius: var(--radius);
  background: #fff; margin-bottom: 0.65rem; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.25rem;
  color: var(--yellow-deep); flex-shrink: 0; margin-left: 1rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary h3 {
  font-size: 1.05rem; text-transform: uppercase; line-height: 1.3;
  color: var(--charcoal); font-weight: 800; margin: 0;
}
.faq-item p {
  padding: 0 1.25rem 1.15rem; color: var(--text-muted); font-size: 0.95rem;
}

/* ── Services ── */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.service-card {
  background: var(--off-white); border: 1px solid #e8e8e4; border-radius: var(--radius);
  padding: 1.35rem; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
a.service-card { display: block; text-decoration: none; color: inherit; }
.service-card:hover {
  transform: translateY(-3px); border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-card h3 {
  font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.45rem; color: var(--charcoal);
}
.service-card p { font-size: 0.92rem; color: var(--text-muted); }

#services .services-grid { gap: 1.15rem; }
#services .service-card {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
#services .service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
#services .services-grid-cta {
  margin-top: 2rem;
  text-align: center;
}

.service-pillar-prose-inner {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.service-pillar-prose-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-pillar-prose-inner .section-eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.service-pillar-prose-inner p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.service-pillar-prose-inner p a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.service-pillar-prose-inner p a:hover {
  color: var(--yellow-deep);
}
.services-grid--pillar {
  grid-template-columns: 1fr;
}
.blog-breadcrumb--hero {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.blog-breadcrumb--hero a {
  color: rgba(255, 255, 255, 0.9);
}
.all-services-cluster {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #faf7f0;
  border: 1px solid #ece8df;
  border-radius: 6px;
}
.all-services-cluster:last-child {
  margin-bottom: 0;
}
.all-services-cluster h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}
.all-services-cluster h2 a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.1rem;
}
.all-services-cluster h2 a:hover {
  color: var(--yellow-deep);
  border-bottom-color: var(--yellow-deep);
}
.all-services-cluster > p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.9375rem;
}
.all-services-spoke-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.all-services-spoke-list li {
  position: relative;
  margin-bottom: 0.35rem;
  padding-left: 1rem;
  line-height: 1.6;
}
.all-services-spoke-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}
.all-services-spoke-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
}
.all-services-spoke-list a:hover {
  color: var(--yellow-deep);
}
.all-services-hub-link {
  font-weight: 700;
}
@media (min-width: 768px) {
  .all-services-spoke-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 0;
  }
}
.service-hub-context p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ── About / family ── */
.about-centered {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.about-centered .section-eyebrow { display: block; }
.about-centered h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-text p { color: #bbb; margin-bottom: 0; }
.features-grid { display: grid; gap: 1.5rem; margin-top: 0; }
.feature-item h3 {
  font-size: 1.05rem; text-transform: uppercase; margin-bottom: 0.35rem; color: #fff;
}
.feature-item p { font-size: 0.92rem; color: #aaa; }

/* ── Trustindex shell ── */
.trustindex-shell {
  min-height: 120px;
  padding: 0;
  border: none;
  background: transparent;
}
.trustindex-shell .ti-widget { display: block !important; }

/* ── Blog teaser ── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.blog-card:nth-child(n+4) { display: none; }
.blog-card {
  background: #fff; border: 1px solid #e8e8e4; border-radius: var(--radius); overflow: hidden;
}
.blog-card > a { display: block; color: inherit; }
.blog-card .photo-container { border-radius: 0; aspect-ratio: 16 / 10; }
.blog-card-body { padding: 1.15rem; }
.blog-card h3 {
  font-size: 1.05rem; text-transform: uppercase; line-height: 1.3; color: var(--charcoal);
}
.blog-card h2 {
  font-size: 1.05rem; text-transform: uppercase; line-height: 1.3; color: var(--charcoal); margin: 0 0 0.5rem;
}
.blog-card-excerpt {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; margin: 0;
}
.blog-grid--index .blog-card:nth-child(n+4) { display: block; }
.blog-grid--index .blog-card:nth-child(n+5) { display: block; }

/* ── Blog article ── */
.blog-article { padding-top: 2rem; padding-bottom: 2rem; }
.blog-article-inner { max-width: 760px; margin: 0 auto; }
.blog-breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--yellow-deep); }
.blog-article-header h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  text-transform: uppercase; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 0.75rem;
}
.blog-meta { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.blog-meta-sep { margin: 0 0.35rem; }
.blog-reviewed { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.blog-featured-image {
  margin: 0 0 2rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid #e8e8e4;
}
.blog-featured-image img { display: block; width: 100%; height: auto; }
.blog-body { max-width: none; margin: 0; }
.blog-lead { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 1.75rem; }
.blog-body h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  text-transform: none; letter-spacing: 0;
  color: var(--charcoal); margin: 2rem 0 0.65rem;
  line-height: 1.25;
}
.blog-body p { color: var(--text-muted); margin-bottom: 1rem; }
.blog-body a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 2px; }
.blog-body a:hover { color: var(--yellow-deep); }
.blog-body--migrated h2,
.blog-body--migrated h3,
.blog-body--migrated h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  text-transform: none; letter-spacing: 0;
  color: var(--charcoal); margin: 2rem 0 0.65rem;
  line-height: 1.25;
}
.blog-body--migrated h3 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
.blog-body--migrated ul,
.blog-body--migrated ol {
  color: var(--text-muted); margin: 0 0 1rem 1.25rem; padding: 0;
}
.blog-body--migrated li { margin-bottom: 0.35rem; }
.blog-body--migrated img {
  display: block; max-width: 100%; height: auto;
  margin: 1.25rem auto; border-radius: var(--radius);
}
.blog-body--migrated blockquote {
  margin: 1.25rem 0; padding: 0.75rem 1rem;
  border-left: 4px solid var(--yellow); color: var(--charcoal);
  background: var(--off-white);
}
.section.section-blog-index { padding-top: 150px; }
.blog-card-date {
  display: block; font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.blog-pagination {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1rem; margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid #e8e8e4;
}
.blog-pagination-pages {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.35rem; list-style: none; margin: 0; padding: 0;
}
.blog-pagination-pages li { display: flex; }
.blog-pagination-link {
  color: var(--charcoal); text-decoration: none; font-weight: 600;
}
.blog-pagination-link:hover { color: var(--yellow-deep); }
.blog-pagination-current {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2rem; height: 2rem; padding: 0 0.5rem;
  background: var(--yellow); color: var(--charcoal); font-weight: 700;
  border-radius: 4px;
}
.blog-pagination-ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.5rem; height: 2rem; color: var(--text-muted);
}
.blog-cta-inline {
  margin: 1.5rem 0; padding: 1.25rem 1.35rem;
  background: var(--off-white); border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.blog-cta-inline p { margin: 0; color: var(--charcoal); font-style: italic; }
.blog-faq { margin-top: 2.5rem; }
.blog-faq > h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 1rem;
}
.blog-related { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid #e8e8e4; max-width: var(--max-w); }
.blog-related > h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 1.25rem; text-align: center;
}
.blog-related-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.blog-related-card {
  background: #fff; border: 1px solid #e8e8e4; border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.blog-related-card > a { display: block; color: inherit; text-decoration: none; }
.blog-related-card:hover {
  transform: translateY(-3px); border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blog-related-card .photo-container { border-radius: 0; }
.blog-related-card-body { padding: 1.15rem; }
.blog-related-card h3 {
  font-size: 1rem; text-transform: uppercase; line-height: 1.25;
  color: var(--charcoal); margin: 0;
}

.btn-outline-dark {
  background: transparent; color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }
.btn-primary--dark {
  background: var(--charcoal); color: var(--yellow); border-color: var(--charcoal);
}
.btn-primary--dark:hover { background: #000; color: var(--yellow-hover); border-color: #000; }

/* ── Quote landing page ── */
.section.quote-page-hero {
  padding-top: var(--page-top);
  padding-bottom: 4rem;
}
.quote-page-header { max-width: 42rem; margin-bottom: 2rem; }
.quote-page-header h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  text-transform: uppercase; line-height: 1.05; color: var(--charcoal); margin-bottom: 0.75rem;
}
.quote-page-lead { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0; }
.quote-page-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start;
}
.quote-form-wrap--light {
  background: #fff; border: 1px solid #e8e8e4; border-radius: var(--radius);
  padding: 1.5rem;
}
.quote-form-wrap--light .form-field label,
.quote-form-wrap--light .form-field legend { color: var(--text-muted); }
.quote-form-wrap--light .form-field input:not([type="radio"]):not([type="checkbox"]),
.quote-form-wrap--light .form-field textarea {
  background: #fff; border: 1px solid #d8d8d4; color: var(--charcoal);
}
.quote-form-wrap--light .form-field input:focus,
.quote-form-wrap--light .form-field textarea:focus {
  outline: 2px solid var(--yellow); border-color: var(--yellow);
}
.quote-form-wrap--light .form-radio-group label { color: var(--charcoal); }
.quote-form-wrap--light .form-step-indicator { display: none; }
.form-field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-reassurance { font-size: 0.85rem; color: #888; margin: 0.25rem 0 1rem; line-height: 1.45; }
.label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #888; font-size: 0.85em; }
.quote-aside-heading {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--charcoal); margin-bottom: 1rem;
}
.quote-form-group { margin-bottom: 1.75rem; }
.quote-form-group:last-of-type { margin-bottom: 0.5rem; }
.quote-form-group-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--charcoal); margin: 0 0 1rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--yellow);
}
.form-field--checkbox { margin-bottom: 0.5rem; }
.form-checkbox-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; color: var(--charcoal); cursor: pointer;
  text-transform: none; letter-spacing: normal; font-weight: 500;
}
.form-checkbox-label input[type="checkbox"] {
  width: auto; margin: 0; accent-color: var(--yellow);
}
.quote-form-wrap--light .form-checkbox-label { color: var(--charcoal); }
.quote-form-wrap .form-checkbox-label { color: #ddd; }
.quote-form-wrap .form-field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.process-strip--aside {
  display: flex; flex-direction: column; gap: 1rem;
}
.process-step--aside {
  padding: 1.15rem;
  flex-direction: row;
}
.trust-strip-inline {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-direction: column; gap: 0;
}
.trust-strip-inline li {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--charcoal); padding: 0.55rem 0; border-top: 1px solid #e8e8e4;
}
.section.quote-received-section {
  padding-top: calc(75px + 3rem);
  min-height: 50vh;
}
.quote-received-inner { max-width: 36rem; margin: 0 auto; text-align: center; }
.quote-received-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.75rem;
}
.quote-received-lead { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0; }
.quote-received-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem;
}

/* ── Reviews page ── */
.section.section-reviews-hero,
.section.section-placeholder {
  padding-top: calc(75px + 3rem);
  padding-bottom: 1.25rem;
}
.section-reviews-hero .section-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
}
.section-reviews-hero .section-header { margin-bottom: 1.75rem; }
.reviews-reputation-banner {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  border-top: 4px solid var(--yellow);
}
.reviews-banner-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start;
}
.reviews-banner-copy { min-width: 0; }
.reviews-banner-subhead {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.reviews-stat-stack {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.reviews-stat--stack { text-align: left; }
.reviews-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  text-align: center;
}
.reviews-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.reviews-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  line-height: 1.35;
}
.reviews-differentiator {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.reviews-widget-section { padding-top: 0; }
.reviews-widget-section .section-header { margin-bottom: 1.75rem; }
.reviews-widget-container {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
}
.trustindex-shell--reviews {
  margin-top: 0;
  min-height: 280px;
}
.reviews-established-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.reviews-established-copy { text-align: left; min-width: 0; }
.reviews-established-copy .section-eyebrow,
.reviews-established-copy h2 { text-align: left; }
.reviews-established-copy h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}
.reviews-established-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.reviews-established-media .photo-container--intro { aspect-ratio: 4 / 3; }
.placeholder-inner { max-width: 36rem; }

/* ── Company pages (About, Employment) ── */
.company-trust-strip-section { padding-top: 2rem; padding-bottom: 2rem; }
.trust-strip-bar {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.65rem 1.25rem;
  background: var(--charcoal); color: #fff;
  border-radius: var(--radius); border-top: 4px solid var(--yellow);
  padding: 1.15rem 1.5rem;
}
.trust-strip-bar li {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #ddd; line-height: 1.35;
}
.trust-strip-bar li:not(:last-child)::after {
  content: ' · ';
  margin-left: 0.35rem;
  color: var(--yellow);
  font-weight: 400;
}
.trust-strip-bar a { color: var(--yellow); text-decoration: none; }
.trust-strip-bar a:hover { text-decoration: underline; }
.company-locations-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.company-location-card {
  background: #fff; border: 1px solid #e8e8e4; border-radius: var(--radius);
  padding: 1.35rem;
}
.company-location-card h3 {
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--charcoal); margin: 0 0 0.65rem;
}
.company-location-card p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0 0 0.65rem;
}
.company-location-note {
  font-size: 0.85rem; color: #888; margin: 0 !important;
}
.employment-offers-grid { align-items: start; }
.employment-apply .section-header { max-width: 42rem; margin-left: auto; margin-right: auto; }
.employment-form-wrap { max-width: 42rem; margin: 0 auto; }
.employment-form .form-field label { color: var(--text-muted); }
.employment-form .form-field input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.employment-form .form-field select,
.employment-form .form-field textarea {
  background: #fff; border: 1px solid #d8d8d4; color: var(--charcoal);
}
.employment-form .form-field input:focus,
.employment-form .form-field select:focus,
.employment-form .form-field textarea:focus {
  outline: 2px solid var(--yellow); border-color: var(--yellow);
}
.employment-form .form-field legend { color: var(--text-muted); }
.employment-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
.employment-form-row > .form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.employment-form .form-field--radios {
  margin-bottom: 1rem;
}
.employment-form .form-field--radios fieldset {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.employment-form .form-field--radios legend {
  margin-bottom: 0.35rem;
  flex-shrink: 0;
}
.employment-form .form-field--radios .form-radio-group {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 0.65rem 1.5rem;
  min-height: calc(1rem + 1.3rem + 2px);
  padding: 0;
  border: none;
  background: transparent;
}
.employment-form .form-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
  margin: 0;
  white-space: nowrap;
}
.employment-form .form-radio-group input[type="radio"] {
  margin: 0;
  flex-shrink: 0;
}
.employment-form .form-field input[type="file"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid #d8d8d4;
  border-radius: var(--radius);
  line-height: 1.4;
}
.employment-form .form-field input[type="file"]:focus {
  outline: 2px solid var(--yellow);
  border-color: var(--yellow);
}
.form-reassurance--light { color: #888; }
.employment-form .form-msg { margin-top: 0.75rem; font-size: 0.95rem; color: var(--charcoal); }

.placeholder-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.75rem;
}
.placeholder-inner p { color: var(--text-muted); margin: 0; }
.placeholder-inner a { color: var(--charcoal); font-weight: 600; text-decoration: underline; }

@media (min-width: 768px) {
  .reviews-banner-grid { grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
  .reviews-established-inner { grid-template-columns: 2fr 1fr; }
}

/* ── Service page v2 ── */
.hero--service {
  min-height: clamp(400px, 60vh, 580px);
  padding: var(--page-top) 1.25rem 3.5rem;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--charcoal);
}
.hero--photo {
  min-height: clamp(420px, 62vh, 600px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--charcoal);
}

.service-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.service-intro-copy { text-align: left; max-width: none; }
.service-intro-copy .section-eyebrow,
.service-intro-copy h2 { text-align: left; }
.service-intro-copy h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}
.service-intro-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  max-width: 42rem;
}
.service-intro-copy p + p { margin-top: 1rem; }
.service-intro-copy p a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.service-intro-copy p a:hover { color: var(--yellow-deep); }
.photo-container--intro {
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  border: 1px solid #e8e8e4;
}
.photo-container--intro img { object-fit: cover; object-position: center; }
.brand-sections-inner { max-width: var(--max-w); margin: 0 auto; display: grid; gap: 2rem; }
.brand-section h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 0.65rem;
}
.brand-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  max-width: 48rem;
}
.brand-section p a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.brand-section p a:hover { color: var(--yellow-deep); }
.photo-container--placeholder { background: #ececea; border: 2px dashed #c8c8c4; }
.image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 100%; height: 100%; min-height: 240px; padding: 1.5rem;
  color: var(--text-muted);
}
.image-placeholder--team { background: linear-gradient(145deg, #ececea 0%, #e0e0dc 100%); }
.image-placeholder-icon {
  width: 3.5rem; height: 3.5rem; margin-bottom: 0.85rem; border-radius: 50%;
  background: rgba(0,0,0,0.06); position: relative;
}
.image-placeholder-icon::before,
.image-placeholder-icon::after {
  content: ''; position: absolute; background: #aaa; border-radius: 50%;
}
.image-placeholder-icon::before {
  width: 1.25rem; height: 1.25rem; top: 0.85rem; left: 50%; transform: translateX(-50%);
}
.image-placeholder-icon::after {
  width: 2rem; height: 1rem; bottom: 0.65rem; left: 50%; transform: translateX(-50%);
  border-radius: 1rem 1rem 0 0;
}
.image-placeholder-label {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.5rem;
}
.image-placeholder-note {
  font-size: 0.78rem; line-height: 1.5; color: #888;
}
.image-placeholder-note code {
  font-size: 0.72rem; background: rgba(0,0,0,0.05); padding: 0.1rem 0.35rem; border-radius: 3px;
}
.service-intro-spacer { display: none; }

.signs-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.signs-grid--3 { /* About values: 3 equal columns at desktop */ }
.sign-card {
  background: #fff; border: 1px solid #e8e8e4; border-radius: var(--radius);
  padding: 1.35rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.sign-card:hover { border-color: var(--yellow); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.sign-card-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--yellow); margin-bottom: 0.85rem;
  position: relative;
}
.sign-card-icon::after {
  content: ""; position: absolute; inset: 0.65rem;
  background: var(--charcoal); border-radius: 2px;
}
.sign-card-icon--breaker::after { inset: 0.55rem 0.75rem; box-shadow: 0 4px 0 var(--charcoal); }
.sign-card-icon--fuse::after { border-radius: 50%; inset: 0.7rem; }
.sign-card-icon--ev::after { inset: 0.6rem 0.55rem; border-radius: 3px 3px 0 0; }
.sign-card-icon--flicker::after {
  inset: auto; width: 0; height: 0; background: transparent; border: none;
  left: 50%; top: 50%; transform: translate(-50%, -40%);
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 14px solid var(--charcoal);
}
.sign-card h3 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 0.4rem; color: var(--charcoal); }
.sign-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

.service-cta-band {
  background: var(--off-white); border-top: 1px solid #e8e8e4; border-bottom: 1px solid #e8e8e4;
  padding: 1.75rem 1.25rem;
}
.service-cta-band-inner {
  max-width: var(--max-w); margin: 0 auto; text-align: center;
}
.service-cta-band-heading {
  font-size: 1.05rem; color: var(--charcoal); font-weight: 600;
  margin: 0 0 1rem; max-width: 520px; margin-left: auto; margin-right: auto;
}
.service-cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

.included-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start;
}
.included-checklist h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem); text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative; padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid #e8e8e4; color: var(--charcoal); font-weight: 500;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.85rem;
  width: 0.65rem; height: 0.35rem;
  border-left: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}
.included-prose p { color: var(--text-muted); margin-bottom: 1rem; }
.included-prose a { color: var(--charcoal); text-decoration: underline; }
.included-related-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal); margin-bottom: 0.35rem; }
.included-related ul { list-style: none; padding: 0; margin: 0; }
.included-related li { margin-bottom: 0.35rem; }
.included-related a { color: var(--charcoal); font-weight: 600; }

.proof-band .section-header h2 { color: #fff; }
.proof-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 601px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
.proof-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 1.35rem;
}
.proof-card h3 { font-size: 1.05rem; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.5rem; }
.proof-card p { color: #ccc; font-size: 0.95rem; margin: 0; }
.proof-band--with-quote { padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.proof-band-quote {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.proof-band-quote .quote-grid { max-width: none; margin: 0; }

.process-strip {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
.process-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: #fff; border: 1px solid #e8e8e4; border-radius: var(--radius); padding: 1.35rem;
}
.process-step-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--yellow); line-height: 1; flex-shrink: 0;
}
.process-step-body h3 { font-size: 1.1rem; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.35rem; }
.process-step-body p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.service-page-v2 .faq-item p a { color: var(--charcoal); text-decoration: underline; }

/* ── Contact band ── */
.contact-band {
  background: var(--charcoal-light); color: #fff;
  padding: 3.5rem 1.25rem; border-top: 3px solid var(--yellow);
}
.contact-band-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: 2rem;
}
.contact-band-header { text-align: center; }
.contact-band-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-band-lead { color: #aaa; margin: 0; }
.contact-band-columns {
  display: grid; gap: 2.5rem;
}
.contact-info-block {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.65;
}
.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.contact-info-block ul { list-style: none; padding: 0; margin: 0; }
.contact-info-block a { color: #fff; }
.contact-info-block a:hover { color: var(--yellow); }
.contact-location-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.35rem;
  line-height: 1.45;
}
.contact-form-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.contact-form .form-field label { color: #aaa; }
.contact-form .form-field input,
.contact-form .form-field textarea {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: #fff;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal); color: #a3a3a3;
  padding: 3rem 1.25rem 6rem; font-size: 0.85rem;
}
.footer-shell {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.footer-top-logo {
  height: 40px;
  width: auto;
  max-width: min(100%, 200px);
  object-fit: contain;
  opacity: 1;
  filter: none;
  flex-shrink: 0;
}
.footer-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  line-height: 1.2;
  max-width: 100%;
}
.footer-inner {
  display: grid;
  gap: 2rem;
}
.footer-brand p { line-height: 1.65; margin-bottom: 1rem; }
.footer-address,
.footer-hours {
  margin-bottom: 1rem; line-height: 1.65;
}
.footer-address strong,
.footer-hours strong {
  display: block; color: #fff; margin-bottom: 0.35rem;
  font-family: var(--font-display); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-hours ul { list-style: none; padding: 0; margin: 0; }
.footer-license { font-size: 0.78rem; color: #777; margin-top: 0.5rem; }
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.65rem;
  opacity: 1;
  filter: none;
}
.footer-col {
  text-align: left;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col h3 {
  font-family: var(--font-display); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: #fff;
  margin-bottom: 0.65rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}
.footer-col h3::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: rgba(248, 174, 26, 0.3);
  margin-top: 1px;
  margin-right: 16px;
  min-width: 0;
}
.footer-col address { font-style: normal; line-height: 1.65; }
.footer-col a { color: #a3a3a3; }
.footer-col a:hover { color: var(--yellow); }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.area-tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: #a3a3a3;
  line-height: 1.3;
}
.area-tag:hover {
  color: var(--yellow);
  border-color: rgba(248, 174, 26, 0.45);
}
.footer-bottom {
  max-width: var(--max-w); margin: 2rem auto 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(248,174,26,0.5);
  font-size: 0.75rem; color: #777;
}
.footer-staff-login {
  color: #666;
  text-decoration: none;
  opacity: 0.85;
}
.footer-staff-login:hover {
  color: #888;
  text-decoration: underline;
}
.footer-bottom a {
  color: #888;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #aaa;
  text-decoration: underline;
}

/* ── Utility / legal pages ── */
.utility-title-band {
  padding: var(--page-top) 1.25rem 2rem;
  background: linear-gradient(180deg, #f8ae1a 0%, #db8f15 100%);
  border-bottom: 3px solid var(--charcoal);
}
.utility-title-band .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.utility-title-band h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.15;
}
.utility-updated {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}
.legal-review-note {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--yellow);
  background: #fffbe8;
  font-size: 0.8125rem;
  color: #665500;
  line-height: 1.45;
}
.legal-prose h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin: 1.75rem 0 0.65rem;
}
.legal-prose h2:first-child {
  margin-top: 0;
}

/* ── 404 page ── */
.utility-title-band--404 {
  text-align: center;
}
.utility-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}
.utility-lead {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.5;
}
.error-page__inner {
  display: grid;
  gap: 2rem;
  max-width: 42rem;
  margin: 0 auto;
}
.error-page__links-title {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}
.error-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.error-page__list li {
  border-bottom: 1px solid #ececea;
}
.error-page__list a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}
.error-page__list a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.error-page__cta {
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid #e8e8e4;
  border-radius: var(--radius);
  text-align: center;
}
.error-page__cta-text {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.error-page__phone {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
.error-page__phone:hover {
  opacity: 0.75;
}
.error-page__quote {
  display: inline-flex;
  min-width: 12rem;
}
@media (min-width: 768px) {
  .error-page__inner {
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-w);
    align-items: start;
  }
}

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  border-top: 2px solid var(--yellow);
}
.mobile-bar a {
  padding: 0.85rem; text-align: center; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.mobile-bar a:first-child { background: var(--charcoal-light); color: #fff; }
.mobile-bar a:last-child { background: var(--yellow); color: var(--charcoal); }

.reveal {
  opacity: 1;
  transform: none;
}
html.js-reveal-animate .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
html.js-reveal-animate .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.scroll-top {
  position: fixed;
  left: 20px;
  bottom: 3.5rem; /* ~56px: clears .mobile-bar (~48px + border) on small viewports */
  z-index: 99;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* ── Tablet 768–1023 ── */
@media (min-width: 768px) {
  :root { --header-h: 78px; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .quote-grid { grid-template-columns: 2fr 3fr; }
  .quote-hardhat { max-width: none; margin: 0; }
  .quote-hardhat img { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--pillar { grid-template-columns: repeat(2, 1fr); }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .signs-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .service-intro-inner:has(.service-intro-media) { grid-template-columns: 2fr 1fr; }
  .company-locations-grid { grid-template-columns: 1fr 1fr; }
  .employment-form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .quote-page-grid { grid-template-columns: 1.15fr 0.85fr; }
  .quote-form-wrap .form-field-row,
  .quote-form-wrap--light .form-field-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:nth-child(n+4) { display: block; }
  .blog-card:nth-child(n+5) { display: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-band-columns { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ── Mobile header & layout (<1024) ── */
@media (max-width: 1023px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-tagline {
    text-align: left;
    font-size: clamp(1rem, 3.2vw, 1.25rem);
    white-space: normal;
  }
  .footer-brand,
  .footer-col {
    text-align: left;
  }
  .footer-col h3 {
    text-align: left;
  }
  html,
  body {
    overflow-x: hidden;
  }
  .site-header {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }
  .site-header.scrolled {
    padding-left: 0;
    padding-right: 0;
  }
  .header-inner {
    max-width: 100%;
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
    gap: 0.5rem;
  }
  .header-actions {
    display: none !important;
  }
  .site-header .header-actions,
  .site-header .btn-header-quote,
  .site-header .btn.btn-header-quote {
    display: none !important;
  }
  .btn-header-quote {
    display: none !important;
  }
  .logo-img {
    max-height: 38px;
    width: auto;
    max-width: min(11.5rem, 48vw);
  }
  .site-header.scrolled .logo-img {
    max-height: 32px;
  }
  .hero {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Desktop ≥1024 ── */
@media (min-width: 1024px) {
  :root { --header-gap: 2.5rem; }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .header-phone { display: inline-flex; }
  .header-actions-divider { display: block; }
  .mobile-nav { display: none; }
  .mobile-bar { display: none; }
  .scroll-top { bottom: 24px; }
  .site-footer { padding-bottom: 3rem; }
  .footer-top {
    flex-direction: row;
    align-items: center;
  }
  .footer-tagline {
    text-align: right;
    font-size: 1.75rem;
    white-space: nowrap;
  }
  .footer-inner {
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand > p:not(.footer-license) {
    max-width: 280px;
  }
  .quote-hardhat {
    padding-right: clamp(1.5rem, 3vw, 3rem);
    max-width: 505px;
  }
  .quote-hardhat img {
    max-width: 505px;
    margin-left: auto;
    margin-right: 0;
  }
  .hero { padding-top: var(--page-top); padding-bottom: 5rem; min-height: 640px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  #services .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid--pillar { grid-template-columns: repeat(3, 1fr); }
  .signs-grid { grid-template-columns: repeat(4, 1fr); }
  .signs-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .process-strip { grid-template-columns: repeat(3, 1fr); }
  .process-strip--aside { display: flex; flex-direction: column; }
  .process-step { flex-direction: column; }
  .process-step--aside { flex-direction: row; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-related-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-card:nth-child(n+5) { display: block; }
}

@media (min-width: 1200px) {
  .section { padding: 5rem 1.25rem; }
  .section.quote-page-hero {
    padding-top: var(--page-top);
    padding-bottom: 5rem;
  }
  .section.quote-received-section {
    padding-top: var(--page-top);
  }
  .section.section-reviews-hero,
  .section.section-placeholder {
    padding-top: var(--page-top);
    padding-bottom: 1.5rem;
  }
}
