@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://egminc.biz/wp-content/uploads/et-fonts/Urbanist-VariableFont_wght.ttf") format("truetype");
}

:root {
  --ink: #06120e;
  --ink-2: #0a2018;
  --forest: #004d36;
  --green: #007e4f;
  --green-2: #00a960;
  --signal: #24e073;
  --signal-soft: #a7f6c7;
  --alert: #ffb547;
  --paper: #f3f5f0;
  --white: #ffffff;
  --muted: #4c5a54;
  --line: #d7ded8;
  --shell: min(1240px, calc(100vw - 48px));
  --font-brand: "Urbanist", "Avenir Next", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }

.emergency-bar {
  position: relative;
  z-index: 60;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emergency-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.emergency-label, .emergency-inner a { display: inline-flex; align-items: center; gap: 9px; }
.emergency-inner a { min-height: 40px; padding-inline: 18px; background: rgba(0, 0, 0, 0.15); }

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--alert);
  box-shadow: 0 0 0 4px rgba(255, 181, 71, 0.2);
  animation: pulse 1.8s infinite;
}

@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(255, 181, 71, 0); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 18, 14, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { width: 230px; min-width: 230px; }
.brand img { display: block; width: 100%; height: 58px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 31px);
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a { position: relative; white-space: nowrap; }
.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  content: "";
  background: var(--green-2);
  transition: right 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 17px; white-space: nowrap; }
.button-dark { background: var(--ink); color: var(--white); }
.button-primary { background: var(--signal); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: #5bed91; }
.button-emergency { background: var(--signal); color: var(--ink); box-shadow: 0 14px 40px rgba(36, 224, 115, 0.18); }
.button-emergency:hover, .button-emergency:focus-visible { background: #63ee99; }
.button-ghost { border-color: rgba(255, 255, 255, 0.52); color: var(--white); background: rgba(6, 18, 14, 0.12); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.button-light { background: var(--white); color: var(--ink); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover, .button-outline:focus-visible { background: var(--ink); color: var(--white); }

.mobile-menu { display: none; margin-left: auto; }
.mobile-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(6, 18, 14, 0.14);
}
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 800; }

.hero {
  position: relative;
  min-height: 760px;
  height: calc(100vh - 122px);
  max-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.73) contrast(1.08) brightness(0.62);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 10, 0.96) 0%, rgba(3, 15, 10, 0.78) 43%, rgba(3, 15, 10, 0.32) 73%, rgba(3, 15, 10, 0.5) 100%),
    linear-gradient(0deg, rgba(3, 15, 10, 0.72) 0%, transparent 44%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black 0, transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: calc(100% - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.68fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 70px 110px;
}

.hero-content { max-width: 820px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--signal); }
.eyebrow-line { width: 46px; height: 1px; background: currentColor; opacity: 0.65; }

.hero h1 {
  margin: 23px 0 22px;
  max-width: 880px;
  font-family: var(--font-brand);
  font-size: clamp(3.75rem, 6.5vw, 6.85rem);
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 0.9;
}
.hero h1 .hero-line,
.hero h1 .hero-accent {
  display: block;
  font-size: 1em;
  letter-spacing: inherit;
  line-height: inherit;
}
.hero h1 .hero-line { color: var(--white); }
.hero h1 .hero-accent { color: var(--signal); }
.hero-content > p { max-width: 720px; margin: 0; color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; color: rgba(255,255,255,.9); font-size: 0.84rem; font-weight: 800; letter-spacing: 0.02em; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { color: var(--signal); }

.dispatch-card {
  position: relative;
  width: min(100%, 350px);
  justify-self: end;
  padding: 27px 27px 24px;
  border: 1px solid rgba(255,255,255,.19);
  border-top: 3px solid var(--signal);
  background: rgba(6, 18, 14, 0.74);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(1.15);
}
.dispatch-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 19px; color: var(--ink); background: var(--signal); }
.dispatch-kicker { display: block; margin-bottom: 8px; color: var(--signal); font-size: 0.68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.dispatch-card > strong { display: block; font-family: var(--font-brand); font-size: 1.78rem; line-height: 1.02; letter-spacing: -.03em; text-transform: uppercase; }
.dispatch-card p { margin: 15px 0 0; color: rgba(255,255,255,.95); font-size: .98rem; font-weight: 600; line-height: 1.62; }
.dispatch-card a { display: flex; align-items: center; justify-content: space-between; margin-top: 19px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); color: var(--signal); font-size: 1.12rem; font-weight: 900; }
.dispatch-card small { display: block; margin-top: 13px; color: rgba(255,255,255,.92); font-size: .78rem; font-weight: 700; letter-spacing: .005em; line-height: 1.5; }

.hero-capabilities { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; background: rgba(0, 126, 79, .91); backdrop-filter: blur(10px); }
.hero-capabilities-grid { min-height: 84px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center; }
.hero-capabilities-grid span { min-height: 42px; display: flex; align-items: center; justify-content: center; padding: 7px clamp(14px, 1.7vw, 26px); border-left: 1px solid rgba(255,255,255,.26); font-family: var(--font-brand); font-size: .91rem; font-weight: 900; line-height: 1.22; letter-spacing: .035em; text-align: center; text-wrap: balance; text-transform: uppercase; }
.hero-capabilities-grid span:last-child { border-right: 1px solid rgba(255,255,255,.26); }

