:root {
  --orange: #ec5b12;
  --orange-hot: #ff7a2b;
  --black: #090909;
  --ink: #171717;
  --steel: #282d31;
  --concrete: #f2f0eb;
  --white: #ffffff;
  --line: #d8d4cb;
  --muted: #66645f;
  --soft-shadow: 0 20px 45px rgba(5, 5, 5, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.025) 1px, transparent 1px) 0 0 / 40px 40px,
    var(--concrete);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
a,
li,
button,
strong,
span {
  overflow-wrap: anywhere;
}

.hero h1,
.service-hero h1,
.hero-copy,
.service-hero .hero-copy,
.hero-callout strong,
.service-hero .hero-callout strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 88px;
  padding: 16px clamp(18px, 4.5vw, 70px);
  border: 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(5, 5, 5, 0.08);
}

.brand img {
  display: block;
  width: auto !important;
  max-width: 292px;
  height: 70px !important;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  display: none;
  place-items: center;
  padding: 0;
  border: 2px solid var(--black);
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  min-height: 46px;
  min-width: 46px;
  box-shadow: 0 5px 0 rgba(5, 5, 5, 0.2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

.mobile-nav-actions {
  display: contents;
}

.mobile-header-cart-link {
  display: none;
}

.site-header nav a {
  position: relative;
}

.site-header nav > a::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 4px;
  background: var(--orange);
  content: "";
  transform: skewX(-18deg) scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-header nav > a:hover::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: skewX(-18deg) scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 18px;
  content: "";
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(720px, 86vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 12px;
  border: 2px solid rgba(5, 5, 5, 0.88);
  background: var(--white);
  box-shadow: var(--soft-shadow), 0 6px 0 var(--orange);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 12px 14px;
  border: 1px solid transparent;
  background: #faf9f5;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-menu a:hover {
  border-color: rgba(5, 5, 5, 0.16);
  background: var(--orange);
  color: var(--white);
}

.rentals-menu {
  width: min(260px, 78vw);
  grid-template-columns: 1fr;
}

.front-services-menu {
  width: min(680px, 88vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.areas-menu {
  width: min(320px, 78vw);
  grid-template-columns: 1fr;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.button,
.contact-form button {
  border: 2px solid var(--black);
  border-radius: 4px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(236, 91, 18, 0.24);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 16px 22px;
  white-space: nowrap;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-cart-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--black);
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(5, 5, 5, 0.18);
}

.header-cart-link[hidden] {
  display: none;
}

.header-cart-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart-link span {
  position: absolute;
  top: -9px;
  right: -9px;
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.header-cart-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.header-cart-link.mobile-header-cart-link {
  display: none;
}

.header-cta:hover,
.button:hover,
.contact-form button:hover {
  background: #f36a22;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(236, 91, 18, 0.28);
}

.hero {
  position: relative;
  min-height: 625px;
  display: grid;
  grid-template-columns: minmax(0, 660px);
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 128px clamp(22px, 4.5vw, 70px) 44px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.78), rgba(8, 8, 8, 0.64) 46%, rgba(8, 8, 8, 0.42)),
    repeating-linear-gradient(112deg, rgba(236, 91, 18, 0.1) 0 7px, transparent 7px 42px),
    var(--hero-photo, linear-gradient(#111, #111)),
    #111;
  background-position: center;
  background-size: auto, auto, cover, auto;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(236, 91, 18, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.12) 0%, rgba(236, 91, 18, 0.05) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.24) 100%);
  content: "";
}

.hero-mark {
  display: none;
}

.hero-content,
.hero-form {
  position: relative;
  z-index: 2;
  width: 100%;
  justify-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-hot);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(236, 91, 18, 0.42);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero h1 {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-size: clamp(3.25rem, 5.2vw, 5.25rem);
  line-height: 0.9;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.hero-callout {
  align-self: center;
  margin-top: 72px;
  max-width: 390px;
  padding: 24px;
  border: 2px solid rgba(5, 5, 5, 0.9);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--soft-shadow), 0 8px 0 var(--orange);
}

.hero-form {
  align-self: center;
  margin-top: 18px;
  max-width: 410px;
  padding: 24px;
  justify-self: start;
}

.form-kicker {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-callout span,
.hero-callout strong {
  display: block;
}

.hero-callout span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-callout strong {
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: var(--orange);
}

.ticker span {
  min-height: 92px;
  display: grid;
  gap: 8px;
  place-items: center;
  border-right: 1px solid rgba(5, 5, 5, 0.34);
  color: var(--black);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.ticker span::before {
  display: block;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
}

.ticker span:nth-child(1)::before { content: "⌂"; }
.ticker span:nth-child(2)::before { content: "⚒"; }
.ticker span:nth-child(3)::before { content: "▱"; }
.ticker span:nth-child(4)::before { content: "▤"; }
.ticker span:nth-child(5)::before { content: "▰"; }

.ticker span:nth-child(6)::before { content: "▣"; }

.ticker .mobile-only-ticker {
  display: none;
}

.section,
.proof,
.process,
.contact-section {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 70px);
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section > *,
.proof > *,
.process > *,
.contact-section > * {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.rentals-section {
  background: var(--concrete);
}

.service-hero.rentals-hero {
  min-height: 600px;
  padding-top: 132px;
  padding-bottom: 82px;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.68), rgba(7, 21, 38, 0.4) 54%, rgba(7, 21, 38, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.32)),
    var(--hero-photo, linear-gradient(#071526, #071526)),
    #071526;
  background-position: center, center, center 58%, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rentals-hero h1 {
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.82;
}

.dumpster-section,
.dumpster-quote-section {
  background: var(--white);
  text-align: center;
}

.dumpster-quote-section {
  scroll-margin-top: 120px;
}

.dumpster-section {
  padding-top: clamp(42px, 6vw, 76px);
}

.dumpster-copy {
  max-width: 880px;
  margin: 34px auto 0;
}

.dumpster-copy h2 {
  color: var(--black);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.dumpster-intro {
  max-width: 820px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.dumpster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.dumpster-card {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 285px;
  padding: 20px;
  border: 2px solid #073963;
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 45%),
    #0b66b2;
  color: var(--white);
  box-shadow: 0 18px 34px rgba(4, 53, 96, 0.22), 0 7px 0 #073963;
}

.dumpster-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 132px;
  margin: 0 auto;
  border-radius: 4px;
  background: transparent;
  overflow: hidden;
}

.dumpster-icon::before,
.dumpster-icon::after {
  display: none;
}

.dumpster-icon-corrected::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 27px;
  right: calc(50% - 108px);
  width: 72px;
  height: 52px;
  display: block;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(10, 86, 156, 0.97), rgba(7, 57, 99, 0.97));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 8px 14px rgba(2, 25, 47, 0.2);
}

.dumpster-icon-corrected::after {
  content: attr(data-size-label);
  position: absolute;
  z-index: 3;
  top: 44px;
  right: calc(50% - 88px);
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.dumpster-icon img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(5, 41, 74, 0.26));
}

.dumpster-card:first-child .dumpster-icon img {
  transform: scale(0.9);
}

.dumpster-card h3 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.dumpster-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.dumpster-card button,
.dumpster-cart button {
  border: 2px solid #05294a;
  border-radius: 4px;
  background: var(--white);
  color: #073963;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.dumpster-quantity {
  display: grid;
  grid-template-columns: 44px minmax(48px, 1fr) 44px;
  gap: 8px;
  align-items: center;
  max-width: 180px;
  margin: 0 auto;
}

.dumpster-quantity button {
  min-height: 44px;
  padding: 0;
  font-size: 1.4rem;
}

.dumpster-quantity strong {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  background: rgba(5, 41, 74, 0.5);
  color: var(--white);
  font-size: 1.15rem;
}

.dumpster-rental-layout {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 650px);
  gap: 22px;
  align-items: start;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

.dumpster-cart {
  padding: 24px;
  border: 2px solid #073963;
  border-radius: 6px;
  background: #eaf5ff;
  box-shadow: 0 14px 30px rgba(4, 53, 96, 0.12);
}

.dumpster-cart h2 {
  color: #073963;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.empty-cart {
  margin: 0;
  color: #34556f;
  font-weight: 800;
}

.dumpster-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(7, 57, 99, 0.18);
  color: #073963;
  font-weight: 900;
}

.dumpster-cart-item button {
  min-height: 38px;
  padding: 0 12px;
}

.dumpster-selection-actions {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 28px auto 0;
}

.dumpster-selection-actions[hidden] {
  display: none;
}

.selection-cart {
  width: min(100%, 620px);
  padding: 20px;
  text-align: left;
}

.selection-cart h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.done-selecting-button {
  min-width: min(100%, 260px);
  padding: 16px 22px;
  border-color: #0f3f24;
  background: #138a3d;
  box-shadow: 0 14px 26px rgba(19, 138, 61, 0.24);
}

.done-selecting-button:hover {
  background: #18a64b;
  box-shadow: 0 16px 32px rgba(19, 138, 61, 0.3);
}

.rental-quote-form {
  text-align: left;
}

.rental-quote-form textarea[readonly] {
  background: #eef7ff;
  color: #073963;
  font-weight: 800;
}

.rentals-panel {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quote-form {
  width: min(100%, 720px);
}

.quote-form option.featured-project-option {
  background: #fff1e8;
  color: #b8460e;
  font-weight: 950;
}

.quote-dumpster-fields {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(236, 91, 18, 0.34);
  border-radius: 6px;
  background: #fff6ef;
}

.quote-dumpster-fields[hidden] {
  display: none;
}

.dumpster-size-options {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(236, 91, 18, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
}

.dumpster-size-options legend {
  padding: 0 6px;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-dumpster-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(236, 91, 18, 0.2);
}

.quote-dumpster-row:first-of-type {
  border-top: 0;
}

.quote-dumpster-row span {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: none;
}

.quote-dumpster-quantity {
  display: grid;
  grid-template-columns: 38px 42px 38px;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
}

.quote-dumpster-quantity button,
.quote-dumpster-quantity strong {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 2px solid rgba(236, 91, 18, 0.48);
  border-radius: 4px;
  font-weight: 950;
}

.quote-dumpster-quantity button {
  background: var(--white);
  color: #b8460e;
  cursor: pointer;
}

.quote-dumpster-quantity strong {
  background: rgba(236, 91, 18, 0.1);
  color: var(--black);
}

.rental-form-dumpster-options {
  border-color: rgba(7, 57, 99, 0.26);
  background: #eef7ff;
}

.rental-form-dumpster-options .quote-dumpster-row {
  border-top-color: rgba(7, 57, 99, 0.16);
}

.rental-form-dumpster-options .quote-dumpster-quantity button,
.rental-form-dumpster-options .quote-dumpster-quantity strong {
  border-color: rgba(7, 57, 99, 0.38);
}

.rental-form-dumpster-options .quote-dumpster-quantity button {
  color: #073963;
}

.rental-form-dumpster-options .quote-dumpster-quantity strong {
  background: rgba(7, 57, 99, 0.09);
}

.optional-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.rentals-panel p,
.service-areas p,
.about-section p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: var(--white);
}

.intro-section p,
.proof p,
.process-list p,
.contact-copy p,
.services-intro p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  background: var(--white);
}

.services-intro {
  max-width: 760px;
}

.service-directory {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.service-directory a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--concrete);
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-directory a:hover {
  border-color: rgba(236, 91, 18, 0.75);
  box-shadow: 0 18px 38px rgba(5, 5, 5, 0.12);
  transform: translateY(-2px);
}

.service-directory span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-directory strong {
  color: var(--black);
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: rgba(5, 5, 5, 0.14);
}

.services article {
  min-height: 350px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  background: var(--concrete);
}

.services article:nth-child(even) {
  background: var(--white);
}

.services span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 44px;
  margin-bottom: 52px;
  border: 2px solid var(--black);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(236, 91, 18, 0.24);
  font-weight: 950;
  border-radius: 3px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 340px);
  justify-content: center;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(46px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(236, 91, 18, 0.1), transparent 40%),
    var(--steel);
  color: var(--white);
}

.proof p {
  color: rgba(255, 255, 255, 0.72);
}

.proof h2 {
  max-width: 540px;
  font-size: clamp(2rem, 3.1vw, 3.45rem);
}

.proof-panel {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  border: 2px solid rgba(5, 5, 5, 0.92);
  background: var(--white);
  box-shadow: var(--soft-shadow), 0 8px 0 var(--orange);
}

.proof-panel img {
  width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.proof-photo-card {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--black);
}

.proof-photo-card img {
  display: block;
  width: 100%;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-photo-card figcaption {
  display: none;
}

.proof-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding-top: 14px;
  border-top: 2px solid var(--black);
  color: var(--black);
  text-align: center;
}

.proof-stats strong {
  color: var(--orange);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.86;
  text-shadow: none;
  white-space: nowrap;
}

.proof-stats span {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.field-photo-section {
  background:
    linear-gradient(135deg, rgba(236, 91, 18, 0.055), transparent 44%),
    #f7f5ef;
}

.field-photo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(22px, 3.5vw, 42px);
  max-width: 1000px;
  margin: 0 auto;
}

.field-photo-card,
.project-photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 6px;
  background: var(--black);
  box-shadow: 0 18px 36px rgba(5, 5, 5, 0.13), 0 6px 0 var(--orange);
}

