/* ── Block alignment helpers (normally provided by wp-block-styles) ── */
.has-text-align-center { text-align: center !important; }
.has-text-align-left   { text-align: left !important; }
.has-text-align-right  { text-align: right !important; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Strip WP core constraints so block patterns render full-width ── */
.wp-site-blocks,
.entry-content,
.wp-block-post-content,
.post-content,
.page-content {
  padding: 0 !important;
  max-width: none !important;
}

/* Hide the page title on block-pattern pages (title set in browser tab via title-tag support) */
.page-template-default .entry-header,
.page-template-default .page-header,
.singular .entry-header {
  display: none;
}

:root {
  --red:        #C9332E;
  --red-dark:   #a82520;
  --red-light:  #fbeaea;
  --charcoal:   #242021;
  --text:       #1a1a1a;
  --muted:      #6A6A6A;
  --white:      #ffffff;
  --bg-light:   #F4F4F4;
  --border:     #e0e0e0;
  --radius:     0px;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ── */
.em-topbar {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 20px;
}
.em-topbar a {
  color: var(--white);
  font-weight: 700;
}
.em-topbar a:hover { color: #ddd; text-decoration: none; }
.em-topbar i { margin-right: 4px; }

/* ── HEADER ── */
.em-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.em-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

/* Logo */
.em-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.em-logo:hover { text-decoration: none; }

/* Custom logo (uploaded via Customizer > Site Identity) */
.em-logo-custom {
  display: flex;
  align-items: center;
}
.em-logo-custom .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.em-logo-custom .custom-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.em-logo .em-logo-icon {
  background: var(--red);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.em-logo .em-logo-sub { color: var(--red); }

/* Nav */
.em-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.em-nav a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}
.em-nav a:hover { color: var(--red); text-decoration: none; }
.em-nav .em-nav-phone > a {
  background: var(--red);
  color: var(--white) !important;
  padding: 11px 20px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.em-nav .em-nav-phone > a:hover { background: var(--red-dark); text-decoration: none; }

/* Nav dropdown */
.em-nav-has-dropdown { position: relative; }
.em-nav-caret { font-size: 0.65em; margin-left: 3px; vertical-align: middle; transition: transform 0.2s; }
.em-nav-has-dropdown:hover .em-nav-caret { transform: rotate(180deg); }
.em-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none;
  min-width: 240px;
  z-index: 999;
  padding: 8px 0;
}
.em-nav-has-dropdown:hover .em-nav-dropdown { display: block; }
.em-nav-dropdown li { list-style: none; }
.em-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text) !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.em-nav-dropdown a:hover { background: var(--red-light); color: var(--red) !important; text-decoration: none; }
.em-nav-dropdown a i { color: var(--red); width: 16px; text-align: center; }

/* Mobile nav toggle */
.em-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: 4px 8px;
}

/* ── HERO ── */
.em-hero {
  background: var(--charcoal) url("https://ik.imagekit.io/bigfogg/wp-content/uploads/2019/03/concerts-bigfogg-1.jpg?tr=w-1600") 48% 83%/cover no-repeat;
  color: var(--white);
  padding: 120px 20px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.em-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.em-hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--red-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.em-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--white);
}
.em-hero h1 .em-sub-brand {
  display: block;
  color: var(--white);
  opacity: 0.85;
  font-size: 0.75em;
  letter-spacing: 0.12em;
  border-top: 2px solid rgba(255,255,255,0.25);
  padding-top: 10px;
  margin-top: 6px;
}
.em-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 20px;
  opacity: 0.9;
}
.em-hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0;
}
.em-hero-tagline i { color: rgba(255,255,255,0.5); }

/* ── HERO overlay + content wrapper ── */
.em-hero { position: relative; overflow: hidden; }
.em-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  pointer-events: none;
}
.em-hero-content { position: relative; z-index: 1; }

/* ── BUTTONS ── */
.em-btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.em-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  line-height: 1;
}
.em-btn-primary {
  background: var(--red);
  color: var(--white);
}
.em-btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.em-btn-outline {
  border: 2px solid rgba(255,255,255,0.75);
  color: var(--white);
  background: transparent;
}
.em-btn-outline:hover { border-color: white; background: rgba(255,255,255,0.15); color: var(--white); }
.em-btn-red-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.em-btn-red-outline:hover { background: var(--red); color: var(--white); }