.response-section { padding: 110px 0; background: var(--white); }
.response-grid { display: grid; grid-template-columns: 1.05fr .95fr .7fr; gap: 56px; align-items: stretch; }
.section-intro h2, .section-heading h2, .proof-copy h2, .coverage-section h2, .faq-layout h2, .contact-copy h2, .ethanol-copy h2 {
  margin: 16px 0 21px;
  font-family: var(--font-brand);
  font-size: clamp(2.45rem, 3.8vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.section-intro p, .section-heading p, .proof-copy > p, .coverage-section p, .faq-layout p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.inline-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 13px; color: var(--green); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.emergency-needs { display: grid; grid-template-columns: 1fr; align-content: center; }
.emergency-needs div { display: flex; align-items: center; gap: 12px; min-height: 54px; border-bottom: 1px solid var(--line); font-weight: 800; }
.emergency-needs svg { flex: 0 0 18px; color: var(--green-2); }
.call-panel { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px; color: var(--white); background: var(--forest); }
.call-panel > svg { margin-bottom: 30px; color: var(--signal); }
.call-panel > span { color: var(--signal); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.call-panel > strong { margin-top: 7px; font-family: var(--font-brand); font-size: 2.2rem; line-height: 1; text-transform: uppercase; }
.call-panel p { color: rgba(255,255,255,.84); font-size: .96rem; line-height: 1.68; }
.call-panel .button { width: 100%; margin-top: 12px; }

.trust-band { padding: 58px 0 64px; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
.trust-band-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; align-items: start; }
.trust-band-heading > span { color: var(--signal); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.trust-band-heading h2 { margin: 11px 0 0; max-width: 390px; font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1; letter-spacing: -.04em; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.trust-grid article { min-height: 238px; padding: 25px 22px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.trust-grid article > span { color: var(--signal); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.trust-grid h3 { margin: 46px 0 11px; font-size: 1.05rem; font-weight: 850; line-height: 1.12; text-transform: uppercase; }
.trust-grid p { margin: 0; color: rgba(255,255,255,.91); font-size: .94rem; font-weight: 550; line-height: 1.64; }

.services-section { padding: 120px 0; background: var(--paper); }
.section-heading { margin-bottom: 56px; }
.heading-split { display: grid; grid-template-columns: 1.2fr .7fr; align-items: end; gap: 80px; }
.heading-split h2 { max-width: 780px; margin-bottom: 0; }
.heading-split > p { max-width: 520px; margin: 0 0 3px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 500px; display: flex; flex-direction: column; overflow: hidden; padding: 0 32px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.service-card:hover, .service-card:focus-visible { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: 0 24px 60px rgba(6,18,14,.1); }
.service-card-priority { color: var(--white); background: var(--green); }
.service-card-image { position: relative; height: 205px; overflow: hidden; margin: 0 -32px 26px; background: var(--ink); }
.service-card-image::after { position: absolute; inset: 0; z-index: 1; content: ""; background: linear-gradient(180deg, rgba(6,18,14,.02) 18%, rgba(6,18,14,.28) 100%), linear-gradient(125deg, rgba(0,126,79,.14), transparent 56%); box-shadow: inset 0 0 0 1px rgba(6,18,14,.06); pointer-events: none; transition: opacity 220ms ease; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.08) brightness(.94); transition: transform 280ms ease, filter 220ms ease; }
.service-card:hover .service-card-image::after, .service-card:focus-visible .service-card-image::after { opacity: .72; }
.service-card:hover .service-card-image img, .service-card:focus-visible .service-card-image img { transform: scale(1.035); filter: saturate(1) contrast(1.04) brightness(1); }
.service-card-priority .service-card-image::after { background: linear-gradient(180deg, rgba(0,126,79,.04), rgba(0,60,40,.42)), linear-gradient(125deg, rgba(0,184,118,.12), transparent 58%); }
.service-card-image-hydro-focus img { transform: scale(1.55); transform-origin: 64% 25%; }
.service-card:hover .service-card-image-hydro-focus img, .service-card:focus-visible .service-card-image-hydro-focus img { transform: scale(1.59); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--green); }
.service-card-top > span { font-size: .67rem; font-weight: 900; letter-spacing: .14em; }
.service-card h3 { margin: 34px 0 12px; font-family: var(--font-brand); font-size: 1.76rem; line-height: 1.05; letter-spacing: -.025em; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.68; }
.service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 28px; color: var(--green); font-size: .76rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.service-card.service-card-priority .service-card-top,
.service-card.service-card-priority p,
.service-card.service-card-priority .service-link { color: rgba(255,255,255,.94); }
.service-card.service-card-priority:hover p,
.service-card.service-card-priority:focus-visible p,
.service-card.service-card-priority:active p { color: var(--white); }

.ethanol-section { overflow: hidden; color: var(--white); background: var(--ink-2); }
.ethanol-layout { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 800px; }
.ethanol-copy { padding: 120px 84px 110px 0; }
.ethanol-copy h2 { max-width: 720px; font-size: clamp(2.8rem, 4.45vw, 4.9rem); }
.ethanol-lead { max-width: 700px; color: rgba(255,255,255,.86); font-size: 1.12rem; line-height: 1.72; }
.plant-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; margin: 34px 0; }
.plant-list div { min-height: 60px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .94rem; font-weight: 800; }
.plant-list svg { flex: 0 0 17px; color: var(--signal); }
.ethanol-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 36px; }
.text-link-light { color: var(--signal-soft); font-size: .78rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.ethanol-side { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 110px 0 0 82px; background: linear-gradient(145deg, var(--green) 0%, var(--forest) 100%); }
.ethanol-side::before { position: absolute; inset: 0; content: ""; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 70px 70px; }
.egm-mark-watermark { position: absolute; z-index: 0; top: 50px; right: -34px; width: 400px; height: 400px; overflow: hidden; pointer-events: none; opacity: .18; mix-blend-mode: multiply; }
.egm-mark-watermark img { width: auto; max-width: none; height: 400px; }
.ethanol-side > :not(.egm-mark-watermark) { position: relative; z-index: 1; }
.plant-badge { position: relative; display: inline-flex; align-items: center; align-self: flex-start; gap: 12px; padding: 14px 18px; color: var(--ink); background: var(--signal); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.ethanol-card { position: relative; max-width: 560px; margin: 42px 54px 80px 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.34); }
.ethanol-card > span { color: var(--signal); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.ethanol-card h3 { margin: 15px 0 18px; font-family: var(--font-brand); font-size: clamp(2.3rem, 3.4vw, 3.85rem); line-height: .96; letter-spacing: -.045em; text-transform: uppercase; }
.ethanol-card p { color: rgba(255,255,255,.86); font-size: 1rem; line-height: 1.72; }
.industry-row { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); margin-left: -82px; background: rgba(0,0,0,.18); }
.industry-row span { padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.2); border-right: 1px solid rgba(255,255,255,.2); font-size: .76rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }

.video-section { padding: 120px 0; background: var(--white); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card { overflow: hidden; background: var(--ink); color: var(--white); }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #000; }
.video-card > div { padding: 22px 24px 25px; }
.video-card > div span { color: var(--signal); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.video-card h3 { margin: 7px 0 0; font-family: var(--font-brand); font-size: 1.55rem; letter-spacing: -.02em; text-transform: uppercase; }
.video-card-featured { grid-row: auto; }
.video-card-featured video { min-height: 0; height: auto; aspect-ratio: 16 / 9; }

.proof-section { padding: 120px 0; background: var(--paper); }
.proof-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.proof-image-wrap { position: relative; overflow: hidden; background: var(--ink); box-shadow: 0 28px 80px rgba(6,18,14,.18); }
.proof-image-wrap img { display: block; width: 100%; height: auto; object-fit: cover; image-rendering: auto; }
.proof-image-vac-truck { aspect-ratio: 4 / 3; }
.proof-image-vac-truck img { width: 100%; height: 100%; object-position: center center; }
.proof-tag { position: absolute; left: 0; bottom: 0; padding: 13px 22px; color: var(--ink); background: var(--signal); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.proof-headline { font-size: clamp(2.85rem, 3.5vw, 4rem) !important; line-height: .98 !important; }
.proof-headline span { display: block; white-space: nowrap; }
.proof-copy ul { display: grid; gap: 13px; margin: 28px 0 36px; padding: 0; list-style: none; }
.proof-copy li { display: flex; align-items: flex-start; gap: 11px; font-weight: 800; }
.proof-copy li svg { flex: 0 0 17px; margin-top: 4px; color: var(--green-2); }

.coverage-section { padding: 112px 0; color: var(--ink); background: #f3f6f1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.coverage-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px 92px; align-items: start; }
.coverage-section .eyebrow-light { color: var(--green); }
.coverage-section h2 { max-width: 590px; font-size: clamp(2.7rem, 3.45vw, 3.95rem); line-height: .98; letter-spacing: -.045em; }
.coverage-section p { max-width: 680px; color: var(--muted); font-size: 1.04rem; line-height: 1.76; }
.coverage-copy { position: sticky; top: 150px; }
.coverage-panels { display: grid; gap: 22px; }
.nationwide-card { padding: 36px; color: var(--white); background: linear-gradient(145deg, var(--ink-2), #0b3828); border-top: 4px solid var(--signal); box-shadow: 0 24px 60px rgba(6,18,14,.13); }
.nationwide-card > svg { margin-bottom: 26px; color: var(--signal); }
.nationwide-card > span, .core-region > span { display: block; margin-bottom: 10px; font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.nationwide-card > span { color: var(--signal); }
.nationwide-card h3 { max-width: 620px; margin: 0 0 18px; color: var(--white); font-size: clamp(1.9rem, 2.7vw, 2.85rem); line-height: 1.02; letter-spacing: -.04em; text-transform: uppercase; }
.nationwide-card p { max-width: 650px; margin-bottom: 28px; color: rgba(255,255,255,.86); font-size: 1rem; line-height: 1.72; }
.network-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; border-top: 1px solid rgba(255,255,255,.2); }
.network-points span { min-height: 54px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.18); color: var(--white); font-size: .86rem; font-weight: 850; }
.network-points svg { flex: 0 0 16px; color: var(--signal); }
.coverage-disclosure { display: block; margin-top: 20px; padding-left: 14px; border-left: 2px solid rgba(36,224,115,.72); color: rgba(255,255,255,.8); font-size: .78rem; line-height: 1.62; }
.core-region { padding-top: 18px; }
.core-region > span { color: var(--green); }
.states-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--white); }
.states-grid div { min-height: 74px; display: flex; align-items: center; gap: 15px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--font-brand); font-size: 1.05rem; font-weight: 900; text-transform: uppercase; }
.states-grid span { color: var(--green); font-family: var(--font-brand); font-size: .62rem; letter-spacing: .1em; }
.coverage-contact { display: flex; align-items: center; gap: 18px; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.coverage-contact > svg { color: var(--green); }
.coverage-contact div { display: flex; align-items: center; gap: 24px; }
.coverage-contact span { color: var(--green); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.coverage-contact strong { line-height: 1.35; }

.approach-section { padding: 120px 0; background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { min-height: 260px; padding: 30px; border-top: 1px solid var(--ink); border-right: 1px solid var(--line); }
.process-grid article:first-child { border-left: 1px solid var(--line); }
.process-grid article > span { color: var(--green-2); font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.process-grid h3 { margin: 70px 0 10px; font-family: var(--font-brand); font-size: 1.45rem; text-transform: uppercase; }
.process-grid p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.68; }

.faq-section { padding: 120px 0; background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; cursor: pointer; list-style: none; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 20px; transition: transform 180ms ease; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details p { max-width: 760px; margin: 0; padding: 0 54px 27px 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }

.contact-section { padding: 120px 0; color: var(--white); background: var(--ink); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 9vw, 130px); }
.contact-copy > p { max-width: 520px; color: rgba(255,255,255,.86); font-size: 1.02rem; line-height: 1.72; }
.contact-cards { display: grid; gap: 12px; margin-top: 42px; }
.contact-cards a { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.contact-cards svg { color: var(--signal); }
.contact-cards span { display: flex; flex-direction: column; }
.contact-cards small { color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-cards strong { margin-top: 2px; font-size: 1.02rem; }
.contact-form { display: grid; gap: 18px; padding: 40px; color: var(--ink); background: var(--white); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0; padding: 13px 14px; color: var(--ink); background: #f8faf7; font-size: .94rem; font-weight: 500; letter-spacing: 0; text-transform: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.contact-form input, .contact-form select { height: 50px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(0,169,96,.11); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: -3px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; text-align: center; }

footer { padding: 68px 0 28px; color: var(--white); background: #020906; }
.footer-main { display: grid; grid-template-columns: 250px minmax(330px, 1fr) auto; grid-template-areas: "brand pitch phone" "navigation navigation navigation"; align-items: center; column-gap: clamp(44px, 5vw, 76px); row-gap: 38px; padding-bottom: 38px; }
.footer-brand { grid-area: brand; display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 72px; padding-left: 18px; border-left: 3px solid var(--signal); }
.footer-brand strong { color: var(--signal); font-family: var(--font-brand); font-size: 2.15rem; font-weight: 900; letter-spacing: -.045em; line-height: .95; }
.footer-brand span { margin-top: 9px; color: rgba(255,255,255,.72); font-size: .59rem; font-weight: 900; letter-spacing: .13em; line-height: 1.35; text-transform: uppercase; }
.footer-main > p { grid-area: pitch; max-width: 520px; margin: 0; color: rgba(255,255,255,.72); font-size: .94rem; line-height: 1.68; }
.footer-navigation { grid-area: navigation; display: grid; grid-template-columns: 1.16fr .84fr; gap: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.footer-link-group > span { color: var(--signal); font-size: .62rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 13px; font-size: .72rem; font-weight: 850; letter-spacing: .065em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.84); transition: color 160ms ease; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--signal); }
.footer-phone { grid-area: phone; display: flex; flex-direction: column; min-width: 160px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.18); font-weight: 900; }
.footer-phone span { color: var(--signal); font-size: .62rem; letter-spacing: .13em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.66); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.mobile-emergency-cta { display: none; }

/* Service detail pages */
.service-detail-page { color: var(--ink); background: var(--paper); }
.service-hero { padding: 86px 0 82px; color: var(--white); background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 62%, var(--forest) 100%); }
.service-hero-emergency { background: linear-gradient(135deg, #04140d 0%, #073624 58%, #005d3d 100%); }
.service-hero-layout { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(55px, 7vw, 100px); }
.service-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: rgba(255,255,255,.66); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.service-breadcrumb a:hover, .service-breadcrumb a:focus-visible { color: var(--signal); }
.service-breadcrumb strong { color: var(--white); }
.service-hero h1 { max-width: 740px; margin: 20px 0 19px; font-family: var(--font-brand); font-size: clamp(3.1rem, 5vw, 5.8rem); font-weight: 900; letter-spacing: -.055em; line-height: .92; text-transform: uppercase; }
.service-hero-lead { max-width: 720px; margin: 0 0 14px; color: var(--signal); font-size: clamp(1.22rem, 1.75vw, 1.65rem); font-weight: 800; line-height: 1.28; }
.service-hero-summary { max-width: 700px; margin: 0; color: rgba(255,255,255,.88); font-size: 1.02rem; font-weight: 550; line-height: 1.72; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.service-hero-media { position: relative; overflow: hidden; margin: 0; background: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,.3); }
.service-hero-media::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.service-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-hero-media .service-hero-image-hydro-focus { transform: scale(1.45); transform-origin: 64% 38%; }
.service-hero-media figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; color: rgba(255,255,255,.88); background: rgba(3,15,10,.86); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 750; }
.service-hero-media figcaption span { color: var(--signal); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-trust-strip { color: var(--white); background: var(--green); }
.service-trust-grid { min-height: 78px; display: grid; grid-template-columns: repeat(4, 1fr); }
.service-trust-grid span { display: flex; align-items: center; gap: 10px; padding: 17px 20px; border-left: 1px solid rgba(255,255,255,.25); font-size: .78rem; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; }
.service-trust-grid span:last-child { border-right: 1px solid rgba(255,255,255,.25); }
.service-trust-grid svg { flex: 0 0 18px; color: var(--signal-soft); }

.service-overview-section { padding: 110px 0; background: var(--white); }
.service-overview-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(70px, 9vw, 135px); align-items: start; }
.service-section-heading h2 { max-width: 720px; margin: 15px 0 0; font-family: var(--font-brand); font-size: clamp(2.55rem, 4vw, 4.35rem); font-weight: 900; letter-spacing: -.05em; line-height: .98; }
.service-overview-copy > p { margin: 3px 0 0; color: var(--muted); font-size: 1.12rem; line-height: 1.82; }
.service-contact-note { display: flex; align-items: center; gap: 15px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.service-contact-note > svg { color: var(--green); }
.service-contact-note span { display: flex; flex-direction: column; }
.service-contact-note small { color: var(--green); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-contact-note a { margin-top: 2px; font-size: 1.2rem; font-weight: 900; }

.service-capabilities-section { padding: 110px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-heading-split { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; margin-bottom: 50px; }
.service-heading-split > p { margin: 0 0 4px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.service-capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-capability-grid article { min-height: 280px; padding: 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.service-capability-grid article > span { color: var(--green); font-size: .67rem; font-weight: 900; letter-spacing: .13em; }
.service-capability-grid h3 { margin: 74px 0 11px; font-family: var(--font-brand); font-size: 1.65rem; letter-spacing: -.025em; line-height: 1.08; text-transform: uppercase; }
.service-capability-grid p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.72; }

.service-use-section { padding: 110px 0; background: var(--white); }
.service-use-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-use-layout > article { padding: 54px; border: 1px solid var(--line); }
.service-use-layout h2 { max-width: 560px; margin: 14px 0 31px; font-family: var(--font-brand); font-size: clamp(2.4rem, 3.4vw, 3.85rem); letter-spacing: -.045em; line-height: 1; }
.service-use-layout ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin: 0; padding: 0; list-style: none; }
.service-use-layout li { min-height: 62px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 800; }
.service-use-layout li svg { flex: 0 0 17px; color: var(--green-2); }
.service-industry-panel { color: var(--white); background: linear-gradient(145deg, var(--ink-2), var(--forest)); border-color: transparent !important; }
.service-industry-panel ul { grid-template-columns: 1fr; }
.service-industry-panel li { justify-content: space-between; border-color: rgba(255,255,255,.18); }
.service-industry-panel li svg { color: var(--signal); }

.service-project-section { padding: 110px 0; background: #e9efe9; border-top: 1px solid var(--line); }
.service-project-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(65px, 8vw, 120px); }
.service-project-heading h2 { max-width: 540px; margin: 16px 0 18px; font-family: var(--font-brand); font-size: clamp(2.55rem, 3.7vw, 4.15rem); line-height: .98; letter-spacing: -.05em; }
.service-project-heading > p { max-width: 470px; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.service-project-card { padding: 44px; color: var(--white); background: linear-gradient(145deg, var(--ink-2), var(--forest)); border-top: 4px solid var(--signal); box-shadow: 0 26px 70px rgba(6,18,14,.16); }
.service-project-card > span { color: var(--signal); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.service-project-card h3 { max-width: 740px; margin: 17px 0 17px; font-family: var(--font-brand); font-size: clamp(2.15rem, 3.2vw, 3.55rem); letter-spacing: -.045em; line-height: .98; text-transform: uppercase; }
.service-project-card > p { max-width: 780px; margin: 0; color: rgba(255,255,255,.86); font-size: 1rem; line-height: 1.75; }
.service-project-card ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; margin: 30px 0 28px; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.service-project-card li { min-height: 60px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.18); font-size: .88rem; font-weight: 800; line-height: 1.4; }
.service-project-card li svg { flex: 0 0 17px; color: var(--signal); }
.service-project-card > a { display: inline-flex; align-items: center; gap: 9px; color: var(--signal-soft); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.service-planning-section { padding: 105px 0; color: var(--white); background: var(--ink); }
.service-planning-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(65px, 8vw, 120px); }
.service-planning-layout h2 { margin: 16px 0 18px; font-family: var(--font-brand); font-size: clamp(2.55rem, 3.7vw, 4.15rem); line-height: .98; letter-spacing: -.05em; }
.service-planning-layout p { max-width: 560px; color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.75; }
.service-planning-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.service-planning-grid span { min-height: 105px; display: flex; flex-direction: column; justify-content: space-between; gap: 13px; padding: 22px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); font-weight: 800; line-height: 1.4; }
.service-planning-grid small { color: var(--signal); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }

.related-services-section { padding: 110px 0; background: var(--paper); }
.related-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-service-grid > a { overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform 180ms ease, box-shadow 180ms ease; }
.related-service-grid > a:hover, .related-service-grid > a:focus-visible { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(6,18,14,.1); }
.related-service-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.related-service-grid > a > div { padding: 25px; }
.related-service-grid span { color: var(--green); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.related-service-grid h3 { margin: 9px 0 11px; font-family: var(--font-brand); font-size: 1.55rem; line-height: 1.08; text-transform: uppercase; }
.related-service-grid p { min-height: 92px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.62; }
.related-service-grid strong { display: inline-flex; align-items: center; gap: 8px; margin-top: 23px; color: var(--green); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.service-final-cta { padding: 95px 0; color: var(--white); background: linear-gradient(135deg, var(--forest), var(--green)); }
.service-final-cta-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 8vw, 120px); }
.service-final-cta h2 { margin: 14px 0 13px; font-family: var(--font-brand); font-size: clamp(2.7rem, 4vw, 4.5rem); letter-spacing: -.05em; line-height: .95; }
.service-final-cta p { max-width: 650px; margin: 0; color: rgba(255,255,255,.86); font-size: 1.04rem; line-height: 1.72; }
.service-final-actions { display: grid; gap: 11px; }
.service-final-actions > a:not(.button) { display: flex; align-items: center; gap: 14px; min-height: 66px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.24); background: rgba(0,0,0,.1); font-weight: 900; }
.service-final-actions > a:not(.button) svg { color: var(--signal-soft); }
.service-final-actions > a:not(.button) span { display: flex; flex-direction: column; line-height: 1.25; }
.service-final-actions small { margin-bottom: 3px; color: rgba(255,255,255,.72); font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .nav-wrap > .button { margin-left: auto; }
  .mobile-menu { display: block; margin-left: 0; }
  .hero-layout { grid-template-columns: 1.45fr .7fr; gap: 44px; }
  .response-grid { grid-template-columns: 1fr 1fr; }
  .call-panel { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr 1fr auto; align-items: center; gap: 18px; }
  .call-panel > svg, .call-panel p, .call-panel .button { margin: 0; }
  .call-panel > span, .call-panel > strong { grid-column: 2; }
  .call-panel p { grid-column: 3; grid-row: 1 / span 2; }
  .call-panel .button { grid-column: 4; grid-row: 1 / span 2; }
  .trust-band-layout { grid-template-columns: 1fr; gap: 34px; }
  .ethanol-copy { padding-right: 54px; }
  .ethanol-side { padding-left: 54px; }
  .industry-row { margin-left: -54px; }
  .footer-main { grid-template-columns: 230px 1fr auto; grid-template-areas: "brand navigation phone"; gap: 38px; }
  .footer-main > p { display: none; }
  .footer-navigation { grid-template-columns: 1fr; gap: 19px; padding: 0; border: 0; }
  .footer-links { gap: 9px 19px; margin-top: 8px; font-size: .68rem; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 34px, 760px); }
  .hero { min-height: 880px; height: auto; max-height: none; }
  .hero-layout { min-height: 796px; grid-template-columns: 1fr; align-content: center; gap: 38px; padding-block: 76px 140px; }
  .hero-content { max-width: 700px; }
  .dispatch-card { max-width: 500px; }
  .hero-capabilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: 8px; }
  .hero-capabilities-grid span { min-height: 42px; padding: 7px 14px; border: 0; font-size: .76rem; }
  .hero-capabilities-grid span:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.24); }
  .hero-capabilities-grid span:nth-child(even) { border-right: 1px solid rgba(255,255,255,.24); }
  .response-grid { gap: 42px; }
  .response-section, .services-section, .video-section, .proof-section, .coverage-section, .approach-section, .faq-section, .contact-section { padding: 90px 0; }
  .trust-band-layout { grid-template-columns: 1fr; gap: 34px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .heading-split, .proof-layout, .coverage-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .coverage-copy { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ethanol-layout { grid-template-columns: 1fr; }
  .ethanol-copy { padding: 90px 0; }
  .ethanol-side { min-height: 680px; padding: 70px 50px 0; }
  .egm-mark-watermark { top: 34px; right: 16px; width: 330px; height: 330px; }
  .egm-mark-watermark img { height: 330px; }
  .industry-row { margin-left: -50px; margin-right: -50px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card-featured { grid-column: 1 / -1; grid-row: auto; }
  .video-card-featured video { min-height: 0; height: auto; aspect-ratio: 16 / 9; }
  .coverage-layout { gap: 50px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr auto; grid-template-areas: "brand phone" "navigation navigation"; }
  .footer-navigation { grid-template-columns: 1.15fr .85fr; gap: 35px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.16); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 30px); }
  html { scroll-padding-top: 96px; }
  body { padding-bottom: 64px; }
  .emergency-inner { width: 100%; padding-left: 15px; }
  .emergency-label { font-size: .62rem; }
  .emergency-label .live-dot { display: none; }
  .emergency-inner a { margin-left: auto; padding-inline: 11px; font-size: .64rem; }
  .emergency-inner a svg { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand { width: 188px; min-width: 188px; }
  .brand img { height: 49px; }
  .nav-wrap > .button { display: none; }
  .mobile-menu { margin-left: auto; }
  .mobile-menu nav { top: 68px; }
  .hero { min-height: 850px; }
  .hero-layout { min-height: 744px; align-content: start; padding-block: 78px 150px; }
  .hero-video { object-position: 58% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(3,15,10,.94), rgba(3,15,10,.65)), linear-gradient(0deg, rgba(3,15,10,.85), transparent 55%); }
  .eyebrow { font-size: .62rem; }
  .eyebrow-line, .hero .eyebrow span:last-child { display: none; }
  .hero h1 { margin-top: 18px; font-size: clamp(3rem, 14vw, 4.5rem); line-height: .94; }
  .hero-content > p { font-size: 1rem; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 20px; }
  .dispatch-card { display: none; }
  .hero-capabilities-grid { grid-template-columns: 1fr 1fr; min-height: 112px; }
  .hero-capabilities-grid span { min-height: 48px; padding: 7px 9px; font-size: .68rem; line-height: 1.3; }
  .section-intro h2, .section-heading h2, .proof-copy h2, .coverage-section h2, .faq-layout h2, .contact-copy h2, .ethanol-copy h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .coverage-section h2 { font-size: clamp(2.35rem, 10.5vw, 3.2rem); }
  .response-grid { grid-template-columns: 1fr; }
  .call-panel { grid-column: auto; display: flex; }
  .call-panel > span, .call-panel > strong, .call-panel p, .call-panel .button { grid-column: auto; grid-row: auto; }
  .heading-split { gap: 24px; }
  .trust-band { padding: 50px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 190px; }
  .trust-grid h3 { margin-top: 38px; }
  .section-heading { margin-bottom: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 315px; }
  .service-card h3 { margin-top: 50px; }
  .plant-list { grid-template-columns: 1fr; }
  .ethanol-side { min-height: 620px; padding: 60px 28px 0; }
  .egm-mark-watermark { top: 28px; right: -35px; width: 270px; height: 270px; opacity: .14; }
  .egm-mark-watermark img { height: 270px; }
  .ethanol-card { margin: 36px 0 50px; }
  .industry-row { grid-template-columns: 1fr 1fr; margin-left: -28px; margin-right: -28px; }
  .industry-row span { padding: 14px 12px; font-size: .66rem; line-height: 1.35; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-featured { grid-column: auto; }
  .proof-image-vac-truck { aspect-ratio: 4 / 3; }
  .proof-headline { font-size: clamp(2.55rem, 12vw, 3.35rem) !important; }
  .proof-headline span { white-space: normal; }
  .states-grid { grid-template-columns: 1fr; }
  .nationwide-card { padding: 28px 24px; }
  .network-points { grid-template-columns: 1fr; }
  .coverage-contact div { flex-direction: column; align-items: flex-start; gap: 5px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 220px; border-left: 1px solid var(--line); }
  .process-grid h3 { margin-top: 45px; }
  .faq-layout { gap: 28px; }
  .contact-form { padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; grid-template-areas: "brand" "phone" "navigation"; align-items: start; gap: 28px; }
  .footer-brand { width: auto; }
  .footer-navigation { grid-template-columns: 1fr; gap: 25px; width: 100%; padding-top: 27px; }
  .footer-links { gap: 12px 20px; }
  .footer-phone { min-width: 0; padding: 0; border: 0; }
  .footer-bottom { flex-direction: column; }
  .mobile-emergency-cta { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--ink); background: var(--signal); box-shadow: 0 -8px 30px rgba(6,18,14,.22); font-weight: 900; }
  .mobile-emergency-cta span { display: flex; flex-direction: column; line-height: 1.1; }
  .mobile-emergency-cta small { margin-bottom: 3px; font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
}

@media (max-width: 1120px) {
  .service-hero-layout { gap: 50px; }
  .service-hero h1 { font-size: clamp(3rem, 5.6vw, 4.7rem); }
  .service-trust-grid { grid-template-columns: repeat(2, 1fr); padding-block: 8px; }
  .service-trust-grid span:nth-child(2) { border-right: 1px solid rgba(255,255,255,.25); }
  .service-use-layout > article { padding: 42px; }
  .related-service-grid p { min-height: 112px; }
}

@media (max-width: 900px) {
  .service-hero { padding: 72px 0; }
  .service-hero-layout, .service-overview-layout, .service-project-layout, .service-planning-layout, .service-final-cta-layout { grid-template-columns: 1fr; }
  .service-hero-copy { max-width: 740px; }
  .service-hero h1 { font-size: clamp(3.2rem, 9.5vw, 5.4rem); }
  .service-hero-media { max-width: 760px; }
  .service-overview-section, .service-capabilities-section, .service-use-section, .service-project-section, .service-planning-section, .related-services-section, .service-final-cta { padding: 84px 0; }
  .service-heading-split { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .service-heading-split > p { max-width: 700px; }
  .service-use-layout { grid-template-columns: 1fr; }
  .service-use-layout > article { padding: 48px; }
  .service-planning-layout { gap: 48px; }
  .related-service-grid { grid-template-columns: 1fr 1fr; }
  .related-service-grid > a:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; }
  .related-service-grid > a:last-child img { height: 100%; aspect-ratio: auto; }
  .related-service-grid p { min-height: 0; }
}

@media (max-width: 640px) {
  .service-card { min-height: 475px; }
  .service-card-image { height: 190px; }
  .service-card h3 { margin-top: 28px; }
  .service-site-header .mobile-menu nav { right: 0; }
  .service-hero { padding: 52px 0 60px; }
  .service-breadcrumb { margin-bottom: 25px; font-size: .6rem; }
  .service-hero h1 { font-size: clamp(2.75rem, 13.5vw, 4.1rem); }
  .service-hero-lead { font-size: 1.16rem; }
  .service-hero-summary { font-size: .98rem; }
  .service-hero-actions { display: grid; grid-template-columns: 1fr; }
  .service-hero-actions .button { width: 100%; }
  .service-hero-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; font-size: .67rem; }
  .service-trust-grid { grid-template-columns: 1fr; padding: 0; }
  .service-trust-grid span { min-height: 56px; border-right: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.2); }
  .service-overview-section, .service-capabilities-section, .service-use-section, .service-project-section, .service-planning-section, .related-services-section, .service-final-cta { padding: 66px 0; }
  .service-section-heading h2, .service-use-layout h2, .service-project-heading h2, .service-planning-layout h2, .service-final-cta h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .service-overview-copy > p { font-size: 1rem; line-height: 1.74; }
  .service-capability-grid { grid-template-columns: 1fr; }
  .service-capability-grid article { min-height: 240px; padding: 26px; }
  .service-capability-grid h3 { margin-top: 50px; }
  .service-use-layout > article { padding: 32px 24px; }
  .service-use-layout ul { grid-template-columns: 1fr; }
  .service-project-card { padding: 32px 24px; }
  .service-project-card ul { grid-template-columns: 1fr; }
  .service-planning-grid { grid-template-columns: 1fr; }
  .service-planning-grid span { min-height: 86px; }
  .related-service-grid { grid-template-columns: 1fr; }
  .related-service-grid > a:last-child { grid-column: auto; display: block; }
  .related-service-grid > a:last-child img { height: auto; aspect-ratio: 16 / 10; }
  .service-final-actions .button { width: 100%; }
}

/* Careers */
.careers-page { color: var(--ink); background: var(--paper); }
.careers-hero { position: relative; overflow: hidden; padding: 84px 0 88px; color: var(--white); background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 58%, var(--forest) 100%); }
.careers-hero::before { position: absolute; inset: 0; content: ""; opacity: .06; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 72px 72px; pointer-events: none; }
.careers-hero-layout { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(56px, 7vw, 100px); }
.careers-hero h1 { max-width: 780px; margin: 20px 0 21px; font-family: var(--font-brand); font-size: clamp(3.3rem, 5.25vw, 6.1rem); font-weight: 900; letter-spacing: -.06em; line-height: .91; text-transform: uppercase; }
.careers-hero-lead { max-width: 720px; margin: 0 0 15px; color: var(--signal); font-size: clamp(1.2rem, 1.7vw, 1.6rem); font-weight: 800; line-height: 1.3; }
.careers-hero-summary { max-width: 710px; margin: 0; color: rgba(255,255,255,.87); font-size: 1.02rem; font-weight: 550; line-height: 1.72; }
.careers-hero-media { position: relative; overflow: hidden; margin: 0; background: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,.3); }
.careers-hero-media::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.2); box-shadow: inset 0 -120px 100px -90px rgba(0,0,0,.7); pointer-events: none; }
.careers-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 56%; filter: saturate(.88) contrast(1.07); }
.careers-hero-media figcaption { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; color: rgba(255,255,255,.9); background: rgba(3,15,10,.86); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 750; }
.careers-hero-media figcaption span { color: var(--signal); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.careers-intro-section { padding: 110px 0; background: var(--white); }
.careers-intro-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(70px, 9vw, 135px); }
.careers-intro-copy > p { margin: 3px 0 0; color: var(--muted); font-size: 1.1rem; line-height: 1.82; }
.careers-intro-points { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; margin-top: 30px; border-top: 1px solid var(--line); }
.careers-intro-points span { min-height: 69px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid var(--line); font-size: .9rem; font-weight: 800; line-height: 1.45; }
.careers-intro-points svg { flex: 0 0 17px; color: var(--green-2); }
.career-roles-section { padding: 110px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.careers-heading-split { margin-bottom: 50px; }
.career-role-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.career-role-grid article { min-height: 495px; display: flex; flex-direction: column; padding: 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease; }
.career-role-grid article:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: 0 24px 60px rgba(6,18,14,.1); }
.career-role-top { display: flex; align-items: center; justify-content: space-between; color: var(--green); }
.career-role-top > span { font-size: .67rem; font-weight: 900; letter-spacing: .14em; }
.career-role-status { align-self: flex-start; margin-top: 30px; padding: 7px 10px; font-size: .63rem; font-weight: 900; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.career-role-status-open { color: var(--green); background: #e3f5ea; }
.career-role-status-filled { color: #44504b; background: #e3e7e4; }
.career-role-grid article.career-role-filled { background: #f8faf8; }
.career-role-grid article > small { margin-top: 16px; color: var(--green); font-size: .66rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.career-role-grid h3 { margin: 10px 0 13px; font-family: var(--font-brand); font-size: 1.75rem; letter-spacing: -.03em; line-height: 1.04; text-transform: uppercase; }
.career-role-grid p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.67; }
.career-role-grid ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.career-role-grid li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink); font-size: .86rem; font-weight: 750; line-height: 1.45; }
.career-role-grid li svg { flex: 0 0 16px; margin-top: 2px; color: var(--green-2); }
.career-role-grid article > a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 25px; color: var(--green); font-size: .73rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.careers-ready-section { padding: 105px 0; color: var(--white); background: var(--ink); }
.careers-ready-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(65px, 8vw, 120px); }
.careers-ready-layout h2 { margin: 16px 0 18px; font-family: var(--font-brand); font-size: clamp(2.55rem, 3.7vw, 4.15rem); line-height: .98; letter-spacing: -.05em; }
.careers-ready-layout p { max-width: 560px; color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.75; }
.careers-ready-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.careers-ready-grid span { min-height: 122px; display: flex; flex-direction: column; justify-content: space-between; gap: 13px; padding: 22px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); font-weight: 800; line-height: 1.42; }
.careers-ready-grid small { color: var(--signal); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.careers-apply-section { padding: 120px 0; color: var(--white); background: linear-gradient(145deg, var(--forest), var(--ink-2) 66%); }
.careers-policy-note { margin-top: 28px; padding: 17px 19px; border-left: 3px solid var(--signal); color: rgba(255,255,255,.8); background: rgba(255,255,255,.05); font-size: .83rem; line-height: 1.62; }
.careers-application-form .form-note { max-width: 690px; margin-inline: auto; }

@media (max-width: 1120px) {
  .careers-hero-layout { gap: 50px; }
  .careers-hero h1 { font-size: clamp(3rem, 5.8vw, 4.9rem); }
  .career-role-grid article { min-height: 520px; }
}

@media (max-width: 900px) {
  .careers-hero { padding: 72px 0; }
  .careers-hero-layout, .careers-intro-layout, .careers-ready-layout { grid-template-columns: 1fr; }
  .careers-hero-layout { gap: 52px; }
  .careers-hero h1 { font-size: clamp(3.2rem, 9.5vw, 5.4rem); }
  .careers-hero-media { max-width: 760px; }
  .careers-intro-section, .career-roles-section, .careers-ready-section, .careers-apply-section { padding: 84px 0; }
  .career-role-grid { grid-template-columns: repeat(2, 1fr); }
  .career-role-grid article { min-height: 475px; }
  .careers-ready-layout { gap: 48px; }
}

@media (max-width: 640px) {
  .careers-hero { padding: 52px 0 60px; }
  .careers-hero h1 { font-size: clamp(2.85rem, 13.4vw, 4.15rem); }
  .careers-hero-lead { font-size: 1.16rem; }
  .careers-hero-summary { font-size: .98rem; }
  .careers-hero-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; font-size: .67rem; }
  .careers-intro-section, .career-roles-section, .careers-ready-section, .careers-apply-section { padding: 66px 0; }
  .careers-intro-points { grid-template-columns: 1fr; }
  .career-role-grid { grid-template-columns: 1fr; }
  .career-role-grid article { min-height: 445px; padding: 26px; }
  .careers-ready-layout h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .careers-ready-grid { grid-template-columns: 1fr; }
  .careers-ready-grid span { min-height: 96px; }
  .careers-apply-layout { gap: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
  .hero { background: linear-gradient(135deg, var(--ink), var(--forest)); }
}

/* Insights */
.insights-page, .insight-article-page { color: var(--ink); background: var(--paper); }
.insights-hero { position: relative; overflow: hidden; padding: 88px 0 94px; color: var(--white); background: linear-gradient(130deg, var(--ink) 0%, var(--ink-2) 62%, var(--forest) 100%); }
.insights-hero::before { position: absolute; inset: 0; content: ""; opacity: .065; background-image: linear-gradient(rgba(255,255,255,.42) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.42) 1px, transparent 1px); background-size: 76px 76px; pointer-events: none; }
.insights-hero-layout { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; align-items: end; gap: clamp(70px, 9vw, 135px); }
.insights-hero h1 { max-width: 820px; margin: 20px 0 0; font-size: clamp(3.25rem, 5vw, 5.9rem); font-weight: 900; letter-spacing: -.058em; line-height: .94; text-transform: uppercase; }
.insights-hero-copy { max-width: 500px; padding: 9px 0 9px 30px; border-left: 3px solid var(--signal); }
.insights-hero-copy svg { color: var(--signal); }
.insights-hero-copy p { margin: 18px 0 0; color: rgba(255,255,255,.87); font-size: 1.05rem; font-weight: 570; line-height: 1.72; }
.insights-index-section { padding: 112px 0 120px; background: var(--white); }
.insights-index-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 70px; margin-bottom: 50px; }
.insights-index-heading h2, .insights-promise-layout h2, .insights-cta-layout h2, .insight-related-heading h2, .insight-article-cta h2 { margin: 13px 0 0; font-size: clamp(2.8rem, 4.2vw, 4.7rem); font-weight: 900; letter-spacing: -.055em; line-height: .96; text-transform: uppercase; }
.insights-index-heading > p { max-width: 580px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.76; }
.insight-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.insight-card { display: flex; flex-direction: column; min-height: 650px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease; }
.insight-card:hover { position: relative; z-index: 2; transform: translateY(-4px); box-shadow: 0 28px 70px rgba(6,18,14,.11); }
.insight-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.14fr .86fr; min-height: 490px; }
.insight-card-image { overflow: hidden; background: var(--ink); }
.insight-card-image img { width: 100%; height: 270px; object-fit: cover; filter: saturate(.8) contrast(1.08); transition: transform 420ms ease, filter 220ms ease; }
.insight-card-featured .insight-card-image img { height: 100%; min-height: 490px; }
.insight-card:hover .insight-card-image img { transform: scale(1.018); filter: saturate(.94) contrast(1.07); }
.insight-card-body { display: flex; flex: 1; flex-direction: column; padding: 33px 34px 36px; }
.insight-card-featured .insight-card-body { justify-content: center; padding: clamp(42px, 5vw, 74px); }
.insight-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: #68736e; font-size: .66rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.insight-meta span { color: var(--green); }
.insight-meta time::before, .insight-meta small::before { margin-right: 14px; color: #a6aea9; content: "/"; }
.insight-card h3 { margin: 23px 0 15px; font-size: clamp(1.75rem, 2.4vw, 2.65rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.03; text-transform: uppercase; }
.insight-card-featured h3 { max-width: 650px; font-size: clamp(2.35rem, 3.45vw, 4.15rem); }
.insight-card h3 a:hover, .insight-card h3 a:focus-visible { color: var(--green); }
.insight-card p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.72; }
.insight-read-link { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; margin-top: auto; padding-top: 29px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.insights-promise-section { padding: 102px 0; color: var(--white); background: var(--forest); }
.insights-promise-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(70px, 10vw, 150px); }
.insights-promise-layout h2 { max-width: 590px; }
.insights-promise-grid { display: grid; border-top: 1px solid rgba(255,255,255,.22); }
.insights-promise-grid span { min-height: 84px; display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.22); font-size: 1.02rem; font-weight: 780; }
.insights-promise-grid strong { color: var(--signal); font-size: .7rem; letter-spacing: .12em; }
.insights-cta-section { padding: 108px 0; background: var(--paper); }
.insights-cta-layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.insights-cta-layout p { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 1.02rem; }
.insights-cta-actions { display: grid; gap: 17px; min-width: 285px; }
.insights-cta-actions > a:last-child { display: inline-flex; align-items: center; justify-content: center; gap: 11px; color: var(--green); font-size: 1.12rem; font-weight: 900; }
.insights-cta-actions small { display: block; color: var(--muted); font-size: .59rem; letter-spacing: .11em; text-transform: uppercase; }

.insight-article-hero { position: relative; overflow: hidden; padding: 72px 0 80px; color: var(--white); background: linear-gradient(130deg, var(--ink), var(--ink-2) 62%, var(--forest)); }
.insight-article-hero::before { position: absolute; inset: 0; content: ""; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 72px 72px; }
.insight-article-hero-layout { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(55px, 7vw, 100px); }
.insight-meta-light { color: rgba(255,255,255,.62); }
.insight-meta-light span { color: var(--signal); }
.insight-meta-light time::before, .insight-meta-light small::before { color: rgba(255,255,255,.36); }
.insight-article-hero h1 { max-width: 820px; margin: 23px 0 22px; font-size: clamp(3rem, 4.65vw, 5.35rem); font-weight: 900; letter-spacing: -.057em; line-height: .94; text-transform: uppercase; }
.insight-article-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.85); font-size: 1.08rem; line-height: 1.74; }
.insight-article-hero figure { position: relative; overflow: hidden; margin: 0; background: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,.32); }
.insight-article-hero figure::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.2); box-shadow: inset 0 -120px 100px -90px rgba(0,0,0,.72); pointer-events: none; }
.insight-article-hero figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.insight-article-hero figcaption { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; color: rgba(255,255,255,.9); background: rgba(3,15,10,.87); backdrop-filter: blur(10px); font-size: .7rem; font-weight: 750; }
.insight-article-hero figcaption span { color: var(--signal); font-size: .63rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.insight-article-layout { display: grid; grid-template-columns: 315px minmax(0, 760px); justify-content: center; align-items: start; gap: clamp(70px, 9vw, 135px); padding-top: 104px; padding-bottom: 116px; }
.insight-takeaway-card { position: sticky; top: 145px; padding: 29px; border-top: 4px solid var(--signal); color: var(--white); background: var(--ink-2); box-shadow: 0 22px 54px rgba(6,18,14,.13); }
.insight-takeaway-card > span { color: var(--signal); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.insight-takeaway-card ul { display: grid; gap: 16px; margin: 24px 0 27px; padding: 0; list-style: none; }
.insight-takeaway-card li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.9); font-size: .86rem; font-weight: 700; line-height: 1.5; }
.insight-takeaway-card li svg { flex: 0 0 17px; margin-top: 2px; color: var(--signal); }
.insight-takeaway-card > a { display: inline-flex; align-items: center; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); color: var(--signal); font-size: .69rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.insight-article-body > section { padding: 0 0 56px; margin: 0 0 56px; border-bottom: 1px solid var(--line); }
.insight-article-body > section:last-of-type { margin-bottom: 0; }
.insight-article-body h2 { margin: 0 0 24px; font-size: clamp(2.05rem, 3vw, 3.05rem); font-weight: 900; letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.insight-article-body p { margin: 0 0 20px; color: #35433d; font-size: 1.06rem; line-height: 1.83; }
.insight-article-body p:last-child { margin-bottom: 0; }
.insight-article-body section > ul { display: grid; gap: 13px; margin: 27px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.insight-article-body section > ul li { position: relative; padding-left: 24px; color: var(--ink); font-size: .98rem; font-weight: 730; line-height: 1.55; }
.insight-article-body section > ul li::before { position: absolute; top: .65em; left: 0; width: 8px; height: 8px; content: ""; background: var(--green-2); transform: rotate(45deg); }
.insight-sources div { display: grid; gap: 11px; }
.insight-sources a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 17px; border: 1px solid var(--line); color: var(--green); background: var(--white); font-size: .88rem; font-weight: 800; line-height: 1.45; }
.insight-sources a:hover, .insight-sources a:focus-visible { border-color: var(--green); }
.insight-sources svg { flex: 0 0 16px; }
.insight-author-note { margin-top: 10px; padding: 29px 31px; border-left: 4px solid var(--green-2); background: #e7eee9; }
.insight-author-note strong { color: var(--green); font-size: .73rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.insight-author-note p { margin: 12px 0 0; color: #35433d; font-size: .94rem; line-height: 1.69; }
.insight-related-section { padding: 108px 0 116px; border-top: 1px solid var(--line); background: var(--white); }
.insight-related-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.insight-related-heading > a { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: .71rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.insight-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.insight-related-grid > a { display: grid; grid-template-columns: 180px 1fr; align-content: start; min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease; }
.insight-related-grid > a:hover, .insight-related-grid > a:focus-visible { background: var(--paper); }
.insight-related-grid img { grid-row: 1 / 5; width: 150px; height: 190px; object-fit: cover; filter: saturate(.82) contrast(1.06); }
.insight-related-grid span { align-self: start; color: var(--green); font-size: .64rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.insight-related-grid h3 { margin: 13px 0 18px; font-size: 1.45rem; font-weight: 900; letter-spacing: -.035em; line-height: 1.08; text-transform: uppercase; }
.insight-related-grid small { display: inline-flex; align-items: center; gap: 7px; align-self: end; color: var(--green); font-size: .65rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.insight-article-cta { padding: 98px 0; color: var(--white); background: var(--forest); }
.insight-article-cta-layout { display: grid; grid-template-columns: .6fr 1.15fr .65fr; align-items: center; gap: 55px; }
.insight-back-link { display: inline-flex; align-items: center; gap: 8px; align-self: start; color: var(--signal); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.insight-article-cta h2 { max-width: 650px; }
.insight-article-cta p { max-width: 620px; margin: 18px 0 0; color: rgba(255,255,255,.82); }
.insight-article-cta-layout > div:last-child { display: grid; gap: 17px; }
.insight-article-cta-layout > div:last-child > a:last-child { display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: var(--white); font-weight: 900; }

@media (max-width: 1120px) {
  .insights-hero-layout, .insight-article-hero-layout { gap: 55px; }
  .insight-article-layout { grid-template-columns: 285px minmax(0, 700px); gap: 65px; }
  .insight-related-grid > a { grid-template-columns: 145px 1fr; }
  .insight-related-grid img { width: 118px; height: 175px; }
}

@media (max-width: 900px) {
  .insights-hero, .insight-article-hero { padding: 72px 0; }
  .insights-hero-layout, .insight-article-hero-layout, .insights-promise-layout, .insights-cta-layout, .insight-article-cta-layout { grid-template-columns: 1fr; }
  .insights-hero-copy { max-width: 720px; }
  .insights-index-section, .insights-promise-section, .insights-cta-section, .insight-related-section, .insight-article-cta { padding: 84px 0; }
  .insights-index-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .insight-card-featured { display: flex; min-height: 650px; }
  .insight-card-featured .insight-card-image img { height: 330px; min-height: 0; }
  .insight-card-featured .insight-card-body { justify-content: flex-start; padding: 36px; }
  .insights-promise-layout { gap: 50px; }
  .insights-cta-actions { min-width: 0; max-width: 320px; }
  .insight-article-hero figure { max-width: 760px; }
  .insight-article-layout { grid-template-columns: 1fr; gap: 48px; padding-top: 84px; padding-bottom: 90px; }
  .insight-takeaway-card { position: static; max-width: 700px; }
  .insight-related-grid { grid-template-columns: 1fr; }
  .insight-article-cta-layout { gap: 35px; }
  .insight-article-cta-layout > div:last-child { max-width: 320px; }
}

@media (max-width: 640px) {
  .insights-hero, .insight-article-hero { padding: 54px 0 62px; }
  .insights-hero h1 { font-size: clamp(2.75rem, 12vw, 3.8rem); }
  .insights-hero-copy { padding-left: 22px; }
  .insights-hero-copy p { font-size: .98rem; }
  .insights-index-section, .insights-promise-section, .insights-cta-section, .insight-related-section, .insight-article-cta { padding: 66px 0; }
  .insights-index-heading h2, .insights-promise-layout h2, .insights-cta-layout h2, .insight-related-heading h2, .insight-article-cta h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .insight-card-grid { grid-template-columns: 1fr; }
  .insight-card, .insight-card-featured { grid-column: auto; min-height: 0; }
  .insight-card-image img, .insight-card-featured .insight-card-image img { height: auto; aspect-ratio: 4 / 3; }
  .insight-card-body, .insight-card-featured .insight-card-body { padding: 28px 24px 31px; }
  .insight-card h3, .insight-card-featured h3 { font-size: 1.9rem; }
  .insight-read-link { margin-top: 8px; }
  .insights-promise-grid span { min-height: 92px; grid-template-columns: 45px 1fr; }
  .insight-article-hero h1 { font-size: clamp(2.55rem, 11.6vw, 3.75rem); }
  .insight-article-hero p { font-size: .98rem; }
  .insight-article-hero figcaption { align-items: flex-start; flex-direction: column; gap: 4px; font-size: .66rem; }
  .insight-article-layout { padding-top: 66px; padding-bottom: 70px; }
  .insight-takeaway-card { padding: 25px 23px; }
  .insight-article-body > section { padding-bottom: 42px; margin-bottom: 42px; }
  .insight-article-body h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .insight-article-body p { font-size: 1rem; line-height: 1.76; }
  .insight-author-note { padding: 24px 22px; }
  .insight-related-heading { align-items: flex-start; flex-direction: column; }
  .insight-related-grid > a { grid-template-columns: 1fr; min-height: 0; padding: 24px; }
  .insight-related-grid img { grid-row: auto; width: 100%; height: auto; aspect-ratio: 16 / 10; margin-bottom: 23px; }
  .insight-related-grid h3 { font-size: 1.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card, .insight-card-image img { transition: none; }
  .insight-card:hover { transform: none; }
  .insight-card:hover .insight-card-image img { transform: none; }
}

/* Mobile legibility and flow — tuned for current iPhone portrait widths. */
@media (max-width: 640px) {
  :root { --shell: calc(100vw - 36px); }

  html { scroll-padding-top: 86px; }
  body {
    overflow-x: clip;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  h1, h2, h3 {
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .emergency-inner {
    min-height: 44px;
    justify-content: center;
    padding: 0 18px;
  }
  .emergency-label { display: none; }
  .emergency-inner a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: .75rem;
    letter-spacing: .075em;
  }
  .emergency-inner a::before {
    content: "24/7 •";
    color: var(--signal-soft);
  }
  .emergency-inner a svg { display: block; }

  .nav-wrap { min-height: 66px; gap: 16px; }
  .brand { width: 172px; min-width: 0; flex: 0 1 172px; }
  .brand img { height: 46px; }
  .mobile-menu summary { width: 48px; height: 48px; }
  .mobile-menu nav {
    top: 66px;
    padding: 10px 18px 18px;
  }
  .mobile-menu nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: .85rem;
    line-height: 1.3;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
    font-size: .76rem;
    line-height: 1.25;
    text-align: center;
  }

  .hero { min-height: 820px; }
  .hero-layout {
    min-height: 708px;
    padding-block: 54px 136px;
  }
  .hero-video { object-position: 60% center; }
  .eyebrow { font-size: .75rem; letter-spacing: .12em; }
  .hero h1 {
    margin: 17px 0 19px;
    font-size: clamp(2.75rem, 12.2vw, 3.25rem);
    letter-spacing: -.048em;
    line-height: .96;
  }
  .hero-content > p { font-size: 1rem; line-height: 1.6; }
  .hero-actions { gap: 10px; margin-top: 25px; }
  .hero-proof {
    gap: 10px;
    margin-top: 19px;
    font-size: .82rem;
    line-height: 1.4;
  }
  .hero-capabilities-grid { min-height: 116px; padding-block: 6px; }
  .hero-capabilities-grid span {
    min-height: 49px;
    padding: 8px 10px;
    font-size: .75rem;
    letter-spacing: .025em;
    line-height: 1.28;
  }

  .response-section,
  .services-section,
  .video-section,
  .proof-section,
  .coverage-section,
  .approach-section,
  .faq-section,
  .contact-section { padding: 68px 0; }

  .section-intro h2,
  .section-heading h2,
  .proof-copy h2,
  .coverage-section h2,
  .faq-layout h2,
  .contact-copy h2,
  .ethanol-copy h2 {
    margin: 13px 0 18px;
    font-size: clamp(2.15rem, 9.6vw, 2.8rem);
    letter-spacing: -.04em;
    line-height: 1.01;
  }
  .proof-headline,
  .coverage-section h2 {
    font-size: clamp(2.15rem, 9.4vw, 2.75rem) !important;
  }
  .section-intro p,
  .section-heading p,
  .proof-copy > p,
  .coverage-section p,
  .faq-layout p,
  .contact-copy > p {
    font-size: 1rem;
    line-height: 1.68;
  }
  .eyebrow,
  .inline-link,
  .service-link,
  .text-link-light { min-height: 24px; }

  .response-grid,
  .heading-split,
  .proof-layout,
  .coverage-layout,
  .faq-layout,
  .contact-layout { gap: 34px; }
  .emergency-needs div { min-height: 58px; line-height: 1.42; }
  .call-panel { padding: 28px 24px; }
  .call-panel > svg { margin-bottom: 22px; }
  .call-panel > strong { font-size: 1.9rem; }

  .trust-band { padding: 54px 0; }
  .trust-band-heading h2 { font-size: 2.2rem; }
  .trust-grid article { min-height: 0; padding: 26px 22px 27px; }
  .trust-grid h3 { margin: 27px 0 10px; }

  .section-heading { margin-bottom: 34px; }
  .service-card { min-height: 0; padding: 0 26px 27px; }
  .service-card-image {
    height: 210px;
    margin: 0 -26px 24px;
  }
  .service-card h3 {
    margin: 25px 0 11px;
    font-size: 1.65rem;
  }
  .service-card p { font-size: 1rem; line-height: 1.64; }
  .service-link { margin-top: 25px; padding-top: 0; }

  .ethanol-copy { padding: 68px 0; }
  .ethanol-side { min-height: 0; padding: 55px 24px 0; }
  .ethanol-lead { font-size: 1rem; line-height: 1.68; }
  .ethanol-card { margin: 32px 0 42px; }
  .ethanol-card h3 { font-size: 2.15rem; }
  .industry-row { margin-left: -24px; margin-right: -24px; }
  .industry-row span {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 13px 12px;
    font-size: .75rem;
  }

  .video-card > div { padding: 20px 21px 23px; }
  .video-card > div span { font-size: .72rem; }
  .video-card h3 { font-size: 1.4rem; }

  .nationwide-card { padding: 27px 22px; }
  .nationwide-card h3 { font-size: 2rem; }
  .states-grid div { min-height: 66px; padding: 16px; font-size: 1rem; }
  .coverage-contact { align-items: flex-start; margin-top: 28px; padding-top: 25px; }

  .process-grid article { min-height: 0; padding: 26px 24px 28px; }
  .process-grid h3 { margin: 30px 0 9px; }

  .faq-list summary {
    min-height: 68px;
    padding: 15px 0;
    font-size: 1rem;
    line-height: 1.42;
  }
  .faq-list details p { padding: 0 0 24px; }

  .contact-cards { margin-top: 30px; }
  .contact-cards a { min-height: 74px; padding: 16px; }
  .contact-cards small { font-size: .75rem; }
  .contact-form { gap: 16px; padding: 24px 18px; }
  .contact-form label { font-size: .75rem; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 1rem; }
  .contact-form input,
  .contact-form select { height: 52px; }

  footer { padding: 58px 0 24px; }
  .footer-main { gap: 25px; padding-bottom: 31px; }
  .footer-brand { min-height: 66px; }
  .footer-brand strong { font-size: 2rem; }
  .footer-brand span,
  .footer-link-group > span,
  .footer-phone span { font-size: .7rem; }
  .footer-phone { font-size: 1.1rem; }
  .footer-navigation { gap: 26px; padding-top: 25px; }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    margin-top: 9px;
    font-size: .73rem;
    line-height: 1.35;
  }
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-bottom { gap: 15px; font-size: .72rem; line-height: 1.55; }

  .mobile-emergency-cta {
    min-height: 64px;
    padding: 8px 18px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-emergency-cta small { font-size: .65rem; }

  .service-hero { padding: 46px 0 56px; }
  .service-hero-layout { gap: 36px; }
  .service-breadcrumb {
    margin-bottom: 22px;
    font-size: .75rem;
    line-height: 1.4;
  }
  .service-hero h1 {
    margin: 17px 0 17px;
    font-size: clamp(2.55rem, 11vw, 3rem);
    letter-spacing: -.045em;
    line-height: .96;
  }
  .service-hero-lead { font-size: 1.08rem; line-height: 1.36; }
  .service-hero-summary { font-size: 1rem; line-height: 1.65; }
  .service-hero-actions { gap: 10px; margin-top: 25px; }
  .service-hero-media figcaption { font-size: .75rem; line-height: 1.4; }
  .service-hero-media figcaption span { font-size: .72rem; }
  .service-trust-grid span {
    min-height: 58px;
    padding: 14px 16px;
    font-size: .76rem;
    line-height: 1.35;
  }
  .service-overview-section,
  .service-capabilities-section,
  .service-use-section,
  .service-project-section,
  .service-planning-section,
  .related-services-section,
  .service-final-cta { padding: 64px 0; }
  .service-section-heading h2,
  .service-use-layout h2,
  .service-project-heading h2,
  .service-planning-layout h2,
  .service-final-cta h2 {
    font-size: clamp(2.05rem, 9.2vw, 2.6rem);
    line-height: 1;
  }
  .service-capability-grid article { min-height: 0; padding: 25px 23px 27px; }
  .service-capability-grid h3 { margin-top: 31px; }
  .service-use-layout > article,
  .service-project-card { padding: 28px 22px; }
  .service-planning-grid span { min-height: 72px; }

  .careers-hero { padding: 46px 0 56px; }
  .careers-hero-layout { gap: 38px; }
  .careers-hero h1 {
    margin: 17px 0 17px;
    font-size: clamp(2.55rem, 11vw, 3rem);
    letter-spacing: -.045em;
    line-height: .96;
  }
  .careers-hero-lead { font-size: 1.08rem; line-height: 1.36; }
  .careers-hero-summary { font-size: 1rem; line-height: 1.65; }
  .careers-hero-media figcaption { font-size: .75rem; line-height: 1.4; }
  .careers-hero-media figcaption span { font-size: .72rem; }
  .careers-intro-section,
  .career-roles-section,
  .careers-ready-section,
  .careers-apply-section { padding: 64px 0; }
  .career-role-grid article { min-height: 0; padding: 25px 23px 27px; }
  .career-role-status,
  .career-role-grid article > small { font-size: .72rem; }
  .career-role-grid article > a { margin-top: 25px; padding-top: 0; }
  .careers-ready-layout h2 { font-size: clamp(2.05rem, 9.2vw, 2.6rem); }
  .careers-ready-grid span { min-height: 88px; padding: 20px; }

  .insights-hero,
  .insight-article-hero { padding: 48px 0 58px; }
  .insights-hero h1 {
    font-size: clamp(2.5rem, 10.7vw, 3rem);
    line-height: .98;
  }
  .insights-hero-copy { padding-left: 18px; }
  .insights-index-section,
  .insights-promise-section,
  .insights-cta-section,
  .insight-related-section,
  .insight-article-cta { padding: 64px 0; }
  .insights-index-heading h2,
  .insights-promise-layout h2,
  .insights-cta-layout h2,
  .insight-related-heading h2,
  .insight-article-cta h2 {
    font-size: clamp(2.05rem, 9.2vw, 2.6rem);
    line-height: 1;
  }
  .insight-meta { font-size: .75rem; line-height: 1.45; }
  .insight-card-body,
  .insight-card-featured .insight-card-body { padding: 25px 22px 28px; }
  .insight-card h3,
  .insight-card-featured h3 { font-size: 1.7rem; }
  .insight-article-hero h1 {
    font-size: clamp(2.35rem, 10.2vw, 2.85rem);
    line-height: .98;
  }
  .insight-article-layout { padding-top: 62px; padding-bottom: 66px; }
  .insight-article-body h2 { font-size: clamp(1.85rem, 8.4vw, 2.35rem); }
  .insight-sources a { align-items: flex-start; }
}

@media (max-width: 390px) {
  :root { --shell: calc(100vw - 30px); }
  .brand { width: 164px; flex-basis: 164px; }
  .hero h1 { font-size: 2.75rem; }
  .hero-capabilities-grid span { font-size: .72rem; }
  .footer-links { grid-template-columns: 1fr; }
}

/* WordPress/Elementor integration: preserve the exact approved mockup styling. */
.egm-homepage {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow-x: clip;
  color: var(--ink);
  font-family: var(--font-brand) !important;
}

#egm-homepage h1,
#egm-homepage h2,
#egm-homepage h3,
#egm-homepage h4,
#egm-homepage h5,
#egm-homepage h6 {
  color: inherit !important;
  font-family: var(--font-brand) !important;
}

#egm-homepage p,
#egm-homepage a,
#egm-homepage span,
#egm-homepage strong,
#egm-homepage small,
#egm-homepage li,
#egm-homepage label,
#egm-homepage summary,
#egm-homepage button,
#egm-homepage input,
#egm-homepage select,
#egm-homepage textarea {
  font-family: var(--font-brand) !important;
}

#egm-homepage .hero h1,
#egm-homepage .section-intro h2,
#egm-homepage .section-heading h2,
#egm-homepage .proof-copy h2,
#egm-homepage .coverage-section h2,
#egm-homepage .faq-layout h2,
#egm-homepage .contact-copy h2,
#egm-homepage .ethanol-copy h2 {
  font-weight: 900 !important;
}

#egm-homepage .trust-band-heading h2,
#egm-homepage .service-card h3,
#egm-homepage .ethanol-card h3,
#egm-homepage .video-card h3,
#egm-homepage .nationwide-card h3,
#egm-homepage .process-grid h3 {
  font-weight: 700 !important;
}

#egm-homepage .trust-grid h3 {
  font-weight: 850 !important;
}

#egm-homepage .hero h1 .hero-line {
  color: var(--white) !important;
}

#egm-homepage .hero h1 .hero-accent {
  color: var(--signal) !important;
}

#egm-homepage .section-intro p,
#egm-homepage .section-heading p,
#egm-homepage .proof-copy > p,
#egm-homepage .coverage-copy > p,
#egm-homepage .faq-layout p {
  color: var(--muted) !important;
}

#egm-homepage .nationwide-card p {
  color: rgba(255,255,255,.86) !important;
}

#egm-homepage .service-card:not(.service-card-priority) p {
  color: var(--muted) !important;
}