.field-photo-card img,
.project-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-photo-section .field-photo-card img {
  object-position: center 16%;
}

.field-photo-card figcaption,
.project-photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.88));
}

.field-photo-card figcaption strong,
.project-photo-card figcaption strong {
  color: var(--white);
  font-size: 1rem;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.field-photo-card figcaption span,
.project-photo-card figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.field-photo-copy {
  max-width: 460px;
  text-align: left;
}

.field-photo-copy h2 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.field-photo-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  background: var(--white);
}

.service-areas,
.about-section,
.state-area-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  background: var(--white);
}

.about-section {
  background: var(--concrete);
}

.state-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 900px;
}

.state-directory a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: #faf9f5;
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.07);
}

.state-directory a:hover {
  border-color: rgba(236, 91, 18, 0.75);
  background: var(--white);
}

.state-directory strong {
  color: var(--black);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}

.state-directory span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-tools {
  display: grid;
  grid-template-columns: minmax(260px, 520px);
  gap: 18px;
  align-items: end;
  margin-top: 28px;
}

.area-tools label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.area-tools input {
  min-height: 50px;
  border: 1px solid #bfb9ae;
  border-radius: 4px;
  padding: 0 14px;
  background: #fbfaf6;
  font: inherit;
  font-weight: 700;
}

