/* ==========================================================================
   Blanchard Electric — Professional Theme
   ========================================================================== */

:root {
  --color-primary: #b42318;
  --color-primary-dark: #912018;
  --color-primary-soft: rgba(180, 35, 24, 0.08);
  --color-accent: #b8860b;
  --color-accent-light: #d4a853;
  --color-navy: #0f172a;
  --color-navy-mid: #1e293b;
  --color-dark: #0f172a;
  --color-dark-soft: #334155;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-subtle: #f1f5f9;
  --color-border: #e2e8f0;
  --font-heading: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --radius: 10px;
  --radius-lg: 16px;
  --header-height: 96px;
  --logo-height: 90px;
  --switch-transition: 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  --container: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
  margin-top: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.6;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-header::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 1.25rem auto 0;
  background: var(--color-primary);
  border-radius: 2px;
}

/* ==========================================================================
   Header & Light Switch Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: var(--logo-height);
  width: auto;
  max-width: min(420px, 58vw);
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 4px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brand-text {
  display: none;
}

/* Light switch nav */
.switch-nav {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.switch-nav__item {
  margin: 0;
}

.switch-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem 0.625rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.switch-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.switch-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.switch-label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--switch-transition);
}

.switch-link:hover .switch-label,
.switch-link.is-active .switch-label {
  color: rgba(255, 255, 255, 0.95);
}

/* Switch nav images */
.switch-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 56px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
  transition: filter var(--switch-transition);
}

.switch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--switch-transition);
}

.switch-img--off {
  opacity: 1;
}

.switch-img--on {
  opacity: 0;
}

.switch-link.is-active .switch-img--off {
  opacity: 0;
}

.switch-link.is-active .switch-img--on {
  opacity: 1;
}

.switch-link.is-active .switch-icon {
  filter:
    drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 10px rgba(255, 190, 60, 0.35));
}

.switch-link:not(.is-active):hover .switch-icon {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}

.switch-link.is-active:hover .switch-icon {
  filter:
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 14px rgba(255, 190, 60, 0.45));
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  z-index: 1190;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 1210;
}

body.nav-open .mobile-call-bar {
  display: none;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding: 0.625rem 1.125rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(180, 35, 24, 0.25);
}

.header-phone:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(180, 35, 24, 0.3);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2.5rem) 0 3.5rem;
  overflow: hidden;
}

.hero--short {
  min-height: 52vh;
  padding-bottom: 3rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.78) 45%,
    rgba(30, 41, 59, 0.65) 100%
  );
  z-index: 1;
}

/* Canvas lightning — subtle, behind content */
.hero__lightning-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.hero__flash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 15%,
    rgba(200, 220, 255, 0.35) 0%,
    transparent 60%
  );
  opacity: 0;
}

.hero__flash.is-active {
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.hero__panel {
  padding: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero h1 .highlight {
  color: var(--color-accent-light);
  display: block;
  font-weight: 700;
  margin-top: 0.25rem;
  font-size: 0.92em;
}

.hero__subtitle {
  display: none;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero--center .hero__content {
  text-align: center;
  margin-inline: auto;
}

.hero--center .hero__desc {
  margin-inline: auto;
}

.hero--center .hero__actions {
  justify-content: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(180, 35, 24, 0.22);
}

.btn--primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(180, 35, 24, 0.28);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn--outline:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn--white {
  background: #fff;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}

.btn--white:hover {
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 0.9375rem 1.75rem;
  font-size: 1rem;
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-soft);
  border-radius: 8px;
  margin-bottom: 1.125rem;
  color: var(--color-primary);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.content-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
}

.content-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.content-card p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.value-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--color-primary);
}

.team-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.img-rounded {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* Why section with background */
.why-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.why-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  z-index: 1;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section .section-header h2,
.why-section .section-header p {
  color: #fff;
}

.why-section .section-header p {
  opacity: 0.85;
}

.why-section .stat-card {
  background: rgba(255, 255, 255, 0.95);
}

.commitment-text {
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
  color: rgba(255, 255, 255, 0.9);
}

.commitment-text h3 {
  color: #fff;
  margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--color-navy);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 4px solid var(--color-primary);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.625rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.65;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Stats gradient section */
.stats-banner {
  background: var(--color-navy);
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-banner h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.stats-banner > .container > p {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-banner .stat-item {
  text-align: center;
  color: #fff;
}

.stats-banner .stat-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stats-banner .stat-item__label {
  font-weight: 600;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Service lists */
.service-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-list-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
}

.service-list-card h4 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-alt);
}

.service-list-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list-card li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.75rem;
  border-bottom: 1px solid var(--color-bg-alt);
  color: var(--color-text);
  font-size: 0.95rem;
}

.service-list-card li:last-child {
  border-bottom: none;
}

.service-list-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.service-feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.service-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.service-feature-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact */
.emergency-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.emergency-banner h4 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.emergency-banner p {
  margin: 0 0 0.75rem;
  opacity: 0.9;
}

.emergency-banner a {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: none;
}

.emergency-banner a:hover {
  opacity: 0.9;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
}

.contact-card--accent {
  border-left: 4px solid var(--color-accent);
}

.contact-card--primary {
  border-left: 4px solid var(--color-primary);
}

.contact-card h4 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-alt);
}