#egm-homepage .service-card-priority p,
#egm-homepage .service-card-priority h3 {
  color: var(--white) !important;
}

.egm-homepage .egm-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.egm-homepage .egm-form-status {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--green-2);
  background: #eaf8ef;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.5;
}

.egm-homepage .egm-form-status-error {
  border-left-color: #b42318;
  background: #fff0ee;
  color: #6e1710;
}

body.admin-bar .egm-homepage .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .egm-homepage .site-header { top: 46px; }
}

/* WordPress service-document protection: keep the approved mockup styling
   independent from Divi/Elementor while the established URL and SEO remain. */
body.egm-service-document {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: var(--font-brand) !important;
}

body.egm-service-document .egm-service-page {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: var(--font-brand) !important;
}

body.egm-service-document .egm-service-page h1,
body.egm-service-document .egm-service-page h2,
body.egm-service-document .egm-service-page h3,
body.egm-service-document .egm-service-page h4,
body.egm-service-document .egm-service-page p,
body.egm-service-document .egm-service-page a,
body.egm-service-document .egm-service-page span,
body.egm-service-document .egm-service-page strong,
body.egm-service-document .egm-service-page small,
body.egm-service-document .egm-service-page li {
  font-family: var(--font-brand) !important;
}

/* Divi and Elementor declare heading colors directly. These explicit rules
   restore the approved white/ink/green hierarchy on every EGM service page. */