/* ── TRUST STRIP ── */
.em-trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: max(20px, calc((100% - 1140px) / 2));
  padding-right: max(20px, calc((100% - 1140px) / 2));
}
.em-trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.em-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.em-trust-item i {
  color: var(--red);
  font-size: 1.05rem;
}
.em-trust-item span { white-space: nowrap; }

/* ── SECTIONS ── */
.em-section {
  padding-top: 96px;
  padding-bottom: 96px;
  padding-left: max(20px, calc((100% - 1140px) / 2));
  padding-right: max(20px, calc((100% - 1140px) / 2));
  display: block;
  clear: both;
}
.em-section-light { background: var(--bg-light); }
.em-section-dark {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a1210 100%);
  color: var(--white);
}
.em-stats-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a0d0b 100%);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: max(20px, calc((100% - 1140px) / 2));
  padding-right: max(20px, calc((100% - 1140px) / 2));
  display: block;
  clear: both;
}
.em-stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.em-stats-header {
  text-align: center !important;
}
.em-section-label-white {
  color: rgba(255,255,255,0.55) !important;
  justify-content: center !important;
}
.em-section-label-white::before {
  background: rgba(255,255,255,0.4) !important;
}

.em-section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.em-section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.em-section-header.center .em-section-label { justify-content: center; }
.em-section-dark .em-section-label { color: rgba(255,255,255,0.6); }
.em-section-dark .em-section-label::before { background: rgba(255,255,255,0.4); }

.em-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.em-section-intro {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.em-section-dark .em-section-intro { color: rgba(255,255,255,0.75); }
.em-section-header { margin-bottom: 60px; }
.em-section-header.center { text-align: center; }
.em-section-header.center .em-section-intro { margin: 0 auto; }

/* ── TWO-COL ── */
.em-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.em-two-col.reverse { direction: rtl; }
.em-two-col.reverse > * { direction: ltr; }
.em-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.em-col-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.em-col-text > p { color: var(--muted); margin-bottom: 18px; font-size: 1rem; line-height: 1.75; }
.em-col-text ul { list-style: none; margin-bottom: 28px; }
.em-col-text ul li {
  padding: 6px 0;
  color: var(--muted);
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
}
.em-col-text ul li i { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ── CHECK LIST ── */
.em-check-list { list-style: none; margin-bottom: 24px; }
.em-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.em-check-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

/* ── CARDS ── */
.em-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.em-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.em-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.em-card-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.em-card-img img { width: 100%; height: 100%; object-fit: cover; }
.em-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.em-card-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.em-card-body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  margin-top: 6px;
}
.em-card-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.65; flex: 1; }
.em-card-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.em-card-link:hover { color: var(--red-dark); text-decoration: none; }

/* Card actions row (Get Quote + View Products side by side) */
.em-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* "View Products" link — muted gray, underlined */
.em-card-product-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.em-card-product-link:hover { color: var(--text) !important; text-decoration: underline; }

/* ── STATS ── */
.em-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.em-stat {
  background: rgba(255,255,255,0.05);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.2s;
}
.em-stat:hover { background: rgba(255,255,255,0.1); }
.em-stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.em-stat-label {
  font-size: 0.75rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--white);
}

/* ── PROCESS ── */
.em-process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}
.em-step { flex: 1; min-width: 160px; max-width: 220px; text-align: center; padding: 0 16px; }
.em-step-bubble {
  position: relative;
  width: 72px; height: 72px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(201,51,46,0.15);
}
.em-step-badge {
  position: absolute;
  bottom: -6px; right: -6px;
  background: var(--red); color: var(--white);
  font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 0.8rem;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  line-height: 1;
}
.em-step h3 { font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.em-step p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }
.em-step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: #ddd; font-size: 1.2rem;
  padding: 0 4px; margin-top: 36px;
  flex-shrink: 0;
}