.area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tabs button {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #faf9f5;
  color: var(--black);
  font-weight: 950;
  cursor: pointer;
}

.area-tabs button[aria-pressed="true"] {
  border-color: var(--black);
  background: var(--orange);
  color: var(--white);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
  max-height: 560px;
  overflow: auto;
  padding-right: 8px;
}

.area-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #faf9f5;
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
}

.area-list a:hover {
  border-color: rgba(236, 91, 18, 0.75);
  background: var(--white);
}

.area-list strong {
  min-width: 0;
}

.area-list span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 950;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-process {
  padding-top: clamp(48px, 6vw, 82px);
  padding-bottom: clamp(48px, 6vw, 82px);
  background: #f7f5ef;
}

.service-process .process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 900px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 6px;
  background: var(--white);
  text-align: left;
}

.service-process .process-list div {
  position: relative;
  padding: 20px 18px;
  border-right: 1px solid rgba(5, 5, 5, 0.1);
  background: var(--white);
  box-shadow: none;
}

.service-process .process-list div:last-child {
  border-right: 0;
}

.service-process .process-list strong {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 0.88rem;
  line-height: 1.1;
  white-space: normal;
}

.service-process .process-list strong::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 2px solid var(--black);
  background: var(--orange);
  content: "";
  transform: skewX(-14deg);
}