body.egm-service-document .egm-service-page .service-hero h1 {
  color: var(--white) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-breadcrumb,
body.egm-service-document .egm-service-page .service-breadcrumb a {
  color: rgba(255,255,255,.72) !important;
  font-weight: 850 !important;
}

body.egm-service-document .egm-service-page .service-breadcrumb strong {
  color: var(--white) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-hero-lead {
  color: var(--signal) !important;
  font-weight: 800 !important;
}

body.egm-service-document .egm-service-page .service-hero-summary {
  color: rgba(255,255,255,.92) !important;
  font-weight: 570 !important;
}

body.egm-service-document .egm-service-page .service-hero-media figcaption {
  color: rgba(255,255,255,.92) !important;
}

body.egm-service-document .egm-service-page .service-hero-media figcaption span,
body.egm-service-document .egm-service-page .eyebrow,
body.egm-service-document .egm-service-page .eyebrow span,
body.egm-service-document .egm-service-page .service-contact-note small,
body.egm-service-document .egm-service-page .related-service-grid > a > div > span {
  color: var(--green) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-hero .eyebrow,
body.egm-service-document .egm-service-page .service-hero .eyebrow span,
body.egm-service-document .egm-service-page .service-planning-section .eyebrow,
body.egm-service-document .egm-service-page .service-planning-section .eyebrow span,
body.egm-service-document .egm-service-page .service-final-cta .eyebrow,
body.egm-service-document .egm-service-page .service-final-cta .eyebrow span,
body.egm-service-document .egm-service-page .service-project-card > span,
body.egm-service-document .egm-service-page .service-industry-panel .eyebrow,
body.egm-service-document .egm-service-page .service-industry-panel .eyebrow span {
  color: var(--signal) !important;
}

body.egm-service-document .egm-service-page .service-section-heading h2,
body.egm-service-document .egm-service-page .service-use-layout > article:not(.service-industry-panel) h2,
body.egm-service-document .egm-service-page .service-project-heading h2 {
  color: var(--ink) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-capability-grid h3,
body.egm-service-document .egm-service-page .related-service-grid h3 {
  color: var(--ink) !important;
  font-weight: 780 !important;
}

body.egm-service-document .egm-service-page .service-capability-grid article > span,
body.egm-service-document .egm-service-page .related-service-grid strong,
body.egm-service-document .egm-service-page .inline-link {
  color: var(--green) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-contact-note a,
body.egm-service-document .egm-service-page .service-use-layout > article:not(.service-industry-panel) li {
  color: var(--ink) !important;
}

body.egm-service-document .egm-service-page .service-hero .button-primary,
body.egm-service-document .egm-service-page .service-final-cta .button-primary {
  color: var(--ink) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-hero .button-ghost,
body.egm-service-document .egm-service-page .service-final-actions > a:not(.button-primary) {
  color: var(--white) !important;
  font-weight: 850 !important;
}

body.egm-service-document .egm-service-page .service-overview-copy > p,
body.egm-service-document .egm-service-page .service-heading-split > p,
body.egm-service-document .egm-service-page .service-capability-grid p,
body.egm-service-document .egm-service-page .service-project-heading > p,
body.egm-service-document .egm-service-page .related-service-grid p {
  color: var(--muted) !important;
}

body.egm-service-document .egm-service-page .service-industry-panel,
body.egm-service-document .egm-service-page .service-industry-panel h2,
body.egm-service-document .egm-service-page .service-industry-panel li,
body.egm-service-document .egm-service-page .service-project-card,
body.egm-service-document .egm-service-page .service-project-card h3,
body.egm-service-document .egm-service-page .service-planning-section,
body.egm-service-document .egm-service-page .service-planning-section h2,
body.egm-service-document .egm-service-page .service-planning-grid span,
body.egm-service-document .egm-service-page .service-final-cta,
body.egm-service-document .egm-service-page .service-final-cta h2 {
  color: var(--white) !important;
}

body.egm-service-document .egm-service-page .service-project-card > p,
body.egm-service-document .egm-service-page .service-planning-layout p,
body.egm-service-document .egm-service-page .service-final-cta p {
  color: rgba(255,255,255,.88) !important;
}

body.egm-service-document .egm-service-page .service-planning-grid small,
body.egm-service-document .egm-service-page .service-final-actions small {
  color: var(--signal) !important;
  font-weight: 900 !important;
}

body.egm-service-document .egm-service-page .service-trust-grid span,
body.egm-service-document .egm-service-page .footer-links a,
body.egm-service-document .egm-service-page .footer-main > p,
body.egm-service-document .egm-service-page .footer-bottom {
  color: rgba(255,255,255,.88) !important;
}

body.egm-service-document .egm-service-page .footer-brand strong,
body.egm-service-document .egm-service-page .footer-link-group > span,
body.egm-service-document .egm-service-page .footer-phone span {
  color: var(--signal) !important;
}

body.admin-bar .egm-service-page .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .egm-service-page .site-header { top: 46px; }
}


/* EGM approved Hydroexcavation crop — match the homepage worker focus everywhere. */
img[src*="egm-hydroexcavation-crew.webp"] {
  object-fit: cover !important;
  object-position: 50% 10% !important;
  transform: scale(1.55) !important;
  transform-origin: center center !important;
}

/* Keep related-service copy above the enlarged photo. */
.related-service-grid > a > img[src*="egm-hydroexcavation-crew.webp"] + div {
  position: relative;
  z-index: 1;
  background: #fff;
}