/* ── USE CASE TAGS ── */
.em-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.em-tag {
  background: var(--red-light);
  color: var(--red-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 7px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.em-tag i { margin-right: 5px; }

/* ── COMPARISON GRID ── */
.em-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.em-compare-card {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.em-compare-us { border-color: var(--red); }
.em-compare-header {
  padding: 14px 22px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.em-compare-us .em-compare-header { background: var(--red); color: #fff; }
.em-compare-them .em-compare-header { background: var(--bg-light); color: var(--muted); }
.em-compare-card ul { list-style: none; padding: 18px 22px; }
.em-compare-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.em-compare-card ul li:last-child { border-bottom: none; }
.em-compare-us ul li i { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.em-compare-them ul li { color: var(--muted); }
.em-compare-them ul li i { color: #ccc; flex-shrink: 0; margin-top: 2px; }
.em-compare-header i { margin-right: 6px; }
.em-compare-us .em-compare-header i { color: #fff; }
.em-compare-them .em-compare-header i { color: var(--muted); }

/* ── SERVICE AREAS ── */
.em-service-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.em-area-card {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.em-area-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
a.em-area-card-link { text-decoration: none !important; color: inherit !important; display: block; cursor: pointer; }
a.em-area-card-link:hover { color: inherit !important; }
.em-area-card i { color: var(--red); font-size: 1.6rem; margin-bottom: 10px; display: block; }
.em-area-card h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.em-area-card p { font-size: 0.85rem; color: var(--muted); }
.em-area-card small { display: block; margin-top: 4px; font-size: 0.78rem; color: #aaa; }
/* Wide card — old non-block grid layout only */
.em-service-areas .em-area-card-wide {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 20px; text-align: left;
  background: var(--red-light);
  border-color: var(--red);
}
.em-service-areas .em-area-card-wide i { font-size: 2rem; flex-shrink: 0; margin-bottom: 0; }
.em-service-areas .em-area-card-wide h4 { color: var(--red-dark); }

/* ── TESTIMONIALS ── */
.em-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.em-testimonial {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
}
.em-stars { color: #f0a500; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.em-testimonial-text {
  font-size: 0.97rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.75;
  flex: 1;
}
.em-testimonial-author { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--text); }
.em-testimonial-role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── FAQ ── */
.em-faq { max-width: 820px; margin: 0 auto; }
.em-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.em-faq-item:first-child { border-top: 1px solid var(--border); }
.em-faq-q {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex; align-items: flex-start; gap: 14px;
}
.em-faq-q i { color: var(--red); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.em-faq-a {
  margin-top: 12px;
  margin-left: 28px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CTA BAND ── */
.em-cta-band {
  background: linear-gradient(135deg, var(--charcoal), var(--red));
  color: var(--white);
  text-align: center;
  padding-top: 110px;
  padding-bottom: 110px;
  padding-left: max(20px, calc((100% - 800px) / 2));
  padding-right: max(20px, calc((100% - 800px) / 2));
}
.em-cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.em-cta-band p { opacity: 0.85; max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; line-height: 1.7; }
.em-cta-phone {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 28px;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}
.em-cta-phone:hover { opacity: 0.85; }
.em-cta-phone i { margin-right: 10px; }

/* ── FOOTER ── */
.em-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 28px;
}
.em-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 44px;
}
.em-footer-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 10px;
}
.em-footer-brand span { color: var(--red); }
.em-footer-desc { font-size: 0.88rem; line-height: 1.7; }
.em-footer h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 14px;
}
.em-footer ul { list-style: none; }
.em-footer ul li { margin-bottom: 7px; }
.em-footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.em-footer ul li a:hover { color: var(--red); text-decoration: none; }
.em-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 0.88rem;
}
.em-footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.em-footer-contact-item a { color: rgba(255,255,255,0.6); }
.em-footer-contact-item a:hover { color: var(--red); text-decoration: none; }
.em-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  max-width: 1140px;
  margin: 0 auto;
}
.em-footer-bottom a { color: rgba(255,255,255,0.4); }
.em-footer-bottom a:hover { color: var(--red); text-decoration: none; }
.em-social { display: flex; gap: 10px; margin-top: 14px; }
.em-social a {
  background: rgba(255,255,255,0.08);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
.em-social a:hover { background: var(--red); color: white; text-decoration: none; }

/* ── WORDPRESS MENU overrides ── */
.em-nav.menu { margin: 0; padding: 0; list-style: none; }
.em-nav .menu-item { list-style: none; }

/* ── FA icon colours ── */
.em-trust-item i           { color: var(--red); font-size: 1rem; }
.em-hero-badge i           { color: var(--red-dark); }
.em-hero-tagline i         { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.em-btn i                  { margin-right: 2px; }
.em-section-label i        { color: var(--red); font-size: 0.9rem; }
.em-tags i                 { color: var(--red); margin-right: 4px; }

/* ── Gutenberg block editor ── */
.entry-content > *,
.wp-block-group.alignfull { max-width: 100%; }

.em-section > .wp-block-group,
.em-section > .wp-block-columns,
.em-section > .wp-block-heading,
.em-section > .wp-block-paragraph,
.em-section > .wp-block-buttons,
.em-section > .wp-block-spacer,
.em-stats-band > .wp-block-paragraph,
.em-stats-band > .wp-block-heading,
.em-stats-band > .wp-block-spacer,
.em-stats-band > .wp-block-columns {
  max-width: 1140px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── WP Block Button base — strip ALL WP defaults first ── */
.wp-block-button,
.wp-block-button.em-btn-primary,
.wp-block-button.em-btn-outline,
.wp-block-button.em-btn-red-outline {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: auto !important;
  display: inline-block !important;
}

.wp-block-buttons {
  gap: 14px !important;
  flex-wrap: wrap !important;
}
.wp-block-buttons > .wp-block-button {
  width: auto !important;
  flex: 0 0 auto !important;
}

/* ── Shared link base ── */
.wp-block-button__link {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  transition: all 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  box-sizing: border-box !important;
}

/* ── Primary (red fill) ── */
.wp-block-button.em-btn-primary .wp-block-button__link {
  background: var(--red) !important;
  color: #fff !important;
  border: 2px solid var(--red) !important;
}
.wp-block-button.em-btn-primary .wp-block-button__link:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Outline white (used on dark/hero backgrounds) ── */
.wp-block-button.em-btn-outline .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.75) !important;
}
.wp-block-button.em-btn-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Red outline (used on light backgrounds) ── */
.wp-block-button.em-btn-red-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--red) !important;
  border: 2px solid var(--red) !important;
}
.wp-block-button.em-btn-red-outline .wp-block-button__link:hover {
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
  text-decoration: none !important;
}

/* ── Block cover / hero ── */
.wp-block-cover.em-hero .wp-block-cover__inner-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 20px;
}
.wp-block-cover.em-hero .em-hero-badge {
  display: inline-block;
  background: rgba(201,51,46,0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.wp-block-cover.em-hero .wp-block-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.wp-block-cover.em-hero .em-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin: 0 auto 32px;
}
.wp-block-cover.em-hero .em-hero-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Trust strip (block columns) ── */
.wp-block-columns.em-trust-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 32px 48px !important;
  max-width: 1100px;
  margin: 0 auto !important;
}
.wp-block-columns.em-trust-inner > .wp-block-column {
  flex: 0 0 auto !important;
  width: auto !important;
}
.wp-block-columns.em-trust-inner .em-trust-item {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0;
}

/* ── Product cards row ── */
.wp-block-columns.em-cards-row {
  gap: 28px !important;
  align-items: stretch !important;
}
.wp-block-columns.em-cards-row > .wp-block-column.em-card {
  display: flex !important;
  flex-direction: column !important;
}
.wp-block-column.em-card .wp-block-image { margin: 0; flex-shrink: 0; }
.wp-block-column.em-card .wp-block-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.wp-block-column.em-card .wp-block-group.em-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
}
.em-card-icon-wrap { font-size: 2rem; margin: 0 0 6px; line-height: 1; }
.em-card-icon-wrap i { color: var(--red); }
.wp-block-column.em-card .wp-block-heading {
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  margin-top: 4px;
  color: var(--text);
}
.wp-block-column.em-card .wp-block-group.em-card-body > .wp-block-paragraph:not(.em-card-icon-wrap) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.wp-block-column.em-card .wp-block-buttons { margin-top: auto; }

/* ── Stats band ── */
.wp-block-columns.em-stats {
  gap: 2px !important;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.wp-block-columns.em-stats > .wp-block-column { flex: 1 !important; }
.wp-block-group.em-stat {
  background: rgba(255,255,255,0.05);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.2s;
}
.wp-block-group.em-stat:hover { background: rgba(255,255,255,0.1); }
.em-stat-number {
  font-size: 3rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1 !important;
  margin-bottom: 10px;
}
.em-stat-label {
  font-size: 0.75rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* ── Process / How It Works ── */
.wp-block-columns.em-process {
  gap: 24px !important;
  align-items: flex-start !important;
}
.wp-block-column.em-step { text-align: center; }
.em-step-icon-wrap { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.em-step-icon-wrap i { color: var(--red); }
.em-step-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.wp-block-column.em-step .wp-block-heading {
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.wp-block-column.em-step .wp-block-paragraph:not(.em-step-icon-wrap):not(.em-step-num) {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ── Comparison grid ── */
.wp-block-columns.em-compare-grid {
  gap: 28px !important;
  align-items: stretch !important;
}
.wp-block-column.em-compare-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  display: flex !important;
  flex-direction: column !important;
}
.wp-block-column.em-compare-us { border-color: var(--red); }
.wp-block-column.em-compare-card .em-compare-header {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
.wp-block-column.em-compare-us .em-compare-header { background: var(--red); color: #fff; }
.wp-block-column.em-compare-them .em-compare-header { background: var(--bg-light); color: var(--muted); }

/* ── Service area cards ── */
.wp-block-columns.em-service-areas {
  gap: 20px !important;
  align-items: stretch !important;
  flex-wrap: wrap !important;
}
.wp-block-column.em-area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 28px 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wp-block-column.em-area-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.wp-block-column.em-area-card .wp-block-heading {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--text);
  margin-bottom: 6px;
}
.wp-block-column.em-area-card .wp-block-paragraph { font-size: 0.85rem; color: var(--muted); margin: 0; }
/* ── Nationwide wide card ── */
.wp-block-columns.em-area-card-wide {
  background: var(--red-light);
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 24px 32px !important;
  max-width: 1140px;
  margin: 20px auto 0 !important;
  align-items: center !important;
  gap: 0 !important;
}
.em-wide-card-label {
  display: flex;
  align-items: center;
}
.wp-block-heading.em-wide-card-heading {
  font-size: 1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  color: var(--red-dark) !important;
  white-space: nowrap;
  margin: 0 !important;
  line-height: 1.3;
}
.wp-block-heading.em-wide-card-heading i {
  color: var(--red);
  font-size: 1.5rem;
  margin-right: 12px;
  vertical-align: middle;
}
p.em-wide-card-text {
  color: var(--muted) !important;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 !important;
}

/* ── Testimonials ── */
.wp-block-columns.em-testimonials-row {
  gap: 24px !important;
  align-items: stretch !important;
}
.wp-block-column.em-testimonial {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  padding: 26px 22px;
  display: flex !important;
  flex-direction: column !important;
}

/* ── FAQ (wp:details) ── */
.wp-block-group.em-faq { max-width: 820px; margin: 0 auto; }
.wp-block-details.em-faq-item { border-bottom: 1px solid var(--border); padding: 0; }
.wp-block-details.em-faq-item:first-child { border-top: 1px solid var(--border); }
.wp-block-details.em-faq-item summary {
  padding: 18px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.wp-block-details.em-faq-item summary::-webkit-details-marker { display: none; }
.wp-block-details.em-faq-item summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.wp-block-details.em-faq-item[open] summary { color: var(--red); }
.wp-block-details.em-faq-item[open] summary::after { content: '–'; }
.wp-block-details.em-faq-item .wp-block-paragraph {
  padding: 4px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ── CTA band (block) ── */
.wp-block-group.em-cta-band {
  background: linear-gradient(135deg, var(--charcoal), var(--red));
  padding-top: 110px;
  padding-bottom: 110px;
  padding-left: max(20px, calc((100% - 800px) / 2));
  padding-right: max(20px, calc((100% - 800px) / 2));
  text-align: center;
}
.wp-block-group.em-cta-band > * {
  max-width: 700px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.wp-block-group.em-cta-band .wp-block-heading {
  color: #fff !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  font-weight: 900 !important;
  margin-bottom: 14px;
}
.wp-block-group.em-cta-band .wp-block-paragraph {
  color: rgba(255,255,255,0.8) !important;
  font-size: 1rem;
  margin-bottom: 20px;
}
.em-cta-phone-block a {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 28px;
}
.em-cta-phone-block a:hover { color: var(--red); }

/* ── About two-col ── */
.em-two-col-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}
.em-col-text .wp-block-heading { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.em-col-text .wp-block-paragraph { color: var(--muted); margin-bottom: 18px; }

/* ── Check list (native wp:list) ── */
.wp-block-list.em-check-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 24px;
}
.wp-block-list.em-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
}
.wp-block-list.em-check-list li::marker { display: none; content: ''; }
.wp-block-list.em-check-list li::before {
  content: '\2713';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

/* ── FA5 compatibility (Elementor bundles FA5) ── */
i.fas, i.far, i.fal, i.fab,
i.fa-solid, i.fa-regular, i.fa-brands,
i[class*=" fa-"], i[class^="fa-"] {
  font-style: normal !important;
  display: inline-block !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}
i.fas, i.far, i.fal {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}
i.fa-solid {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}
i.fab {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
}
i.fa-brands {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
}
i.fa-location-dot::before  { content: "\f3c5"; }
i.fa-truck-fast::before    { content: "\f48b"; }
i.fa-droplet::before       { content: "\f043"; }
i.fa-wind::before          { content: "\f72e"; }
/* fa-x-twitter is FA6-only — force FA6 Brands font so it renders correctly */
i.fa-x-twitter {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .em-cards { grid-template-columns: repeat(2, 1fr); }
  .em-testimonials { grid-template-columns: repeat(2, 1fr); }
  .em-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .em-service-areas { grid-template-columns: 1fr 1fr; }
  .em-area-card-wide { grid-column: auto; flex-direction: column; text-align: center; }
}
@media (max-width: 900px) {
  .em-footer-grid { grid-template-columns: 1fr 1fr; }
  .em-compare-grid { grid-template-columns: 1fr; }
  .em-process { gap: 16px; }
  .em-step-arrow { display: none; }
  .em-section { padding: 72px 20px; }
}
@media (max-width: 768px) {
  .em-two-col, .em-two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .em-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); gap: 16px; }
  .em-nav.open { display: flex; }
  .em-nav .em-nav-phone { order: -1; }
  .em-menu-toggle { display: block; }
  .em-header { position: relative; }
  /* Mobile dropdown: static, full-width */
  .em-nav-dropdown { position: static; transform: none; left: auto; border: none; border-left: 3px solid var(--red); box-shadow: none; background: var(--bg-light); min-width: 0; padding: 4px 0; margin-top: 4px; display: none; }
  .em-nav-has-dropdown.open .em-nav-dropdown { display: block; }
  .em-nav-dropdown a { padding: 8px 16px; font-size: 0.78rem; }
  .em-nav-caret { display: none; }
  .em-service-areas { grid-template-columns: 1fr; }
  .em-cards { grid-template-columns: 1fr; }
  .em-testimonials { grid-template-columns: 1fr; }
  .em-stats { grid-template-columns: repeat(2, 1fr); }
  .em-hero { padding: 80px 20px 70px; }
  .em-cta-band { padding: 80px 20px; }

  .wp-block-columns.em-cards-row,
  .wp-block-columns.em-testimonials-row,
  .wp-block-columns.em-service-areas { flex-wrap: wrap !important; }
  .wp-block-columns.em-cards-row > .wp-block-column.em-card,
  .wp-block-columns.em-testimonials-row > .wp-block-column.em-testimonial,
  .wp-block-column.em-area-card { flex: 0 0 100% !important; max-width: 100%; }
  .wp-block-columns.em-stats { flex-wrap: wrap !important; }
  .wp-block-columns.em-stats > .wp-block-column { flex: 0 0 50% !important; }
  .wp-block-columns.em-process { flex-wrap: wrap !important; }
  .wp-block-column.em-step { flex: 0 0 48% !important; }
  .wp-block-columns.em-compare-grid { flex-wrap: wrap !important; }
  .wp-block-column.em-compare-card { flex: 0 0 100% !important; }
  .em-two-col-img img { height: 260px; }
  .wp-block-cover.em-hero .wp-block-cover__inner-container { padding: 60px 20px; }
}
@media (max-width: 900px) {
  .em-trust-inner { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 500px) {
  .em-footer-grid { grid-template-columns: 1fr; }
  .em-stats { grid-template-columns: 1fr 1fr; }
}