.service-process .process-list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
}

.process-list div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--concrete);
  box-shadow: 0 16px 34px rgba(5, 5, 5, 0.08);
}

.process-list strong {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(320px, 460px);
  justify-content: center;
  gap: clamp(32px, 6vw, 56px);
  background:
    linear-gradient(135deg, rgba(236, 91, 18, 0.16), transparent 36%),
    var(--black);
  color: var(--white);
}

.contact-copy {
  max-width: 660px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 2px solid rgba(5, 5, 5, 0.92);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--soft-shadow), 0 8px 0 var(--orange);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfb9ae;
  border-radius: 4px;
  padding: 13px 14px;
  background: #fbfaf6;
  color: var(--black);
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 56px;
  margin-top: 4px;
  font-size: 1rem;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.45;
  text-transform: none;
}

.contact-cta {
  align-items: center;
}

.contact-cta .button {
  justify-self: start;
}

.site-footer {
  border-top: 4px solid var(--orange);
  background:
    linear-gradient(90deg, rgba(236, 91, 18, 0.08), transparent 42%),
    #080808;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(145px, 1fr));
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 70px) 30px;
}

.footer-brand img {
  display: block;
  width: min(300px, 100%);
  height: auto;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-brand .button {
  margin-top: 18px;
  padding: 13px 18px;
  font-size: 0.82rem;
}

.footer-rating {
  display: inline-flex;
  margin-top: 14px !important;
  padding: 7px 10px;
  border: 1px solid rgba(236, 91, 18, 0.55);
  color: var(--white) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 7px;
  color: var(--orange-hot);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.2;
}

.footer-column a:hover {
  color: var(--orange-hot);
}

.footer-contact {
  gap: 10px;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.footer-contact .social-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  background: #1877f2;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  text-transform: none;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.34);
}

.footer-contact .social-icon:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.admin-portal-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.34);
}