.contact-card--accent h4 {
  color: var(--color-accent);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
}

.contact-method__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-method strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.contact-method a {
  font-weight: 500;
}

.area-group {
  margin-bottom: 1.25rem;
}

.area-group:last-child {
  margin-bottom: 0;
}

.area-group strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.area-group p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--color-text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: 700;
}

.check-list h4 {
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

/* Trust bar */
.trust-bar {
  background: var(--color-navy);
  border-bottom: none;
  padding: 1.25rem 0;
}

.trust-bar__item {
  border-right-color: rgba(255, 255, 255, 0.12);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar__item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.trust-bar__item span {
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.85;
}

/* Prose */
.prose h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.prose p {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose p:last-of-type {
  margin-bottom: 1.5rem;
}

.btn--accent {
  background: var(--color-accent-light);
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
  font-weight: 700;
}

.btn--accent:hover {
  color: var(--color-navy);
  background: #e8c468;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.32);
}

.section--tight {
  padding: 3rem 0;
}

.about-photo {
  padding: 2.5rem 0 0;
  background: var(--color-bg);
}

.about-photo__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.section-eyebrow--light {
  color: var(--color-accent-light);
}

.hero__checks {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
}

.hero__checks li {
  position: relative;
  padding-left: 1.375rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-light);
  box-shadow: 0 0 8px rgba(212, 168, 83, 0.6);
}

.hero__actions--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  max-width: 560px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-accent-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.service-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.service-card__link:hover {
  color: var(--color-primary-dark);
}

.why-section .section-header::after {
  background: var(--color-accent-light);
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.why-pillar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.why-pillar h4 {
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}

.why-pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.service-area-card h4 {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-alt);
}

.service-area-card p {
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.service-area-card--highlight {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.service-area-card--highlight h4 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.service-area-card--highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.emergency-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8b1a12 100%);
  padding: 3rem 0;
  border-top: 4px solid var(--color-accent-light);
  border-bottom: 4px solid var(--color-accent-light);
}

.emergency-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.emergency-strip__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.625rem;
}

.emergency-strip__content h2 {
  color: #fff;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.emergency-strip__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  line-height: 1.65;
}

.emergency-strip__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: var(--color-bg-alt);
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--color-accent-light);
}

.mobile-call-bar:hover {
  color: #fff;
  background: var(--color-primary-dark);
}

.mobile-call-bar svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: var(--color-navy);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-navy-mid);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.section-actions {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-credit img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

/* Page offset for fixed header */
main {
  padding-top: 0;
}

.page-content {
  padding-top: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar__item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --logo-height: 50px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 0.5rem;
    min-height: var(--header-height);
  }

  .brand {
    min-width: 0;
    flex-shrink: 1;
  }

  .brand img {
    height: var(--logo-height);
    max-width: min(160px, 46vw);
    padding: 2px 6px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    margin-left: 0;
    padding: 0.625rem;
    width: 44px;
    height: 44px;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    z-index: 1102;
    flex-shrink: 0;
  }

  .header-phone svg {
    width: 20px;
    height: 20px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1102;
  }

  .nav-wrapper {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: block;
    width: 100%;
    margin-left: 0;
    background: #0f172a;
    padding: 1.25rem 1rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .switch-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .switch-nav__item {
    display: block;
    width: 100%;
  }

  .switch-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    min-height: 56px;
    width: 100%;
  }

  .switch-link:hover,
  .switch-link:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .switch-label {
    font-size: 1.0625rem;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
  }

  .switch-icon {
    width: 48px;
    height: 46px;
    flex-shrink: 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .service-lists {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .emergency-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .emergency-strip__cta {
    width: 100%;
  }

  .hero__actions--grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .mobile-call-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .back-to-top {
    bottom: 4.5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .trust-bar__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1rem;
  }

  .trust-bar__item:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .content-card {
    padding: 1.75rem;
  }

  .hero {
    min-height: 75vh;
  }

  .hero--short {
    min-height: 50vh;
  }

  .brand img {
    height: 44px;
    max-width: min(140px, 42vw);
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .hero__actions,
  .hero__actions--grid,
  .cta-banner__actions,
  .section-actions {
    flex-direction: column;
    width: 100%;
  }

  .section-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