.admin-portal-link:hover {
  transform: translateY(-1px);
  background: var(--orange-hot);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 18px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.36);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 132px clamp(22px, 4.5vw, 70px) 58px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.78), rgba(8, 8, 8, 0.64) 46%, rgba(8, 8, 8, 0.42)),
    repeating-linear-gradient(112deg, rgba(236, 91, 18, 0.1) 0 7px, transparent 7px 42px),
    var(--hero-photo, linear-gradient(#111, #111)),
    #111;
  background-position: center;
  background-size: auto, auto, cover, auto;
}

.service-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(236, 91, 18, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.12) 0%, rgba(236, 91, 18, 0.05) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.24) 100%);
  content: "";
}

.service-hero > * {
  position: relative;
  z-index: 2;
}

.service-hero .hero-callout {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.service-hero .hero-callout span {
  color: var(--orange-hot);
}

.service-hero .hero-callout strong {
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.25;
}

.service-hero h1 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 0.92;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.42);
}

.service-hero .hero-copy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.service-hero .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.back-link::before {
  content: "<";
  margin-right: 8px;
  color: var(--orange);
}

.content-quote-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px clamp(22px, 5vw, 70px);
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
  background: #101010;
  color: var(--white);
  text-align: center;
}

.content-quote-bar span {
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.35;
}

.content-quote-bar .button {
  min-height: 48px;
  padding-inline: 26px;
  white-space: nowrap;
}

.content-quote-bar-bottom {
  margin-top: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 18px;
  background:
    linear-gradient(180deg, var(--white) 0%, #fbfaf6 100%);
  text-align: center;
}

.service-detail h2 {
  max-width: 760px;
  margin: 0 auto;
}

.service-detail > .section-kicker,
.faq-section > .section-kicker,
.process > .section-kicker,
.state-area-section > .section-kicker {
  text-align: center;
}

.service-detail > div:not(.section-kicker),
.faq-section > div:not(.section-kicker),
.process > div:not(.section-kicker),
.state-area-section > div:not(.section-kicker) {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 22px auto 28px;
  padding: 0;
  list-style: none;
  max-width: 900px;
}

.scope-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(236, 91, 18, 0.24);
  background: #fff7f0;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.18;
  box-shadow: 0 8px 18px rgba(5, 5, 5, 0.06);
}

.scope-list li::before {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--black);
  background: var(--orange);
  content: "";
  transform: translateY(-50%) skewX(-14deg);
}

.combo-section {
  max-width: 860px;
  margin: 36px auto 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(5, 5, 5, 0.045);
}

.combo-search {
  display: grid;
  gap: 8px;
  max-width: 460px;
  margin: 12px auto 20px;
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  text-align: left;
}

.combo-search input {
  min-height: 50px;
  border: 1px solid #bfb9ae;
  border-radius: 4px;
  padding: 0 14px;
  background: #fbfaf6;
  font: inherit;
  font-weight: 700;
}

.combo-link-grid,
.combo-backlinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px auto 0;
  max-height: 340px;
  overflow: auto;
  padding-right: 8px;
  max-width: 860px;
}

.combo-backlinks {
  max-height: none;
}

.combo-link-grid a,
.combo-backlinks a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #faf9f5;
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
}

.combo-link-grid a:hover,
.combo-backlinks a:hover {
  border-color: rgba(236, 91, 18, 0.75);
  background: var(--white);
}

.combo-link-grid span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 950;
}

.seo-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-left: 6px solid var(--orange);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 5, 5, 0.05);
  text-align: left;
}

.seo-copy h3 {
  margin: 26px 0 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  color: var(--black);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  font-weight: 950;
  line-height: 1.12;
  text-transform: uppercase;
}

.seo-copy h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.seo-copy p,
.faq-list p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.seo-copy p {
  margin: 0 0 14px;
}

.seo-copy p:last-child {
  margin-bottom: 0;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 840px;
  margin-inline: auto;
  text-align: left;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 7px 16px rgba(5, 5, 5, 0.035);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 18px 56px 18px 20px;
  color: var(--black);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(236, 91, 18, 0.55);
  border-radius: 4px;
  color: var(--orange);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #fff8f3;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 16px 20px 0;
}

.faq-list details p:last-child {
  padding-bottom: 22px;
}

.landmark-section {
  background:
    linear-gradient(135deg, rgba(236, 91, 18, 0.05), transparent 42%),
    #fbfaf6;
}

.landmark-section h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.04;
  text-align: center;
}

.landmark-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 18px auto 0;
}

.landmark-list a {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  background: var(--concrete);
  box-shadow: 0 8px 18px rgba(5, 5, 5, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.landmark-list a:hover {
  border-color: rgba(236, 91, 18, 0.75);
  box-shadow: 0 18px 38px rgba(5, 5, 5, 0.12);
  transform: translateY(-2px);
}

.landmark-list strong {
  color: var(--black);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.landmark-list span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.blog-index-section {
  background: var(--concrete);
}

.blog-tools {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto 26px;
}

.blog-tools strong {
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
}

.blog-tools label {
  display: grid;
  gap: 8px;
  max-width: 620px;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-tools input {
  min-height: 52px;
  border: 2px solid rgba(5, 5, 5, 0.8);
  border-radius: 4px;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filters button {
  min-height: 38px;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-filters button.active {
  border-color: var(--black);
  background: var(--orange);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.blog-card a {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.06);
}

.blog-card span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.08;
}

.blog-card p,
.blog-content p {
  color: var(--muted);
  line-height: 1.7;
}

.blog-article {
  background: var(--white);
}

.blog-content,
.blog-related {
  max-width: 920px;
  margin: 0 auto 34px;
}

.blog-content h2,
.blog-related h2 {
  margin-top: 30px;
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.blog-content a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
}

.blog-card[hidden] {
  display: none;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .hero,
  .proof,
  .service-hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services,
  .service-directory,
  .landmark-list,
  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .service-process .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process .process-list div {
    border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  }

  .service-process .process-list div:nth-child(2n) {
    border-right: 0;
  }

  .service-process .process-list div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .nav-menu {
    left: 0;
    width: min(620px, 88vw);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translate(0, 10px);
  }

  .rentals-menu {
    width: min(260px, 78vw);
    grid-template-columns: 1fr;
  }

  .front-services-menu {
    width: min(520px, 88vw);
    grid-template-columns: 1fr;
  }

  .areas-menu {
    width: min(320px, 78vw);
    grid-template-columns: 1fr;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    transform: translate(0, 0);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    grid-template-columns: 1fr auto;
    align-items: center;
    align-content: start;
    gap: 12px 10px;
    max-height: 100vh;
    min-height: 88px;
    overflow-y: auto;
    padding: 13px 16px;
    box-shadow: 0 8px 24px rgba(5, 5, 5, 0.1);
  }

  .mobile-nav-actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
  }

  .brand img {
    width: auto !important;
    max-width: min(224px, calc(100vw - 142px));
    height: 56px !important;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    border-radius: 7px;
    line-height: 1;
    box-shadow: 0 4px 0 rgba(5, 5, 5, 0.22);
  }

  .site-header.nav-open .nav-toggle {
    background: var(--black);
    box-shadow: 0 4px 0 rgba(236, 91, 18, 0.52);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header-cart-link.mobile-header-cart-link {
    display: inline-grid;
    width: 44px;
    height: 44px;
  }

  .header-cart-link.mobile-header-cart-link[hidden] {
    display: none;
  }

  .header-cart-link.mobile-header-cart-link svg {
    width: 22px;
    height: 22px;
  }

  .site-header nav {
    display: none;
    width: min(360px, 100%);
    gap: 8px;
    justify-self: end;
    overflow: visible;
    justify-content: end;
    justify-items: end;
    padding: 12px 0 0;
    border-top: 1px solid rgba(5, 5, 5, 0.12);
    text-align: right;
  }

  .site-header.nav-open nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
  }

  .site-header nav a,
  .nav-dropdown > a {
    display: block;
    padding: 12px 0;
    line-height: 1.1;
  }

  .nav-dropdown {
    width: 100%;
    justify-self: end;
  }

  .nav-dropdown > a {
    display: inline-block;
    font-size: 0.95rem;
  }

  .nav-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 0 0 10px;
    padding: 8px;
    border: 1px solid rgba(5, 5, 5, 0.14);
    border-radius: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    text-align: right;
  }

  .nav-menu a {
    padding: 11px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    line-height: 1.15;
    overflow-wrap: normal;
    word-break: normal;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu,
  .site-header.nav-open .nav-menu {
    display: none;
  }

  .site-header.nav-open .nav-dropdown.dropdown-open .nav-menu {
    display: grid;
  }

  .site-header.nav-open .nav-menu[aria-label="Service pages"] {
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .nav-menu[aria-label="Service pages"] a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 9px 10px;
    font-size: clamp(0.66rem, 2.55vw, 0.76rem);
    text-align: right;
  }

  .site-header.nav-open .nav-dropdown.dropdown-open > a::after {
    transform: skewX(-18deg) scaleX(1);
  }

  .nav-dropdown::after {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    width: 100%;
    max-width: 260px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .header-actions {
    display: none;
    width: min(360px, 100%);
    justify-self: end;
    justify-content: end;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(5, 5, 5, 0.12);
  }

  .site-header.nav-open .header-actions {
    display: flex;
  }

  .header-actions .header-cart-link {
    display: none;
  }

  .header-cart-link {
    width: 44px;
    height: 44px;
  }

  .header-cart-link svg {
    width: 22px;
    height: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 20px 26px;
    text-align: left;
  }

  .footer-brand img {
    width: min(250px, 82vw);
  }

  .footer-brand .button {
    width: auto;
    max-width: 260px;
  }

  .footer-bottom {
    display: grid;
    padding: 18px 20px 22px;
  }

  .footer-bottom div {
    display: grid;
    gap: 10px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 148px 18px 38px;
  }

  .hero-callout {
    align-self: start;
    margin-top: 18px;
    max-width: 100%;
  }

  .hero-form {
    align-self: start;
    margin-top: 2px;
    max-width: 100%;
    padding: 18px;
  }

  .hero-mark {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.75rem);
    text-shadow: 0 4px 0 rgba(236, 91, 18, 0.38);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.6rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  h3 {
    font-size: clamp(1rem, 5.2vw, 1.22rem);
    line-height: 1.12;
  }

  .section-kicker,
  .eyebrow {
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4.15rem);
    line-height: 0.88;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    max-width: 340px;
    gap: 14px;
    margin: 34px auto 0;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 340px;
    min-height: 56px;
    font-size: 0.98rem;
  }

  .service-hero {
    min-height: auto;
    padding: 124px 18px 42px;
  }

  .service-hero.rentals-hero {
    min-height: 315px;
    padding: 112px 18px 38px;
    background-position: center, center, center 56%, center;
    background-size: cover;
  }

  .service-hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.8vw, 3.15rem);
    line-height: 0.96;
    text-wrap: balance;
  }

  .rentals-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }

  .ticker,
  .services,
  .services-section,
  .service-directory,
  .blog-grid,
  .landmark-list,
  .dumpster-rental-layout,
  .intro-section,
  .rentals-panel,
  .process,
  .process-list,
  .service-areas,
  .about-section,
  .state-area-section,
  .state-directory,
  .area-tools,
  .area-list,
  .combo-link-grid,
  .combo-backlinks,
  .service-detail,
  .field-photo-layout,
  .project-photo-grid,
  .scope-list,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .field-photo-copy {
    max-width: 100%;
    text-align: center;
  }

  .seo-copy {
    max-width: 100%;
    padding: 18px;
    border-left-width: 4px;
  }

  .seo-copy h3 {
    margin-top: 22px;
    padding-top: 16px;
  }

  .combo-section {
    margin-top: 28px;
    padding: 18px;
  }

  .field-photo-card,
  .project-photo-card {
    box-shadow: 0 14px 28px rgba(5, 5, 5, 0.14), 0 5px 0 var(--orange);
  }

  .field-photo-card figcaption,
  .project-photo-card figcaption {
    position: static;
    background: var(--black);
    text-align: left;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process-list div {
    padding: 18px 10px;
  }

  .process-list strong {
    font-size: clamp(0.82rem, 3.4vw, 1.04rem);
  }

  .process-list p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .service-process {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .service-process .process-list div,
  .service-process .process-list div:nth-child(2n),
  .service-process .process-list div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  }

  .service-process .process-list div:last-child {
    border-bottom: 0;
  }

  .service-process .process-list strong {
    font-size: 0.9rem;
  }

  .dumpster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dumpster-card {
    min-height: 214px;
    gap: 9px;
    padding: 10px 8px;
  }

  .dumpster-icon {
    min-height: 88px;
  }

  .dumpster-icon img {
    max-width: 134px;
    height: 88px;
  }

  .dumpster-card h3 {
    margin-top: 4px;
    font-size: clamp(0.72rem, 3vw, 0.9rem);
    line-height: 1.08;
  }

  .dumpster-quantity {
    grid-template-columns: 34px 38px 34px;
    gap: 5px;
  }

  .dumpster-quantity button,
  .dumpster-quantity strong {
    min-height: 36px;
  }

  .content-quote-bar {
    align-items: center;
    flex-direction: column;
    padding: 20px 18px;
  }

  .content-quote-bar .button {
    width: 100%;
    max-width: 260px;
    min-height: 52px;
  }

  .ticker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 18px;
    border: 0;
    background: #050505;
  }

  .ticker span,
  .services article {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.2);
  }

  .ticker span {
    min-height: 126px;
    border: 2px solid rgba(5, 5, 5, 0.72);
    border-radius: 4px;
    background: var(--orange);
    font-size: clamp(0.62rem, 2.45vw, 0.84rem);
    letter-spacing: 0;
    line-height: 1.05;
    white-space: normal;
    text-wrap: balance;
  }

  .ticker span::before {
    font-size: 2.15rem;
  }

  .ticker .mobile-only-ticker {
    display: grid;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-cta .button {
    justify-self: center;
    width: 100%;
    max-width: 320px;
    min-height: 54px;
  }

  .section,
  .proof,
  .process,
  .contact-section {
    padding: 54px 18px;
  }

  .scope-list {
    gap: 8px;
    margin: 18px auto 24px;
  }

  .scope-list li,
  .service-directory a,
  .state-directory a {
    min-height: auto;
  }

  .scope-list li {
    padding: 12px 12px 12px 38px;
    font-size: 0.86rem;
  }

  .scope-list li::before {
    left: 12px;
    width: 12px;
    height: 12px;
  }

  .combo-link-grid,
  .combo-backlinks,
  .area-list {
    padding-right: 0;
  }

  .combo-link-grid a,
  .combo-backlinks a {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    min-width: 0;
    text-align: center;
  }

  .landmark-list a,
  .faq-list summary,
  .scope-list li {
    min-width: 0;
  }

  .landmark-list strong {
    font-size: 0.94rem;
    line-height: 1.12;
  }

  .seo-copy p,
  .faq-list p,
  .landmark-list span {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}
