:root {
  --green: #68ad49;
  --green-dark: #4b8734;
  --green-pale: #dfead8;
  --ink: #17191b;
  --ink-soft: #24282b;
  --ink-deep: #0f1214;
  --paper: #f1efe9;
  --paper-warm: #e7e3db;
  --white: #ffffff;
  --muted: #61666a;
  --steel: #6e858c;
  --line: rgba(20, 23, 25, .14);
  --line-light: rgba(255, 255, 255, .14);
  --shadow: 0 18px 45px rgba(0, 0, 0, .17);
  --container: 1240px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section { padding: 78px 0; }
.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 20% 15%, rgba(104, 173, 73, .09), transparent 28%),
    linear-gradient(135deg, #181d20 0%, #0f1315 72%, #151a1d 100%);
  color: var(--white);
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 19, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.22), transparent 30%),
    linear-gradient(145deg, #28332b, #121617 70%);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  color: var(--white);
  box-shadow: inset 0 0 0 4px rgba(104, 173, 73, .12);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font: 700 22px/1 Oswald, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.brand-copy small {
  margin-top: 5px;
  color: rgba(255,255,255,.65);
  font: 500 9px/1 Oswald, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}
.primary-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font: 600 12px/1 Oswald, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--green); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.1;
}
.header-phone .icon-circle { color: var(--green); }
.header-phone span:last-child { display: grid; }
.header-phone strong {
  font: 600 13px Oswald, sans-serif;
  letter-spacing: .05em;
}
.header-phone small {
  margin-top: 3px;
  color: var(--green);
  font: 500 8px Oswald, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font: 600 12px/1 Oswald, sans-serif;
  letter-spacing: .095em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover,
.button:focus-visible { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.button-small { min-height: 38px; padding: 0 16px; font-size: 10px; }
.button-outline { background: transparent; color: var(--green-dark); }
.button-outline:hover { color: var(--white); background: var(--green); }
.button-dark-outline { background: rgba(0,0,0,.2); border-color: rgba(255,255,255,.33); }
.button-dark-outline:hover { border-color: var(--green); background: rgba(104,173,73,.12); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #15191b;
}
.hero-visual,
.allocation-visual {
  position: absolute;
  inset: 0;
}
.hero-visual {
  left: 35%;
  background:
    radial-gradient(circle at 72% 16%, rgba(215, 224, 231, .62), transparent 31%),
    linear-gradient(160deg, #50585e 0%, #808486 25%, #957c5e 54%, #3b3026 100%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,15,17,.92) 0%, rgba(12,15,17,.89) 35%, rgba(12,15,17,.65) 56%, rgba(12,15,17,.11) 83%, rgba(12,15,17,.31) 100%),
    linear-gradient(0deg, rgba(0,0,0,.41), transparent 46%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 630px; padding: 86px 0 88px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font: 600 11px/1.2 Oswald, sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.64); }
.hero .eyebrow { display: flex; align-items: center; gap: 12px; }
.hero .eyebrow span { width: 25px; height: 2px; background: var(--green); }
h1, h2, h3 { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  max-width: 12.5ch;
  font: 700 clamp(54px, 6vw, 84px)/.96 Oswald, sans-serif;
  letter-spacing: .005em;
  text-transform: uppercase;
}
h1 em,
h2 em { color: var(--green); font-style: normal; }
.hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.contact-button {
  min-width: 205px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--green);
  background: rgba(10,12,13,.32);
  color: var(--white);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.contact-button:last-child { min-width: 255px; }
.contact-button:hover { background: rgba(104,173,73,.12); transform: translateY(-1px); }
.contact-icon { color: var(--green); font-size: 20px; }
.contact-button span:last-child { display: grid; line-height: 1.15; }
.contact-button strong { font: 600 17px Oswald, sans-serif; letter-spacing: .025em; }
.contact-button small {
  margin-top: 4px;
  color: rgba(255,255,255,.56);
  font: 500 8px Oswald, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.image-placeholder { overflow: hidden; isolation: isolate; }
.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 9px, rgba(255,255,255,.018) 9px 10px),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.25));
  mix-blend-mode: overlay;
}
.placeholder-grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.placeholder-caption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(11,14,15,.48);
  color: rgba(255,255,255,.7);
  font: 500 8px Oswald, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.placeholder-dune,
.placeholder-stockpile,
.allocation-pile {
  position: absolute;
  z-index: 0;
  border-radius: 55% 45% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 32% 18%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(155deg, #c0a476 0%, #8f6f47 56%, #5f482f 100%);
  filter: saturate(.72);
  box-shadow: inset -32px -24px 60px rgba(58,39,20,.18);
}
.dune-one { width: 54%; height: 38%; right: 8%; bottom: 13%; transform: skewX(-8deg); }
.dune-two { width: 38%; height: 27%; right: 38%; bottom: 12%; opacity: .88; }
.placeholder-machine { position: absolute; z-index: 2; bottom: 11%; background: #23282a; box-shadow: 0 16px 30px rgba(0,0,0,.28); }
.machine-loader { right: 36%; width: 120px; height: 58px; clip-path: polygon(0 45%, 19% 15%, 63% 12%, 75% 35%, 100% 45%, 100% 100%, 0 100%); background: linear-gradient(140deg,#bd8f32,#5c4318); }
.machine-loader::before,
.machine-loader::after,
.machine-truck::before,
.machine-truck::after { content: ""; position: absolute; bottom: -14px; width: 30px; height: 30px; border-radius: 50%; background: #121516; border: 5px solid #343a3c; }
.machine-loader::before { left: 18px; }
.machine-loader::after { right: 14px; }
.machine-truck { right: 9%; width: 185px; height: 62px; clip-path: polygon(0 15%, 63% 15%, 63% 42%, 78% 42%, 86% 58%, 100% 58%, 100% 100%, 0 100%); background: linear-gradient(150deg,#d5d7d2,#6e7373); }
.machine-truck::before { left: 34px; }
.machine-truck::after { right: 28px; }

.status-rail {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, #1b2124, #101416 64%, #1b2124);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.status-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.status-item {
  min-height: 82px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px dotted rgba(255,255,255,.2);
}
.status-item:first-child { border-left: 0; }
.status-item svg { width: 28px; height: 28px; flex: 0 0 auto; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linejoin: round; stroke-linecap: round; }
.status-item span { display: grid; line-height: 1.15; }
.status-item strong { font: 600 13px Oswald, sans-serif; letter-spacing: .07em; text-transform: uppercase; }
.status-item small { margin-top: 4px; color: rgba(255,255,255,.62); font: 500 9px Oswald, sans-serif; letter-spacing: .11em; text-transform: uppercase; }

.operations { background: linear-gradient(115deg, #f3f1ec, #eae6de 100%); }
.operations-grid { display: grid; grid-template-columns: 1.15fr .9fr .72fr; gap: 34px; align-items: stretch; }
.media-placeholder {
  position: relative;
  min-height: 385px;
  background: linear-gradient(135deg, #8f7a5a 0%, #c8b38f 45%, #626965 100%);
  box-shadow: var(--shadow);
}
.operations-image { background: linear-gradient(160deg, #596266 0%, #a99779 34%, #c2aa7c 60%, #5c5143 100%); }
.placeholder-road { position: absolute; z-index: 1; width: 130%; height: 31%; left: -15%; bottom: -2%; background: linear-gradient(160deg, #474746, #a68a63); transform: rotate(-8deg); }
.placeholder-stockpile { bottom: 18%; }
.stockpile-one { left: 8%; width: 58%; height: 31%; }
.stockpile-two { right: 2%; width: 42%; height: 25%; opacity: .92; }
.placeholder-conveyor { position: absolute; z-index: 2; left: 36%; bottom: 22%; width: 54%; height: 14px; background: linear-gradient(#23282a,#626b6d); transform: rotate(-24deg); transform-origin: left center; box-shadow: 0 0 0 4px rgba(24,28,29,.22); }
.placeholder-conveyor::after { content:""; position:absolute; right:0; top:-46px; width:18px; height:56px; background:#303637; }
.operations-copy { padding: 12px 0; }
h2 {
  margin-bottom: 20px;
  font: 700 clamp(34px, 4vw, 50px)/1.04 Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .005em;
}
.operations-copy p:not(.eyebrow),
.product-copy p,
.coverage-copy > p:not(.eyebrow),
.allocation-copy > p:not(.eyebrow) { color: var(--muted); margin: 0 0 17px; }
.operations-copy .button { margin-top: 14px; }
.spec-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(104,173,73,.12), transparent 28%),
    linear-gradient(145deg, #262d30, #181d20);
  color: var(--white);
  border-top: 2px solid var(--green);
  box-shadow: var(--shadow);
}
.spec-card { padding: 26px 28px; }
.card-label {
  margin: 0 0 16px;
  color: var(--green);
  font: 600 10px Oswald, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.spec-card dl { margin: 0; }
.spec-card dl > div { padding: 12px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.11); }
.spec-card dl > div:last-child { border-bottom: 0; }
.spec-card dt { color: rgba(255,255,255,.59); font-size: 12px; }
.spec-card dd { margin: 0; text-align: right; font: 500 12px/1.45 Oswald, sans-serif; letter-spacing: .02em; }

.process { padding: 66px 0 72px; }
.section-heading.centered { text-align: center; position: relative; z-index: 2; }
.section-heading.centered h2 { margin-bottom: 0; }
.process-grid {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}
.process-line {
  position: absolute;
  left: 16%;
  right: 16%;
  margin-top: 89px;
  height: 2px;
  border-top: 2px dashed rgba(104,173,73,.72);
}
.process-grid li { text-align: center; }
.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: #182024;
  font: 600 18px Oswald, sans-serif;
  box-shadow: 0 0 0 5px rgba(104,173,73,.08);
}
.process-grid h3 { min-height: 50px; margin-bottom: 8px; font: 600 15px/1.25 Oswald, sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.process-grid p { max-width: 170px; margin: 0 auto; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }

.product { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: .8fr 1.3fr; gap: 66px; align-items: center; }
.product-copy { padding-left: 26px; }
.product-image { min-height: 350px; background: linear-gradient(140deg, #435059 0%, #9b8c72 44%, #c49e67 65%, #5a422d 100%); }
.placeholder-belt { position: absolute; z-index: 2; width: 88%; height: 76px; right: -12%; top: 7%; transform: rotate(14deg); transform-origin: right center; background: linear-gradient(180deg,#1e2426,#5c6465 34%,#1b2022 36%,#090b0c 100%); clip-path: polygon(0 24%,100% 0,100% 69%,0 100%); }
.placeholder-pour { position: absolute; z-index: 1; right: 27%; top: 32%; width: 180px; height: 58%; background: linear-gradient(90deg, rgba(205,171,117,.05),#d0a974 42%,#967047 100%); clip-path: polygon(20% 0,100% 0,68% 100%,0 100%); filter: blur(.2px); }
.placeholder-sandbed { position: absolute; left: -5%; right: -5%; bottom: -20%; height: 58%; border-radius: 50% 50% 0 0; background: linear-gradient(140deg,#d0b286,#8b6946); }

.coverage { padding: 70px 0; }
.coverage-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; align-items: center; }
.coverage-copy h2 { margin-bottom: 18px; }
.coverage-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.coverage-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.coverage-list li { display: grid; grid-template-columns: 25px 1fr; grid-template-rows: auto auto; align-items: center; }
.coverage-list li > span { grid-row: 1 / 3; color: var(--green); font-size: 14px; }
.coverage-list strong { font: 600 12px Oswald, sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.coverage-list small { color: rgba(255,255,255,.46); font-size: 10px; }
.service-map { min-height: 420px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.06); background: radial-gradient(circle at 52% 50%, rgba(104,173,73,.06), transparent 50%); }
.map-county { fill: rgba(255,255,255,.72); font: 600 23px Oswald, sans-serif; letter-spacing: .08em; }
.map-yard { fill: #68ad49; font: 600 20px Oswald, sans-serif; letter-spacing: .12em; }
.map-title { fill: #68ad49; font: 600 17px Oswald, sans-serif; letter-spacing: .14em; }

.allocation {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #131719;
}
.allocation-visual { left: 49%; background: linear-gradient(165deg,#252e32,#677277 28%,#7a6040 65%,#2a221a 100%); }
.allocation-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,#101416 0%,#101416 47%,rgba(16,20,22,.82) 63%,rgba(16,20,22,.25) 100%); }
.allocation-inner { position: relative; z-index: 3; display: grid; grid-template-columns: .48fr 1fr; gap: 42px; align-items: center; }
.year-display { color: var(--green); font: 700 clamp(110px,14vw,190px)/.8 Oswald, sans-serif; letter-spacing: -.04em; opacity: .9; text-shadow: 0 8px 40px rgba(0,0,0,.3); }
.allocation-copy { max-width: 600px; padding: 52px 0; }
.allocation-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.allocation-lights { position:absolute; inset:0; background: radial-gradient(circle at 72% 17%,rgba(255,236,161,.45),transparent 2%),radial-gradient(circle at 82% 23%,rgba(255,236,161,.35),transparent 1.5%),radial-gradient(circle at 61% 28%,rgba(255,236,161,.3),transparent 1.4%); }
.allocation-pile { bottom: -8%; height: 50%; }
.allocation-pile.one { left: 8%; width: 57%; }
.allocation-pile.two { right: -5%; width: 54%; opacity: .85; }

.request { background: linear-gradient(110deg,#f3f1ec,#e9e5dd); }
.request-grid { display: grid; grid-template-columns: 1.5fr .55fr; gap: 48px; align-items: start; }
.form-intro { margin-top: -9px; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 26px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: span 2; }
.field-full { grid-column: 1 / -1; }
.field > span { color: #303537; font: 600 9px Oswald, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c9c5bc;
  border-radius: 0;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(104,173,73,.13); }
.field textarea { resize: vertical; min-height: 95px; }
.field .invalid { border-color: #9b4436; }
.check-field { margin: 17px 0; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.check-field input { accent-color: var(--green); }
.submit-button { width: 43%; min-width: 210px; float: right; }
.form-note { clear: both; margin: 13px 0 0; color: #888b8c; font-size: 10px; }
.form-status { display: none; clear: both; margin-top: 16px; padding: 12px 14px; border-left: 3px solid var(--green); background: var(--green-pale); font-size: 13px; }
.form-status.is-visible { display: block; }
.contact-card { padding: 30px 27px; }
.contact-detail { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--white); text-decoration: none; }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail > span:first-child { color: var(--green); font-size: 18px; line-height: 1.2; }
.contact-detail > span:last-child { display: grid; }
.contact-detail strong { font: 600 15px Oswald, sans-serif; letter-spacing: .03em; text-transform: uppercase; }
.contact-detail small { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.45; }

.site-footer { background: #0e1113; color: var(--white); border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
.footer-inner { display: grid; grid-template-columns: .75fr 1.25fr 1fr; gap: 35px; align-items: center; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-copy strong { font-size: 18px; }
.footer-contact { color: rgba(255,255,255,.56); font-size: 11px; }
.footer-contact p { margin: 2px 0; }
.copyright { margin: 0; text-align: right; color: rgba(255,255,255,.45); font-size: 10px; }

@media (max-width: 1120px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 11px; }
  .header-phone { display: none; }
  .operations-grid { grid-template-columns: 1.05fr 1fr; }
  .spec-card { grid-column: 1 / -1; }
  .spec-card dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 24px; }
  .product-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 62px 0; }
  .menu-toggle { display: block; order: 3; }
  .header-actions { margin-left: auto; padding-left: 0; border-left: 0; order: 2; }
  .header-actions .button { display: none; }
  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    bottom: 0;
    padding: 35px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12,15,17,.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .primary-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; }
  .hero { min-height: 640px; }
  .hero-visual { left: 12%; }
  .hero-shade { background: linear-gradient(90deg,rgba(12,15,17,.91),rgba(12,15,17,.78) 60%,rgba(12,15,17,.48)); }
  .status-grid { grid-template-columns: repeat(3,1fr); }
  .status-item:nth-child(4), .status-item:nth-child(5) { border-top: 1px dotted rgba(255,255,255,.2); }
  .operations-grid,
  .product-grid,
  .coverage-grid,
  .request-grid { grid-template-columns: 1fr; }
  .operations-grid { gap: 26px; }
  .operations-copy { padding: 8px 0; }
  .spec-card { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(3,1fr); row-gap: 34px; }
  .process-line { display: none; }
  .product-copy { padding-left: 0; }
  .product-image { order: -1; }
  .coverage-grid { gap: 30px; }
  .service-map { min-height: 330px; }
  .allocation-inner { grid-template-columns: .6fr 1fr; }
  .field-grid { grid-template-columns: repeat(2,1fr); }
  .field-wide { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 690px; }
  .hero-copy { padding: 70px 0 72px; }
  h1 { font-size: clamp(50px,15vw,67px); }
  h2 { font-size: 38px; }
  .hero-visual { left: 0; opacity: .72; }
  .hero-shade { background: linear-gradient(90deg,rgba(12,15,17,.91),rgba(12,15,17,.76) 82%,rgba(12,15,17,.61)); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .contact-button { width: 100%; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-item { min-height: 76px; padding: 13px 14px; }
  .status-item:nth-child(3) { border-top: 1px dotted rgba(255,255,255,.2); }
  .status-item:last-child { grid-column: 1 / -1; }
  .operations-grid { display: flex; flex-direction: column; }
  .operations-image { min-height: 310px; }
  .spec-card dl { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:last-child { grid-column: 1 / -1; }
  .product-image { min-height: 290px; }
  .coverage { padding: 58px 0; }
  .service-map { min-height: 260px; }
  .map-county { font-size: 18px; }
  .map-yard { font-size: 16px; }
  .allocation { min-height: 470px; }
  .allocation-visual { left: 0; opacity: .55; }
  .allocation-shade { background: linear-gradient(180deg,rgba(16,20,22,.95),rgba(16,20,22,.85)); }
  .allocation-inner { grid-template-columns: 1fr; gap: 0; }
  .year-display { padding-top: 45px; font-size: 120px; }
  .allocation-copy { padding: 12px 0 55px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide, .field-full { grid-column: auto; }
  .submit-button { width: 100%; float: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   FIDELITY PASS 2
   Desktop proportions follow the approved homepage mockup.
   ========================================================= */

:root {
  --container: 1360px;
  --header-height: 100px;
}

h1, h2, h3,
.brand-copy strong,
.brand-copy small,
.primary-nav a,
.header-phone strong,
.header-phone small,
.button,
.eyebrow,
.contact-button strong,
.contact-button small,
.status-item strong,
.status-item small,
.card-label,
.spec-card dd,
.process-grid h3,
.map-county,
.map-yard,
.map-title,
.field > span,
.contact-detail strong {
  font-family: Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif;
}

.placeholder-caption { display: none; }

@media (min-width: 1121px) {
  .container {
    width: min(calc(100% - 80px), var(--container));
  }

  .site-header {
    height: 100px;
    position: relative;
    backdrop-filter: none;
  }

  .header-inner {
    gap: 30px;
  }

  .brand {
    gap: 13px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-width: 3px;
  }

  .brand-copy strong {
    font-size: 29px;
    letter-spacing: .105em;
  }

  .brand-copy small {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: .22em;
  }

  .primary-nav {
    gap: 31px;
  }

  .primary-nav a {
    font-size: 13px;
    letter-spacing: .055em;
  }

  .header-actions {
    gap: 18px;
    padding-left: 21px;
  }

  .header-phone strong {
    font-size: 14px;
  }

  .header-phone small {
    font-size: 9px;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .hero {
    height: 616px;
    min-height: 616px;
  }

  .hero-visual {
    left: 39%;
    background:
      radial-gradient(ellipse at 74% 9%, rgba(246, 248, 248, .7) 0%, rgba(213, 219, 220, .38) 22%, transparent 47%),
      linear-gradient(180deg, #81898d 0%, #a8aa9f 39%, #b9a07c 40%, #826c51 72%, #594b3c 100%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #0e1214 0%, #0e1214 35%, rgba(14,18,20,.94) 43%, rgba(14,18,20,.6) 60%, rgba(14,18,20,.12) 82%, rgba(14,18,20,.28) 100%),
      linear-gradient(0deg, rgba(0,0,0,.45), transparent 50%);
  }

  .hero-copy {
    width: 610px;
    max-width: 610px;
    padding: 54px 0 50px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
  }

  h1 {
    width: 610px;
    max-width: none;
    margin-bottom: 20px;
    font-size: 91px;
    line-height: .91;
    letter-spacing: .01em;
  }

  .hero-lead {
    max-width: 540px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 25px;
    gap: 18px;
  }

  .contact-button {
    min-width: 218px;
    padding: 13px 17px;
  }

  .contact-button:last-child {
    min-width: 250px;
  }

  .contact-button strong {
    font-size: 18px;
  }

  .status-rail {
    height: 98px;
  }

  .status-grid,
  .status-item {
    height: 100%;
  }

  .status-item {
    min-height: 0;
    padding: 16px 24px;
    gap: 16px;
  }

  .status-item svg {
    width: 34px;
    height: 34px;
  }

  .status-item strong {
    font-size: 14px;
  }

  .status-item small {
    font-size: 10px;
  }

  .operations {
    height: 459px;
    padding: 27px 0;
  }

  .operations-grid {
    height: 405px;
    grid-template-columns: 500px minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: stretch;
  }

  .media-placeholder {
    min-height: 0;
    height: 100%;
    box-shadow: none;
  }

  .operations-copy {
    padding: 14px 0 8px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 47px;
    line-height: .98;
  }

  .operations-copy p:not(.eyebrow),
  .product-copy p,
  .coverage-copy > p:not(.eyebrow),
  .allocation-copy > p:not(.eyebrow) {
    margin-bottom: 13px;
    font-size: 13px;
    line-height: 1.55;
  }

  .operations-copy .button {
    margin-top: 6px;
  }

  .button {
    min-height: 41px;
    padding-inline: 20px;
    font-size: 10px;
  }

  .spec-card {
    padding: 25px 28px;
    box-shadow: none;
  }

  .card-label {
    margin-bottom: 10px;
  }

  .spec-card dl > div {
    padding: 10px 0;
  }

  .spec-card dt,
  .spec-card dd {
    font-size: 12px;
  }

  .process {
    height: 370px;
    padding: 35px 0 30px;
  }

  .process .section-heading h2 {
    font-size: 43px;
  }

  .process-grid {
    margin-top: 30px;
    gap: 24px;
  }

  .process-line {
    left: 15%;
    right: 15%;
    margin-top: 81px;
  }

  .step-number {
    width: 43px;
    height: 43px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .process-grid h3 {
    min-height: 43px;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .process-grid p {
    max-width: 155px;
    font-size: 11px;
    line-height: 1.42;
  }

  .product {
    height: 384px;
    padding: 36px 0;
  }

  .product-grid {
    height: 312px;
    grid-template-columns: 450px minmax(0, 1fr);
    gap: 80px;
  }

  .product-copy {
    padding-left: 0;
  }

  .product-copy h2 {
    font-size: 48px;
  }

  .product-image {
    height: 312px;
    min-height: 0;
  }

  .coverage {
    height: 393px;
    padding: 31px 0;
  }

  .coverage-grid {
    height: 331px;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 54px;
  }

  .coverage-copy h2 {
    font-size: 48px;
    margin-bottom: 13px;
  }

  .coverage-list {
    margin-top: 18px;
    gap: 9px;
  }

  .coverage-list strong {
    font-size: 11px;
  }

  .coverage-list small {
    font-size: 9px;
  }

  .service-map {
    min-height: 0;
    height: 331px;
  }

  .service-map svg {
    width: 100%;
    height: 100%;
  }

  .allocation {
    height: 302px;
    min-height: 302px;
  }

  .allocation-inner {
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 35px;
  }

  .year-display {
    font-size: 176px;
  }

  .allocation-copy {
    max-width: 590px;
    padding: 35px 0;
  }

  .allocation-copy h2 {
    font-size: 47px;
    margin-bottom: 12px;
  }

  .request {
    height: 526px;
    padding: 30px 0;
  }

  .request-grid {
    height: 466px;
    grid-template-columns: minmax(0, 1fr) 304px;
    gap: 60px;
  }

  .form-panel h2 {
    font-size: 44px;
    margin-bottom: 8px;
  }

  .form-intro {
    margin: 0;
    font-size: 12px;
  }

  .field-grid {
    gap: 9px 14px;
    margin-top: 16px;
  }

  .field {
    gap: 4px;
  }

  .field input,
  .field select {
    height: 38px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .field textarea {
    min-height: 58px;
    height: 58px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .check-field {
    margin: 10px 0;
    font-size: 10px;
  }

  .submit-button {
    min-height: 39px;
  }

  .form-note {
    margin-top: 7px;
    font-size: 8px;
  }

  .contact-card {
    height: 100%;
    padding: 25px 26px;
    box-shadow: none;
  }

  .contact-detail {
    padding: 12px 0;
  }

  .contact-detail strong {
    font-size: 14px;
  }

  .contact-detail small {
    font-size: 10px;
  }

  .site-footer {
    height: 109px;
    padding: 0;
  }

  .footer-inner {
    height: 100%;
  }
}

/* More photographic gradient placeholders */
.hero-visual .placeholder-grid,
.operations-image .placeholder-grid,
.product-image .placeholder-grid,
.allocation-visual .placeholder-grid {
  opacity: .11;
}

.yard-ground {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31%;
  background:
    linear-gradient(174deg, transparent 0 12%, rgba(246,225,188,.12) 13%, transparent 14%),
    linear-gradient(160deg, #a38868, #6e5a46 72%, #4d4136);
  box-shadow: inset 0 18px 55px rgba(35,28,22,.25);
}

.yard-plant {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 22%;
  width: 29%;
  height: 44%;
  opacity: .86;
}

.plant-tower {
  position: absolute;
  right: 26%;
  bottom: 0;
  width: 28%;
  height: 72%;
  border: 9px solid rgba(50,45,38,.86);
  border-top-width: 15px;
  background:
    repeating-linear-gradient(90deg, transparent 0 24%, rgba(53,48,42,.78) 25% 30%, transparent 31% 50%),
    repeating-linear-gradient(0deg, transparent 0 20%, rgba(53,48,42,.72) 21% 25%, transparent 26% 42%);
}

.plant-silo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 46%;
  background: linear-gradient(90deg, #4b4841, #8b8270 48%, #3b3934);
  clip-path: polygon(9% 0, 91% 0, 100% 80%, 72% 100%, 28% 100%, 0 80%);
}

.plant-conveyor {
  position: absolute;
  right: 36%;
  top: 19%;
  width: 68%;
  height: 8px;
  background: #373633;
  transform: rotate(-22deg);
  transform-origin: right center;
  box-shadow: 0 0 0 3px rgba(74,67,57,.58);
}

.operations-image {
  background:
    radial-gradient(ellipse at 30% 72%, rgba(208,181,135,.9) 0 18%, transparent 19%),
    radial-gradient(ellipse at 72% 64%, rgba(180,146,96,.9) 0 20%, transparent 21%),
    linear-gradient(180deg, #7f8785 0 35%, #aa9270 36% 63%, #5b5146 100%);
}

.operations-plant {
  position: absolute;
  z-index: 2;
  left: 30%;
  top: 13%;
  width: 28%;
  height: 52%;
  border: 7px solid rgba(37,41,41,.76);
  background:
    repeating-linear-gradient(90deg, transparent 0 22%, rgba(45,49,49,.68) 23% 28%, transparent 29% 50%),
    repeating-linear-gradient(0deg, transparent 0 18%, rgba(45,49,49,.66) 19% 24%, transparent 25% 42%);
  transform: perspective(300px) rotateY(-10deg);
}

.product-image {
  background:
    radial-gradient(circle at 72% 30%, rgba(213,217,213,.75), transparent 25%),
    linear-gradient(160deg, #58646a 0%, #96968a 35%, #b9986d 56%, #705238 100%);
}

.allocation-visual {
  background:
    radial-gradient(circle at 66% 17%, rgba(255,231,142,.65), transparent 1.6%),
    radial-gradient(circle at 78% 24%, rgba(255,231,142,.46), transparent 1.4%),
    linear-gradient(165deg, #1b252b, #55656c 28%, #745d41 65%, #211b17 100%);
}

.allocation-plant {
  position: absolute;
  z-index: 2;
  right: 13%;
  top: 14%;
  width: 19%;
  height: 52%;
  border-left: 6px solid rgba(20,24,25,.82);
  border-right: 6px solid rgba(20,24,25,.82);
  background: repeating-linear-gradient(0deg, transparent 0 16%, rgba(27,31,31,.72) 17% 22%, transparent 23% 36%);
  transform: skewX(-5deg);
}

.process::before,
.process::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 22px;
  width: 145px;
  height: 160px;
  opacity: .22;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.process::before {
  left: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 170' fill='none' stroke='%23b99c6b' stroke-width='2'%3E%3Cpath d='M28 158h84M42 158 57 15h24l17 143M50 112h40M54 75h31M58 40h23M44 158l47-143M96 158 62 15M16 158V84h20v74M18 84l8-28 8 28M103 158v-54h24v54M105 104l10-22 10 22'/%3E%3C/svg%3E");
}

.process::after {
  right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 120' fill='none' stroke='%23b99c6b' stroke-width='2'%3E%3Cpath d='M8 105h154M30 104 50 68h55l20 36M45 70 98 43l32 13M98 43l-7-21h24l15 34M128 56l28 49M70 68v37M109 68v37M35 91h82'/%3E%3C/svg%3E");
}

.service-map {
  position: relative;
  background:
    radial-gradient(circle at 52% 50%, rgba(104,173,73,.08), transparent 48%),
    repeating-linear-gradient(12deg, transparent 0 24px, rgba(255,255,255,.025) 25px 26px),
    linear-gradient(145deg, #161c1f, #101416 74%);
}

.service-map::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 105px;
  height: 105px;
  opacity: .26;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M15 21 49 20 54 8 73 14 79 28 105 31 101 51 112 64 92 76 84 108 63 97 48 104 37 83 13 78 22 58 8 42Z' fill='%23d6d5d0' stroke='%23f0efe9' stroke-width='2'/%3E%3Crect x='77' y='57' width='17' height='17' fill='none' stroke='%23ffffff' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =========================================================
   FIDELITY PASS 3
   Optical alignment and detail corrections after Playwright review.
   ========================================================= */

@media (min-width: 1121px) {
  .brand-mark {
    width: 56px;
    height: 56px;
    font-size: 23px;
  }

  .brand-copy strong {
    font-size: 33px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .primary-nav a {
    font-size: 14px;
  }

  .header-phone strong {
    font-size: 15px;
  }

  .header-phone small {
    font-size: 9px;
  }

  .hero-copy {
    padding-top: 37px;
  }

  h1 {
    font-size: 96px;
    line-height: .93;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #0e1214 0%, #0e1214 29%, rgba(14,18,20,.96) 37%, rgba(14,18,20,.76) 48%, rgba(14,18,20,.28) 65%, rgba(14,18,20,.07) 83%, rgba(14,18,20,.22) 100%),
      linear-gradient(0deg, rgba(0,0,0,.44), transparent 50%);
  }

  .status-item strong {
    font-size: 15px;
  }

  .status-item small {
    font-size: 10.5px;
  }

  .process-grid h3 {
    font-size: 15px;
  }

  .process-grid p {
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: 500px 720px;
    gap: 90px;
  }

  .coverage-grid {
    grid-template-columns: 450px minmax(0, 1fr);
    gap: 70px;
  }

  .allocation-inner {
    grid-template-columns: 392px minmax(0, 1fr);
  }

  .request-grid {
    grid-template-columns: 860px 304px;
    gap: 60px;
  }

  .contact-card {
    height: 410px;
  }

  .footer-brand .brand-mark {
    width: 46px;
    height: 46px;
  }

  .footer-brand .brand-copy strong {
    font-size: 22px;
  }

  .footer-brand .brand-copy small {
    font-size: 9px;
  }

  .footer-contact {
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
  }
}

.hero-visual {
  background:
    radial-gradient(ellipse at 70% 4%, rgba(240,244,245,.76) 0 10%, rgba(199,207,210,.4) 30%, transparent 54%),
    radial-gradient(ellipse at 48% 16%, rgba(218,225,226,.32), transparent 35%),
    linear-gradient(180deg, #677177 0%, #9da3a2 38%, #af9b7d 39%, #806a51 70%, #594a3a 100%);
}

.yard-ground {
  height: 28%;
  background:
    repeating-linear-gradient(176deg, rgba(255,255,255,.035) 0 1px, transparent 1px 12px),
    linear-gradient(160deg, #a38766, #6d5945 72%, #493e34);
}

.yard-plant {
  right: 7%;
  bottom: 26%;
  width: 24%;
  height: 39%;
  opacity: .72;
}

.plant-tower {
  right: 29%;
  width: 31%;
  height: 74%;
  border-width: 5px;
  border-top-width: 8px;
  background:
    repeating-linear-gradient(45deg, transparent 0 22%, rgba(52,49,44,.75) 23% 27%, transparent 28% 48%),
    repeating-linear-gradient(-45deg, transparent 0 22%, rgba(52,49,44,.68) 23% 27%, transparent 28% 48%),
    repeating-linear-gradient(90deg, transparent 0 27%, rgba(50,47,42,.75) 28% 33%, transparent 34% 52%),
    repeating-linear-gradient(0deg, transparent 0 20%, rgba(50,47,42,.7) 21% 25%, transparent 26% 42%);
}

.plant-silo {
  width: 27%;
  height: 43%;
  opacity: .86;
}

.plant-conveyor {
  right: 39%;
  top: 15%;
  width: 72%;
  height: 5px;
  box-shadow: 0 0 0 2px rgba(74,67,57,.48);
}

.placeholder-dune {
  filter: saturate(.6) contrast(.95);
}

.dune-one {
  width: 57%;
  height: 35%;
  right: 6%;
  bottom: 18%;
}

.dune-two {
  width: 42%;
  height: 26%;
  right: 39%;
  bottom: 17%;
}

.machine-loader {
  right: 37%;
  bottom: 15%;
}

.machine-truck {
  right: 8%;
  bottom: 14%;
}

.operations-plant {
  left: 37%;
  top: 15%;
  width: 20%;
  height: 44%;
  border-width: 4px;
  opacity: .72;
  background:
    repeating-linear-gradient(45deg, transparent 0 22%, rgba(45,49,49,.65) 23% 27%, transparent 28% 48%),
    repeating-linear-gradient(-45deg, transparent 0 22%, rgba(45,49,49,.6) 23% 27%, transparent 28% 48%),
    repeating-linear-gradient(90deg, transparent 0 22%, rgba(45,49,49,.68) 23% 28%, transparent 29% 50%),
    repeating-linear-gradient(0deg, transparent 0 18%, rgba(45,49,49,.66) 19% 24%, transparent 25% 42%);
}

.operations-plant::after {
  content: "";
  position: absolute;
  left: -78%;
  bottom: -42%;
  width: 170%;
  height: 26%;
  background: linear-gradient(90deg, #d2d3ce 0 70%, #777d7d 71% 100%);
  clip-path: polygon(0 15%, 72% 15%, 72% 40%, 88% 40%, 96% 70%, 100% 70%, 100% 100%, 0 100%);
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
}

.product-image .placeholder-belt {
  left: -8%;
  right: auto;
  top: 4%;
  width: 80%;
  height: 64px;
  transform: rotate(18deg);
  transform-origin: left center;
  clip-path: polygon(0 16%,100% 0,100% 58%,0 100%);
}

.product-image .placeholder-pour {
  right: 20%;
  top: 28%;
  width: 155px;
  height: 66%;
  clip-path: polygon(15% 0,100% 0,72% 100%,0 100%);
}

.product-image .placeholder-sandbed {
  bottom: -28%;
  height: 64%;
}

.allocation-shade {
  background: linear-gradient(90deg,#101416 0%,#101416 40%,rgba(16,20,22,.88) 54%,rgba(16,20,22,.24) 81%,rgba(16,20,22,.1) 100%);
}

.allocation-plant {
  right: 9%;
  top: 10%;
  width: 13%;
  height: 44%;
  border-width: 4px;
  opacity: .62;
}

/* =========================================================
   FIDELITY PASS 4
   Typography scale, operational density, and placeholder polish.
   ========================================================= */

@media (min-width: 1121px) {
  .brand-copy strong { font-size: 35px; }
  .brand-copy small { font-size: 11.5px; }
  .primary-nav a { font-size: 15px; }
  .header-phone strong { font-size: 16px; }
  .button-small { font-size: 11.5px; }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .contact-button {
    min-height: 54px;
  }

  .contact-button strong { font-size: 19px; }
  .contact-button small { font-size: 8.5px; }

  .status-item svg {
    width: 37px;
    height: 37px;
  }

  .status-item strong { font-size: 16px; }
  .status-item small { font-size: 11px; }

  .operations-copy p:not(.eyebrow),
  .product-copy p,
  .coverage-copy > p:not(.eyebrow),
  .allocation-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.5;
  }

  .spec-card .card-label { font-size: 11px; }
  .spec-card dt,
  .spec-card dd { font-size: 14px; }

  .process-grid { margin-top: 24px; }
  .process-line { margin-top: 89px; }

  .step-number {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    font-size: 19px;
  }

  .process-grid h3 {
    min-height: 48px;
    font-size: 17px;
    line-height: 1.15;
  }

  .process-grid p {
    max-width: 175px;
    font-size: 13px;
    line-height: 1.42;
  }

  .coverage-copy > p:not(.eyebrow) {
    font-size: 13.5px;
  }

  .coverage-list strong { font-size: 12.5px; }
  .coverage-list small { font-size: 10px; }

  .form-panel h2 { font-size: 48px; }
  .form-intro { font-size: 13px; }
  .field > span { font-size: 10px; }
  .field input,
  .field select,
  .field textarea { font-size: 13px; }

  .contact-card .card-label { font-size: 11px; }
  .contact-detail strong { font-size: 16px; }
  .contact-detail small { font-size: 11px; }

  .footer-brand .brand-copy strong { font-size: 24px; }
  .footer-brand .brand-copy small { font-size: 10px; }
  .footer-contact { font-size: 13px; }
  .copyright { font-size: 11.5px; }
}

.machine-loader {
  right: 45%;
  width: 155px;
  height: 72px;
}

.machine-truck {
  right: 8%;
  width: 225px;
  height: 76px;
}

.machine-loader::before,
.machine-loader::after,
.machine-truck::before,
.machine-truck::after {
  width: 35px;
  height: 35px;
  bottom: -16px;
}

.machine-loader::before { left: 22px; }
.machine-loader::after { right: 17px; }
.machine-truck::before { left: 42px; }
.machine-truck::after { right: 34px; }

.operations-plant {
  opacity: .42;
  border-width: 3px;
}

.operations-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.2), transparent 12%),
    radial-gradient(circle at 82% 23%, rgba(255,255,255,.15), transparent 14%),
    repeating-linear-gradient(9deg, transparent 0 28px, rgba(42,38,31,.08) 29px 30px);
  mix-blend-mode: overlay;
}

.product-image::before {
  content: "";
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 8%;
  width: 36%;
  height: 44%;
  opacity: .38;
  background-image: radial-gradient(circle, rgba(255,231,186,.9) 0 1.3px, transparent 1.5px);
  background-size: 9px 9px;
  mask-image: linear-gradient(145deg, transparent 0 22%, #000 38% 100%);
}

.coverage-list li > span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}

.coverage-list li > span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.service-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    repeating-linear-gradient(22deg, transparent 0 34px, rgba(255,255,255,.08) 35px 36px),
    repeating-linear-gradient(-16deg, transparent 0 46px, rgba(255,255,255,.055) 47px 48px);
  mask-image: radial-gradient(ellipse at center, #000 0 64%, transparent 88%);
}

.process::before,
.process::after {
  width: 230px;
  height: 205px;
  bottom: 8px;
  opacity: .28;
}

/* =========================================================
   FIDELITY PASS 5
   Final desktop optical corrections.
   ========================================================= */

@media (min-width: 1121px) {
  .primary-nav a { font-size: 16px; }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 21px;
  }

  .process-line { margin-top: 93px; }

  .process-grid h3 {
    font-size: 18px;
    min-height: 50px;
  }

  .process-grid p {
    font-size: 14px;
    max-width: 185px;
  }

  .form-panel h2 { font-size: 52px; }
  .form-intro { font-size: 14px; }
  .field > span { font-size: 10.5px; }
  .field input,
  .field select,
  .field textarea { font-size: 13.5px; }

  .contact-detail strong { font-size: 17px; }
  .contact-detail small { font-size: 12px; }

  .footer-brand .brand-mark {
    width: 54px;
    height: 54px;
  }

  .footer-brand .brand-copy strong { font-size: 28px; }
  .footer-brand .brand-copy small { font-size: 10.5px; }
  .footer-contact { font-size: 14px; }
  .copyright { font-size: 12px; }
}

.hero-visual {
  background:
    radial-gradient(ellipse at 78% 2%, rgba(248,250,249,.82) 0 7%, rgba(218,224,224,.56) 22%, transparent 45%),
    radial-gradient(ellipse at 50% 12%, rgba(226,231,230,.36) 0 8%, transparent 34%),
    radial-gradient(ellipse at 92% 24%, rgba(239,232,215,.2) 0 9%, transparent 28%),
    linear-gradient(180deg, #626d73 0%, #8d9698 28%, #a4a398 39%, #a58e70 40%, #78634c 69%, #504438 100%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    repeating-linear-gradient(176deg, transparent 0 21px, rgba(255,255,255,.025) 22px 23px),
    linear-gradient(90deg, rgba(255,255,255,.06), transparent 38% 75%, rgba(0,0,0,.08));
  mix-blend-mode: overlay;
}

.dune-one {
  width: 62%;
  height: 42%;
  right: 3%;
  bottom: 16%;
}

.dune-two {
  width: 48%;
  height: 30%;
  right: 38%;
  bottom: 15%;
}

.dune-one::before,
.dune-one::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 55% 45% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 35% 18%, rgba(255,255,255,.17), transparent 30%),
    linear-gradient(155deg, #b89b70, #816344 60%, #56412f);
  opacity: .78;
}

.dune-one::before {
  width: 62%;
  height: 70%;
  left: -42%;
}

.dune-one::after {
  width: 47%;
  height: 55%;
  right: -14%;
  opacity: .66;
}

.yard-plant {
  right: 3%;
  bottom: 22%;
  width: 31%;
  height: 50%;
  opacity: .6;
}

.plant-tower {
  border-width: 4px;
  border-top-width: 7px;
}

.machine-loader {
  right: 43%;
  width: 202px;
  height: 88px;
  bottom: 13%;
}

.machine-truck {
  right: 6%;
  width: 280px;
  height: 88px;
  bottom: 12.5%;
}

.machine-loader::before,
.machine-loader::after,
.machine-truck::before,
.machine-truck::after {
  width: 42px;
  height: 42px;
  bottom: -19px;
}

.machine-loader::before { left: 27px; }
.machine-loader::after { right: 22px; }
.machine-truck::before { left: 51px; }
.machine-truck::after { right: 42px; }

.process::before {
  width: 270px;
  height: 235px;
  left: 14px;
}

.process::after {
  width: 250px;
  height: 220px;
  right: 10px;
}

.operations-image {
  background:
    radial-gradient(ellipse at 14% 76%, rgba(219,190,142,.92) 0 15%, transparent 16%),
    radial-gradient(ellipse at 42% 68%, rgba(198,164,110,.9) 0 19%, transparent 20%),
    radial-gradient(ellipse at 78% 70%, rgba(177,141,92,.88) 0 20%, transparent 21%),
    linear-gradient(180deg, #768083 0 31%, #98866d 32% 53%, #5d5144 100%);
}

.operations-plant {
  opacity: .28;
}

.allocation-plant { opacity: .36; }

/* Responsive reset after desktop fidelity overrides */
@media (max-width: 1120px) {
  :root { --header-height: 76px; }
  .site-header { height: var(--header-height); position: sticky; }
}

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

@media (max-width: 620px) {
  .machine-loader {
    right: 42%;
    width: 112px;
    height: 56px;
  }
  .machine-truck {
    right: 2%;
    width: 160px;
    height: 58px;
  }
  .machine-loader::before,
  .machine-loader::after,
  .machine-truck::before,
  .machine-truck::after {
    width: 28px;
    height: 28px;
    bottom: -13px;
  }
  .process::before,
  .process::after {
    width: 130px;
    height: 145px;
  }
}

/* =========================================================
   GENERATED ASSET INTEGRATION
   Standalone imagery from the approved homepage mockup.
   Gradients remain as fallbacks behind every image.
   ========================================================= */
.image-asset {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-visual {
  background-image:
    linear-gradient(180deg, rgba(8, 12, 14, .04), rgba(8, 12, 14, .14)),
    url("assets/images/hero-yard.webp"),
    linear-gradient(180deg, #626d73 0%, #8d9698 38%, #a58e70 39%, #504438 100%);
  background-position: center center;
  filter: saturate(.82) contrast(1.02);
}

.hero-visual::before {
  opacity: .22;
}

.operations-image {
  background-image:
    linear-gradient(180deg, rgba(23, 27, 28, .03), rgba(23, 27, 28, .12)),
    url("assets/images/operations-yard.webp"),
    linear-gradient(180deg, #768083 0%, #98866d 40%, #5d5144 100%);
  background-position: center center;
  filter: saturate(.84) contrast(1.02);
}

.operations-image::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.12)),
    repeating-linear-gradient(9deg, transparent 0 34px, rgba(42,38,31,.025) 35px 36px);
  mix-blend-mode: overlay;
}

.product-image {
  background-image:
    linear-gradient(180deg, rgba(15, 18, 19, .02), rgba(15, 18, 19, .08)),
    url("assets/images/product-conveyor.webp"),
    linear-gradient(160deg, #58646a 0%, #96968a 35%, #b9986d 56%, #705238 100%);
  background-position: center center;
  filter: saturate(.88) contrast(1.025);
}

.product-image::before {
  display: none;
}

.allocation-visual {
  background-image:
    linear-gradient(180deg, rgba(8, 11, 13, .04), rgba(8, 11, 13, .14)),
    url("assets/images/allocation-yard-dusk.webp"),
    linear-gradient(165deg, #1b252b, #55656c 28%, #745d41 65%, #211b17 100%);
  background-position: center 56%;
  filter: saturate(.85) contrast(1.05);
}

.service-map {
  margin: 0;
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #111516;
}

.service-map::before,
.service-map::after {
  display: none;
}

.service-map img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: saturate(.9) contrast(1.03);
}

.process::before,
.process::after {
  display: none;
}

.process > .container {
  position: relative;
  z-index: 2;
}

.process-art {
  position: absolute;
  z-index: 1;
  bottom: -25px;
  width: 330px;
  height: 270px;
  object-fit: contain;
  pointer-events: none;
  opacity: .17;
  filter: sepia(.2) saturate(.7) brightness(1.12);
}

.process-art-left {
  left: -12px;
  object-position: left bottom;
}

.process-art-right {
  right: -8px;
  width: 275px;
  object-position: right bottom;
}

@media (min-width: 1121px) {
  .hero-visual {
    background-position: 54% center;
  }

  .operations-image {
    background-position: 49% center;
  }

  .product-image {
    background-position: 50% center;
  }

  .allocation-visual {
    background-position: 52% center;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    background-position: 58% center;
  }

  .process-art {
    width: 210px;
    height: 190px;
    opacity: .1;
  }

  .process-art-right {
    width: 175px;
  }
}

@media (max-width: 620px) {
  .hero-visual {
    background-position: 61% center;
  }

  .operations-image {
    background-position: 52% center;
  }

  .product-image {
    background-position: 56% center;
  }

  .allocation-visual {
    background-position: 58% center;
  }

  .process-art {
    display: none;
  }
}

/* =========================================================
   FIDELITY PASS 6
   Final image-aware spacing and optical alignment.
   ========================================================= */

/* Generated photography replaces the construction placeholders. */
.hero-visual > *,
.operations-image > *,
.product-image > *,
.allocation-visual > * {
  display: none !important;
}

@media (min-width: 1121px) {
  /* Header scale from the approved mockup. */
  .brand-copy strong { font-size: 29px; }
  .brand-copy small { font-size: 10px; }
  .primary-nav { gap: 30px; }
  .primary-nav a { font-size: 14px; }
  .header-phone strong { font-size: 14px; }
  .header-phone small { font-size: 8.5px; }

  /* The reference uses one continuous photo behind the dark hero wash. */
  .hero-visual {
    left: 0;
    background-size: cover;
    background-position: 50% 52%;
    filter: saturate(.80) contrast(1.015) brightness(.96);
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12,15,17,.99) 0%, rgba(12,15,17,.985) 25%, rgba(12,15,17,.92) 38%, rgba(12,15,17,.68) 49%, rgba(12,15,17,.25) 64%, rgba(12,15,17,.04) 83%, rgba(12,15,17,.10) 100%),
      linear-gradient(0deg, rgba(0,0,0,.34), transparent 48%);
  }
  .hero-copy { padding-top: 27px; }
  h1 {
    font-size: 90px;
    line-height: .94;
    width: 575px;
  }
  .hero-lead {
    max-width: 530px;
    font-size: 15px;
    line-height: 1.58;
  }
  .hero-actions { margin-top: 40px; }

  /* Match the asymmetric editorial operation block. */
  .operations-grid {
    grid-template-columns: 500px 54px 417px 45px 320px;
    gap: 0;
  }
  .operations-image { grid-column: 1; }
  .operations-copy { grid-column: 3; }
  .spec-card {
    grid-column: 5;
    height: 389px;
    align-self: center;
    padding: 25px 28px;
  }
  .operations-copy h2 { font-size: 43px; }
  .operations-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.55;
  }

  /* The process steps sit in a tighter center band between the illustrations. */
  .process-grid {
    width: 1095px;
    margin: 34px auto 0;
    gap: 0;
  }
  .process-line {
    left: calc(50% - 438px);
    right: auto;
    width: 876px;
    margin-top: 91px;
  }
  .step-number {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    font-size: 18px;
  }
  .process-grid h3 {
    min-height: 44px;
    font-size: 15px;
    line-height: 1.17;
  }
  .process-grid p {
    max-width: 160px;
    font-size: 12px;
    line-height: 1.42;
  }
  .process-art {
    bottom: -8px;
    width: 255px;
    height: 270px;
    opacity: .25;
    object-fit: cover;
    filter: sepia(.25) saturate(.55) brightness(1.1);
    mix-blend-mode: screen;
  }
  .process-art-left {
    left: 8px;
    object-position: 8% 52%;
  }
  .process-art-right {
    right: 4px;
    width: 230px;
    object-position: 49% 49%;
  }

  /* Product copy is inset, while the image aligns to the reference crop. */
  .product {
    height: 388px;
    padding: 38px 0 35px;
  }
  .product-grid {
    height: 315px;
    grid-template-columns: 500px 736px;
    gap: 104px;
  }
  .product-copy {
    margin-left: 43px;
    transform: translateY(-14px);
  }
  .product-copy h2 { font-size: 45px; }
  .product-image {
    width: 736px;
    height: 315px;
  }

  /* The map is a full-bleed right-side graphic, not a floating card. */
  .coverage {
    height: 390px;
    padding: 0;
  }
  .coverage .container {
    width: 100%;
    max-width: none;
  }
  .coverage-grid {
    height: 390px;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 45px;
    padding-left: 60px;
  }
  .coverage-copy h2 { font-size: 44px; }
  .service-map {
    height: 390px;
    border: 0;
    align-self: stretch;
  }
  .service-map img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 47% 50%;
  }

  /* Make the large year carry the same visual weight as the concept. */
  .year-display {
    margin-left: 15px;
    font-size: 260px;
    line-height: .78;
    letter-spacing: -.045em;
    transform: scaleX(.69);
    transform-origin: left center;
  }
  .allocation-copy .button { min-height: 43px; }

  /* Inset the form and restore the taller contact rail. */
  .request {
    height: 525px;
    padding: 22px 0 23px;
  }
  .request-grid {
    height: 480px;
    grid-template-columns: 883px 311px;
    gap: 60px;
  }
  .form-panel {
    padding-top: 8px;
    padding-left: 43px;
  }
  .form-panel h2 { font-size: 47px; }
  .contact-card {
    width: 311px;
    height: 480px;
    padding: 28px 27px;
  }
  .contact-detail { padding: 16px 0; }
  .contact-detail strong { font-size: 16px; }
  .contact-detail small { font-size: 11px; }
}

@media (max-width: 1120px) {
  .hero-visual > *,
  .operations-image > *,
  .product-image > *,
  .allocation-visual > * { display: none !important; }
  .service-map img { width: 100%; height: auto; display: block; }
}

/* =========================================================
   FIDELITY PASS 7
   Final photographic crop and supporting-art corrections.
   ========================================================= */
.hero-visual,
.operations-image,
.product-image,
.allocation-visual {
  background-repeat: no-repeat;
}
.operations-image,
.product-image,
.allocation-visual {
  background-size: cover;
}
.operations-image { background-position: 50% 50%; }
.product-image { background-position: 50% 50%; }
.allocation-visual { background-position: 50% 56%; }

@media (min-width: 1121px) {
  .hero-visual {
    background-size: 1180px auto;
    background-position: right 52%;
    background-color: #101416;
  }
  .status-item svg {
    width: 41px;
    height: 41px;
  }
  .service-map img {
    filter: saturate(.82) contrast(1.03) brightness(.74);
  }
  .process-art {
    bottom: -2px;
    object-fit: cover;
    opacity: .22;
  }
  .process-art-left {
    left: 12px;
    width: 205px;
    height: 288px;
    object-position: left 46%;
  }
  .process-art-right {
    right: 12px;
    width: 175px;
    height: 255px;
    object-position: center 47%;
  }
}

/* =========================================================
   SECTION SPACING CORRECTION
   Adds breathing room between the service-area map and the
   2027 allocation feature without changing the visual language.
   ========================================================= */
.coverage {
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.allocation {
  border-top: 1px solid rgba(104,173,73,.18);
}

@media (min-width: 1121px) {
  .coverage {
    height: 438px;
    padding: 22px 0 28px;
  }

  .coverage-grid {
    height: 388px;
  }

  .service-map {
    height: 388px;
  }

  .allocation {
    min-height: 368px;
  }

  .allocation-inner {
    min-height: 368px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .allocation-copy {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (max-width: 1120px) {
  .coverage {
    padding-bottom: 58px;
  }

  .allocation {
    min-height: 356px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .allocation-inner {
    min-height: 308px;
    align-items: center;
  }

  .allocation-copy {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (max-width: 620px) {
  .coverage {
    padding-bottom: 64px;
  }

  .allocation {
    min-height: 520px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .allocation-inner {
    min-height: 456px;
  }

  .allocation-copy {
    padding-top: 20px;
    padding-bottom: 54px;
  }
}

/* Clear visual pause between two consecutive dark feature bands. */
.coverage-allocation-spacer {
  height: 28px;
  position: relative;
  z-index: 4;
  background:
    linear-gradient(90deg, #111618 0%, #182022 48%, #111618 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(104,173,73,.24);
}

.coverage-allocation-spacer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: rgba(104,173,73,.58);
}

@media (max-width: 1120px) {
  .coverage-allocation-spacer {
    height: 24px;
  }

  .coverage-allocation-spacer::after {
    width: 56px;
  }
}

@media (max-width: 620px) {
  .coverage-allocation-spacer {
    height: 18px;
  }

  .coverage-allocation-spacer::after {
    width: 42px;
  }
}

/* =========================================================
   CANONICAL CLIENT COPY PASS
   Keeps every confirmed homepage statement from the supplied
   client index while preserving the approved visual system.
   ========================================================= */
.hero-call-label {
  margin: 26px 0 -14px;
  color: var(--green);
  font: 600 10px/1.2 Oswald, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.availability-banner {
  background: var(--green);
  color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.availability-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: center;
}

.availability-inner strong {
  font: 600 14px/1.1 Oswald, sans-serif;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.availability-inner span {
  color: rgba(255,255,255,.82);
  font: 500 9px/1.35 Oswald, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-grid-canonical {
  grid-template-columns: repeat(4, 1fr);
}

.coverage-facts {
  margin: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.coverage-facts > div {
  display: grid;
  grid-template-columns: 86px minmax(0,1fr);
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.coverage-facts dt {
  color: var(--green);
  font: 600 8px/1.35 Oswald, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.coverage-facts dd {
  margin: 0;
  color: rgba(255,255,255,.77);
  font-size: 10px;
  line-height: 1.35;
  text-align: right;
}

.coverage-facts a {
  color: inherit;
  text-decoration: none;
}

.allocation-note {
  max-width: 610px;
  margin: 18px 0 20px;
  padding: 12px 15px;
  border-left: 2px solid var(--green);
  background: rgba(0,0,0,.22);
}

.allocation-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font: 600 13px/1.1 Oswald, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.allocation-note p {
  margin: 0 !important;
  color: rgba(255,255,255,.7) !important;
  font-size: 11px;
  line-height: 1.55;
}

.required-note {
  margin: 12px 0 13px;
  color: var(--muted);
  font: 600 8px/1.3 Oswald, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.canonical-field-grid .field-full textarea {
  min-height: 66px;
}

.form-direct {
  margin-top: 10px;
}

.form-direct a {
  color: var(--green-dark);
}

@media (min-width: 1121px) {
  .status-item {
    min-height: 72px;
  }

  .operations-copy h2 {
    font-size: 43px;
  }

  .coverage {
    height: 488px;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .coverage-grid,
  .service-map {
    height: 444px;
  }

  .coverage-grid {
    grid-template-columns: 440px minmax(0,1fr);
  }

  .coverage-copy h2 {
    margin-bottom: 14px;
    font-size: 42px;
  }

  .coverage-copy > p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .allocation {
    min-height: 448px;
  }

  .allocation-inner {
    min-height: 448px;
  }

  .allocation-copy {
    padding-top: 50px;
    padding-bottom: 44px;
  }

  .allocation-copy h2 {
    font-size: 43px;
  }

  .allocation-copy .button-row {
    gap: 10px;
  }

  .allocation-copy .button {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 10px;
  }

  .request {
    height: 650px;
    padding: 24px 0 26px;
  }

  .request-grid {
    height: 600px;
    grid-template-columns: 883px 311px;
  }

  .contact-card {
    height: 600px;
  }

  .form-panel h2 {
    margin-bottom: 8px;
  }

  .canonical-field-grid {
    row-gap: 12px;
  }
}

@media (max-width: 1120px) {
  .availability-inner {
    min-height: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    gap: 4px;
  }

  .availability-inner strong,
  .availability-inner span {
    white-space: normal;
  }

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

  .coverage-facts {
    max-width: 560px;
  }

  .allocation-note {
    max-width: 650px;
  }

  .request {
    height: auto;
  }

  .request-grid,
  .contact-card {
    height: auto;
  }
}

@media (max-width: 620px) {
  .hero-call-label {
    margin-top: 22px;
  }

  .availability-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .availability-inner strong {
    font-size: 13px;
  }

  .availability-inner span {
    font-size: 8px;
    line-height: 1.5;
  }

  .status-grid-canonical {
    grid-template-columns: 1fr;
  }

  .status-grid-canonical .status-item {
    min-height: 65px;
    border-left: 0;
    border-top: 1px dotted rgba(255,255,255,.17);
  }

  .status-grid-canonical .status-item:first-child {
    border-top: 0;
  }

  .operations-copy h2,
  .coverage-copy h2,
  .allocation-copy h2 {
    font-size: 36px;
  }

  .coverage-facts > div {
    grid-template-columns: 76px minmax(0,1fr);
  }

  .allocation-note {
    margin-top: 16px;
  }
}

/* =========================================================
   FINAL STATUS / OPERATIONS ALIGNMENT PASS
   Keeps the canonical availability message without allowing
   the capability rail to overlap the operations section.
   ========================================================= */
@media (min-width: 1121px) {
  .status-rail {
    height: 98px;
    display: grid;
    grid-template-rows: 42px 56px;
    overflow: hidden;
  }

  .availability-banner,
  .availability-inner {
    height: 42px;
    min-height: 42px;
  }

  .availability-inner {
    gap: 26px;
    padding-block: 0;
  }

  .availability-inner strong {
    font-size: 12px;
    line-height: 1;
  }

  .availability-inner span {
    font-size: 8px;
    line-height: 1.2;
  }

  .status-grid-canonical {
    height: 56px;
  }

  .status-grid-canonical .status-item {
    height: 56px;
    min-height: 56px;
    padding: 7px 25px;
    gap: 12px;
    align-items: center;
  }

  .status-grid-canonical .status-item svg {
    width: 28px;
    height: 28px;
  }

  .status-grid-canonical .status-item strong {
    font-size: 12px;
    line-height: 1;
  }

  .status-grid-canonical .status-item small {
    margin-top: 3px;
    font-size: 8px;
    line-height: 1.1;
  }

  .operations {
    position: relative;
    z-index: 1;
  }

  .operations-grid > * {
    min-width: 0;
  }

  .operations-image,
  .spec-card {
    align-self: stretch;
  }
}

@media (min-width: 1121px) {
  .operations-grid {
    grid-template-columns: 500px 40px 417px 33px 320px;
  }

  .spec-card {
    height: 100%;
    align-self: stretch;
  }
}

/* =========================================================
   HERO / CAPABILITY RAIL REPAIR
   The prior canonical pass split one visual rail into two
   cramped rows. This restores the approved single-band hero
   ending while retaining all canonical client copy.
   ========================================================= */
.availability-banner.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.status-rail {
  height: clamp(72px, 6.8vw, 98px) !important;
  display: block !important;
  overflow: hidden !important;
  background: linear-gradient(90deg, #171d20 0%, #0f1416 52%, #171d20 100%);
}

.status-grid-canonical {
  height: 100% !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.status-grid-canonical .status-item {
  height: 100% !important;
  min-height: 0 !important;
  padding: clamp(9px, 1.2vw, 18px) clamp(8px, 1.55vw, 23px) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  align-items: center !important;
  overflow: hidden;
}

.status-grid-canonical .status-item svg {
  width: clamp(24px, 2.55vw, 41px) !important;
  height: clamp(24px, 2.55vw, 41px) !important;
}

.status-grid-canonical .status-item span {
  min-width: 0;
}

.status-grid-canonical .status-item strong {
  font-size: clamp(10px, 1vw, 15px) !important;
  line-height: 1.05 !important;
}

.status-grid-canonical .status-item small {
  margin-top: 4px !important;
  font-size: clamp(7px, .68vw, 10px) !important;
  line-height: 1.18 !important;
  white-space: normal;
}

.hero-actions .contact-button:first-child small {
  max-width: 155px;
  font-size: 7.5px;
  line-height: 1.2;
  letter-spacing: .115em;
}

@media (min-width: 1121px) {
  .hero-copy {
    padding-top: 46px !important;
    padding-bottom: 42px !important;
  }
  .hero-actions {
    margin-top: 30px !important;
  }
}

@media (min-width: 701px) and (max-width: 1120px) {
  .hero {
    min-height: 600px;
    height: auto;
  }
  .hero-copy {
    width: min(610px, 64vw);
    max-width: min(610px, 64vw);
    padding: 64px 0 52px !important;
  }
  .hero-actions {
    margin-top: 28px !important;
  }
  .status-rail {
    height: 76px !important;
  }
  .status-grid-canonical .status-item {
    padding-inline: 10px !important;
  }
  .status-grid-canonical .status-item strong {
    font-size: 10px !important;
  }
  .status-grid-canonical .status-item small {
    font-size: 7px !important;
    letter-spacing: .075em;
  }
}

@media (max-width: 700px) {
  .hero-copy {
    padding-top: 58px !important;
    padding-bottom: 54px !important;
  }
  .hero-actions {
    margin-top: 28px !important;
  }
  .status-rail {
    height: auto !important;
    overflow: visible !important;
  }
  .status-grid-canonical {
    grid-template-columns: 1fr 1fr !important;
  }
  .status-grid-canonical .status-item {
    min-height: 72px !important;
    height: auto !important;
    border-top: 1px dotted rgba(255,255,255,.17);
  }
  .status-grid-canonical .status-item:nth-child(-n+2) {
    border-top: 0;
  }
  .status-grid-canonical .status-item:last-child {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   CLIENT REVISION PASS
   Targeted quick wins only: header/logo/footer polish,
   process cleanup, typography bumps, map fit, form cleanup.
   ========================================================= */

.brand-logo {
  display: block;
  width: 274px;
  height: auto;
}

.site-header {
  height: 94px;
}

.header-inner {
  gap: 26px;
}

.primary-nav {
  margin-left: auto;
}

.header-actions {
  gap: 18px;
  padding-left: 22px;
  margin-left: 10px;
}

.header-phone {
  gap: 10px;
}

.header-phone strong {
  font-size: 15px;
}

.header-phone small {
  font-size: 9.5px;
  letter-spacing: .12em;
}

.hero {
  min-height: 598px;
}

.hero-inner {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  padding-top: 40px !important;
  padding-bottom: 28px !important;
}

.hero-actions {
  margin-top: 26px !important;
}

.contact-button {
  min-height: 92px;
}

.contact-button small {
  font-size: 9px !important;
  letter-spacing: .12em !important;
}

.hero-actions .contact-button:first-child small {
  max-width: none;
  font-size: 9px !important;
}

.status-rail {
  min-height: 88px;
}

.status-grid-canonical .status-item strong {
  font-size: clamp(11px, 1vw, 15px) !important;
}

.status-grid-canonical .status-item small {
  font-size: clamp(8px, .75vw, 10.5px) !important;
}

.operations {
  height: auto !important;
  padding: 42px 0 46px !important;
}

.operations-grid {
  height: auto !important;
  min-height: 430px;
  align-items: stretch;
}

.operations-copy {
  padding: 18px 0 12px;
}

.operations-copy p:not(.eyebrow),
.product-copy p,
.coverage-copy > p:not(.eyebrow),
.allocation-copy > p:not(.eyebrow) {
  font-size: 15px !important;
  line-height: 1.62 !important;
}

.operations-copy .button {
  margin-top: 12px;
}

.spec-card {
  padding: 30px 30px;
}

.card-label {
  margin-bottom: 14px;
  font-size: 11px;
}

.spec-card dl > div {
  padding: 14px 0;
}

.spec-card dt {
  color: rgba(255,255,255,.72);
  font-size: 13px !important;
}

.spec-card dd {
  font-size: 14px !important;
  line-height: 1.45;
}

.process {
  height: auto !important;
  padding: 52px 0 56px !important;
}

.process-art,
.process::before,
.process::after {
  display: none !important;
}

.process .section-heading h2 {
  margin-bottom: 8px;
}

.process-grid {
  margin-top: 34px;
  gap: 26px;
}

.process-grid li {
  position: relative;
}

.process-line {
  left: 12% !important;
  right: 12% !important;
  margin-top: 93px !important;
  height: 2px !important;
  border-top: 0 !important;
  background: linear-gradient(90deg, #4b8734 0%, #5a9540 22%, #68ad49 52%, #77bb56 76%, #87c862 100%) !important;
  z-index: 1;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: #182024;
}

.process-grid li:nth-child(1) .step-number { border-color: #4b8734; box-shadow: 0 0 0 5px rgba(75,135,52,.08); }
.process-grid li:nth-child(2) .step-number { border-color: #57913d; box-shadow: 0 0 0 5px rgba(87,145,61,.08); }
.process-grid li:nth-child(3) .step-number { border-color: #68ad49; box-shadow: 0 0 0 5px rgba(104,173,73,.08); }
.process-grid li:nth-child(4) .step-number { border-color: #74b854; box-shadow: 0 0 0 5px rgba(116,184,84,.08); }
.process-grid li:nth-child(5) .step-number { border-color: #85c660; box-shadow: 0 0 0 5px rgba(133,198,96,.08); }

.process-grid h3 {
  min-height: 48px;
  font-size: 16px !important;
}

.process-grid p {
  max-width: 188px;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.coverage {
  height: auto !important;
  padding: 44px 0 40px !important;
}

.coverage-grid {
  height: auto !important;
  min-height: 390px;
  align-items: stretch;
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-copy h2 {
  margin-bottom: 16px;
}

.coverage-facts {
  margin-top: 24px;
}

.coverage-facts > div {
  grid-template-columns: 106px minmax(0,1fr);
  gap: 16px;
  padding: 10px 0;
}

.coverage-facts dt {
  font-size: 10px !important;
  letter-spacing: .12em;
}

.coverage-facts dd {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.service-map {
  position: relative;
  height: 100% !important;
  min-height: 390px !important;
  background: #101416 !important;
}

.service-map::before {
  display: block !important;
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16,20,22,.96) 0%, rgba(16,20,22,.74) 45%, rgba(16,20,22,.28) 78%, transparent 100%);
}

.service-map img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
}

.coverage-allocation-spacer {
  display: none !important;
}

.allocation-copy .button-row {
  margin-top: 16px;
}

.request {
  height: auto !important;
  padding: 40px 0 44px !important;
}

.request-grid {
  height: auto !important;
  min-height: 520px;
  align-items: start;
}

.form-panel h2 {
  margin-bottom: 10px;
}

.form-intro {
  font-size: 14px !important;
  line-height: 1.6;
}

.required-note {
  margin: 14px 0 16px;
  font-size: 9px !important;
}

.field > span {
  font-size: 10px;
}

.field input,
.field select {
  height: 44px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 74px;
  padding: 10px 12px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.submit-button {
  width: auto !important;
  min-width: 266px;
  float: none !important;
  flex: 0 0 auto;
  padding-inline: 28px;
}

.form-note {
  clear: none !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5;
}

.form-direct {
  max-width: 380px;
}

.contact-card {
  height: auto !important;
  min-height: 520px;
  padding: 30px 28px;
}

.contact-detail {
  padding: 14px 0;
}

.contact-detail small {
  font-size: 11px;
  line-height: 1.5;
}

.site-footer {
  height: auto !important;
  padding: 34px 0 18px !important;
  background: linear-gradient(135deg, #0d1113 0%, #141a1c 100%);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr .8fr .85fr .95fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand-block p,
.footer-column p,
.footer-column li,
.footer-meta,
.copyright {
  color: rgba(255,255,255,.68);
}

.footer-brand {
  display: inline-flex;
}

.footer-logo {
  width: 248px;
}

.footer-brand-block p {
  margin: 14px 0 0;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: var(--green);
  font: 600 13px/1 Oswald, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-column li,
.footer-column p {
  font-size: 12px;
  line-height: 1.6;
}

.footer-column a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-column-cta .button {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
}

.footer-bottom .copyright,
.footer-bottom .footer-meta {
  margin: 0;
  font-size: 11px;
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 220px;
  }

  .header-actions {
    margin-left: 0;
  }

  .process-line {
    left: 10% !important;
    right: 10% !important;
  }

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

@media (max-width: 900px) {
  .brand-logo {
    width: 192px;
  }

  .header-actions .button {
    display: none;
  }

  .process-line {
    display: none !important;
  }

  .form-actions {
    align-items: flex-start;
  }

  .submit-button {
    min-width: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 168px;
  }

  .hero {
    min-height: 660px;
  }

  .contact-button {
    min-height: 0;
  }

  .operations-copy p:not(.eyebrow),
  .product-copy p,
  .coverage-copy > p:not(.eyebrow),
  .allocation-copy > p:not(.eyebrow) {
    font-size: 14px !important;
  }

  .coverage-facts > div {
    grid-template-columns: 86px minmax(0,1fr);
  }

  .service-map {
    min-height: 290px !important;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-button {
    width: 100% !important;
    min-width: 0;
  }

  .form-direct {
    max-width: none;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    width: 210px;
  }
}


/* =========================================================
   FOLLOW-UP MICRO POLISH PASS
   Header proportion/type cleanup + Stateline image blend.
   ========================================================= */

.site-header {
  height: 88px !important;
}

.header-inner {
  gap: 22px !important;
}

.brand-logo {
  width: 228px !important;
  height: auto;
}

.primary-nav {
  gap: 26px !important;
}

.primary-nav a {
  font-family: Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .045em !important;
  color: rgba(255,255,255,.86);
}

.header-actions {
  gap: 24px !important;
  padding-left: 28px !important;
  margin-left: 6px !important;
}

.header-phone {
  gap: 11px !important;
}

.header-phone strong {
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: .04em !important;
}

.header-phone small {
  font-size: 8.5px !important;
  font-weight: 500 !important;
  letter-spacing: .11em !important;
}

.header-actions .button.button-small {
  min-height: 46px !important;
  padding-inline: 20px !important;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: .08em !important;
}

@media (min-width: 1121px) {
  .container {
    width: min(calc(100% - 88px), var(--container)) !important;
  }

  .coverage {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 448px;
    display: flex;
    align-items: stretch;
  }

  .coverage > .container {
    display: flex;
    align-items: stretch;
  }

  .coverage-grid {
    min-height: 448px !important;
    gap: 48px !important;
    align-items: stretch !important;
  }

  .coverage-copy {
    padding-block: 36px;
  }

  .service-map {
    min-height: 448px !important;
    height: auto !important;
    align-self: stretch;
    margin: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

  .service-map::before {
    display: block !important;
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 14%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(18,23,25,.92) 0%, rgba(18,23,25,.72) 36%, rgba(18,23,25,.34) 68%, rgba(18,23,25,0) 100%) !important;
  }

  .service-map img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    margin: 0 !important;
    display: block;
  }
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 198px !important;
  }

  .primary-nav a {
    font-size: 11px !important;
  }

  .header-actions {
    gap: 18px !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px !important;
  }

  .brand-logo {
    width: 176px !important;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 158px !important;
  }
}

/* =========================================================
   FINAL LAYOUT CORRECTION
   Restores coverage grid, repairs process track geometry,
   and adds a modest amount of hero breathing room.
   ========================================================= */

@media (min-width: 1121px) {
  /* Slightly more breathing room around the hero contact actions. */
  .hero {
    height: 640px !important;
    min-height: 640px !important;
  }

  .hero-copy {
    padding-top: 54px !important;
    padding-bottom: 46px !important;
  }

  .hero-actions {
    margin-top: 34px !important;
  }

  /* The connector now belongs to the five-column step grid itself. */
  .process {
    height: auto !important;
    padding: 62px 0 70px !important;
  }

  .process .section-heading h2 {
    margin-bottom: 0;
  }

  .process-line {
    display: none !important;
  }

  .process-grid {
    position: relative;
    margin-top: 42px !important;
    gap: 28px !important;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
      90deg,
      #456f35 0%,
      #52873b 24%,
      #64a447 50%,
      #75b957 76%,
      #89c967 100%
    );
  }

  .process-grid li {
    position: relative;
    z-index: 2;
  }

  .step-number {
    position: relative;
    z-index: 3;
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 22px !important;
    background: #182024 !important;
  }

  .process-grid h3 {
    min-height: 44px !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
    line-height: 1.28 !important;
  }

  .process-grid p {
    max-width: 185px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Restore the original coverage columns. The previous flex override
     caused the left content to expand and squeezed the map. */
  .coverage {
    display: block !important;
    height: 487px !important;
    min-height: 487px !important;
    padding: 0 !important;
  }

  .coverage > .container,
  .coverage-grid {
    display: grid !important;
    width: min(calc(100% - 88px), var(--container)) !important;
    height: 487px !important;
    min-height: 487px !important;
    grid-template-columns: 440px minmax(0, 1fr) !important;
    gap: 54px !important;
    align-items: stretch !important;
  }

  .coverage-copy {
    min-width: 0;
    padding: 34px 0 !important;
    justify-content: center;
  }

  .service-map {
    position: relative;
    align-self: stretch !important;
    width: 100% !important;
    height: 487px !important;
    min-height: 487px !important;
    margin: 0 !important;
    overflow: hidden;
    border-top: 0 !important;
    border-bottom: 0 !important;
    background: #111516 !important;
  }

  .service-map img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #111516;
  }

  .service-map::before {
    display: block !important;
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 112px;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(18, 23, 25, .94) 0%,
      rgba(18, 23, 25, .70) 34%,
      rgba(18, 23, 25, .31) 68%,
      rgba(18, 23, 25, 0) 100%
    ) !important;
  }
}

@media (max-width: 1120px) {
  .process-line {
    display: none !important;
  }

  .coverage > .container,
  .coverage-grid {
    display: grid !important;
  }
}


/* =========================================================
   CONTEXTUAL INQUIRY + CONTENT ARCHITECTURE PASS
   Playwright-reviewed conversion, FAQ, and modal system.
   ========================================================= */
/* Live prototype: contextual forms and conversion architecture */
button { font: inherit; }
.inquiry-trigger { cursor: pointer; }

.contact-button-primary {
  border-color: var(--green);
  background: var(--green);
  text-align: left;
}
.contact-button-primary:hover,
.contact-button-primary:focus-visible { background: var(--green-dark); }
.contact-button-primary .contact-icon,
.contact-button-primary small { color: rgba(255,255,255,.82); }
.hero-actions { align-items: stretch; }
.hero-direct-email {
  width: 100%;
  margin: -3px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  line-height: 1.4;
}
.hero-direct-email a { color: rgba(255,255,255,.85); text-decoration-color: var(--green); text-underline-offset: 3px; }

.status-action {
  width: 100%;
  border: 0;
  border-left: 1px dotted rgba(255,255,255,.2);
  background: rgba(104,173,73,.055);
  color: var(--white);
  text-align: left;
  transition: background .2s ease;
}
.status-action:hover,
.status-action:focus-visible { background: rgba(104,173,73,.14); outline: 0; }
.status-action strong { color: var(--white); }

.process-cta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}
.text-action {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(104,173,73,.68);
  background: transparent;
  color: var(--white);
  font: 600 11px/1.2 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-action b { color: var(--green); margin-left: 5px; }

.coverage-action {
  width: fit-content;
  margin: 0 0 15px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(104,173,73,.64);
  background: transparent;
  color: var(--white);
  font: 600 10px/1.25 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.coverage-action b { margin-left: 5px; color: var(--green); }
.coverage-facts { margin-top: 0 !important; }

.inquiry-hub {
  height: auto !important;
  min-height: 0 !important;
  padding: 64px 0 58px !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(104,173,73,.08), transparent 23%),
    linear-gradient(110deg,#f3f1ec,#e9e5dd);
}
.inquiry-hub-inner { display: grid; gap: 30px; }
.inquiry-hub-heading { max-width: 900px; }
.inquiry-hub-heading h2 { margin-bottom: 12px; }
.inquiry-hub-heading > p:not(.eyebrow) { max-width: 820px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.inquiry-hub-grid { display: grid; grid-template-columns: minmax(0,1fr) 314px; gap: 34px; align-items: stretch; }
.inquiry-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.inquiry-card {
  min-height: 142px;
  padding: 20px 18px 18px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 18px;
  gap: 12px;
  align-items: start;
  border: 1px solid #cbc7bd;
  border-top: 2px solid transparent;
  background: rgba(255,255,255,.66);
  color: var(--ink);
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.inquiry-card:hover,
.inquiry-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  border-top-color: var(--green);
  background: var(--white);
  box-shadow: 0 14px 26px rgba(20,23,25,.08);
  outline: 0;
}
.inquiry-code { color: var(--green-dark); font: 700 12px/1 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .09em; }
.inquiry-card > span:nth-child(2) { display: grid; }
.inquiry-card strong { font: 650 17px/1.12 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .02em; text-transform: uppercase; }
.inquiry-card small { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.48; }
.inquiry-card b { color: var(--green); font-size: 18px; line-height: 1; transition: transform .18s ease; }
.inquiry-card:hover b { transform: translateX(3px); }
.inquiry-contact-card { height: auto !important; min-height: 100%; box-shadow: none; }

.next-steps-panel {
  display: grid;
  grid-template-columns: 290px minmax(0,1fr);
  gap: 34px;
  align-items: center;
  padding: 26px 30px;
  background: linear-gradient(110deg,#1b2225,#111618);
  color: var(--white);
  border-left: 3px solid var(--green);
}
.next-steps-heading .eyebrow { margin-bottom: 7px; color: var(--green); }
.next-steps-heading h3 { margin: 0; font: 600 21px/1.18 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; text-transform: uppercase; }
.next-steps-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.next-steps-list li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; }
.next-steps-list li > span { color: var(--green); font: 700 10px/1.2 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .08em; }
.next-steps-list div { display: grid; }
.next-steps-list strong { font: 600 13px/1.22 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .025em; text-transform: uppercase; }
.next-steps-list small { margin-top: 5px; color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.45; }

.faq-section { padding: 66px 0 70px; }
.faq-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 360px minmax(0,1fr); gap: 76px; align-items: start; }
.faq-heading { position: sticky; top: 30px; }
.faq-heading h2 { margin-bottom: 16px; }
.faq-heading > p:not(.eyebrow) { margin: 0 0 24px; color: rgba(255,255,255,.61); font-size: 14px; line-height: 1.65; }
.faq-list { border-top: 1px solid rgba(255,255,255,.15); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.13); }
.faq-list summary {
  position: relative;
  padding: 20px 48px 20px 0;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  font: 600 16px/1.25 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--green); font: 400 25px/1 sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -4px 0 20px; color: rgba(255,255,255,.61); font-size: 13px; line-height: 1.65; }

.inquiry-modal {
  width: min(1160px, calc(100% - 36px));
  max-height: min(88vh, 860px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(104,173,73,.68);
  background: transparent;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
}
.inquiry-modal::backdrop { background: rgba(4,7,8,.82); backdrop-filter: blur(5px); }
.modal-shell { position: relative; display: grid; grid-template-columns: 330px minmax(0,1fr); min-height: 620px; max-height: min(88vh,860px); background: var(--paper); }
.modal-close {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(20,23,25,.18);
  background: rgba(255,255,255,.64);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}
.modal-close:hover,
.modal-close:focus-visible { border-color: var(--green); color: var(--green-dark); outline: 0; }
.modal-context {
  position: relative;
  overflow: hidden;
  padding: 40px 31px 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(104,173,73,.15), transparent 30%),
    linear-gradient(145deg,#252c2f,#121719);
  color: var(--white);
  border-top: 3px solid var(--green);
}
.modal-context::after { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(104,173,73,.1); border-radius: 50%; right: -130px; bottom: -110px; box-shadow: 0 0 0 45px rgba(104,173,73,.025),0 0 0 90px rgba(104,173,73,.018); }
.modal-kicker { margin: 0 0 38px; color: rgba(255,255,255,.55); font: 600 10px/1.2 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.modal-code { display: block; margin-bottom: 13px; color: var(--green); font: 700 15px/1 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .12em; }
.modal-context h2 { margin-bottom: 15px; font-size: 38px; line-height: 1; }
.modal-context > p:not(.modal-kicker) { color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.62; }
.modal-points { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.modal-points li { position: relative; padding-left: 17px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; }
.modal-points li::before { content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 2px; background: var(--green); }
.modal-direct { position: absolute; z-index: 2; left: 31px; right: 31px; bottom: 31px; padding-top: 20px; display: grid; gap: 5px; border-top: 1px solid rgba(255,255,255,.13); }
.modal-direct span { color: var(--green); font: 600 9px/1.2 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.modal-direct a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 12px; }
.modal-form-panel { padding: 38px 46px 34px; overflow-y: auto; }
.modal-form-heading { padding-right: 38px; }
.modal-form-heading .eyebrow { margin-bottom: 9px; color: var(--green-dark); }
.modal-form-heading h3 { margin: 0 0 8px; font: 650 29px/1.08 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; text-transform: uppercase; }
.modal-form-heading > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.modal-field-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 15px; }
.modal-field-grid .field { gap: 6px; }
.modal-field-grid .field > span { font-size: 10px; }
.modal-field-grid .field input,
.modal-field-grid .field select,
.modal-field-grid .field textarea { min-height: 44px; padding: 10px 12px; background: rgba(255,255,255,.9); font-size: 13px; }
.modal-field-grid .field textarea { min-height: 82px; }
.modal-field-grid .field-full { grid-column: 1 / -1; }
.modal-form-footer { margin-top: 19px; padding-top: 17px; display: flex; justify-content: space-between; gap: 24px; align-items: center; border-top: 1px solid var(--line); }
.modal-form-footer p { max-width: 460px; margin: 0; color: #7a7d7e; font-size: 10px; line-height: 1.5; }
.modal-submit { flex: 0 0 auto; min-width: 178px; }
.modal-status { float: none; margin-top: 13px; }
.inquiry-modal[open] { animation: modal-in .2s ease-out; }
@keyframes modal-in { from { opacity: 0; transform: translateY(10px) scale(.99); } to { opacity: 1; transform: none; } }

.mobile-action-bar { display: none; }

@media (max-width: 1120px) {
  .inquiry-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .inquiry-hub-grid { grid-template-columns: minmax(0,1fr) 290px; }
  .next-steps-panel { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 300px minmax(0,1fr); gap: 45px; }
}
@media (max-width: 900px) {
  .hero-direct-email { margin-top: 2px; }
  .inquiry-hub-grid, .faq-grid { grid-template-columns: 1fr; }
  .inquiry-contact-card { min-height: 0; }
  .next-steps-list { grid-template-columns: 1fr; gap: 14px; }
  .faq-heading { position: static; }
  .modal-shell { grid-template-columns: 260px minmax(0,1fr); }
  .modal-context { padding-inline: 24px; }
  .modal-direct { left: 24px; right: 24px; }
  .modal-form-panel { padding-inline: 30px; }
}
@media (max-width: 700px) {
  body { padding-bottom: 62px; }
  .inquiry-hub { padding: 50px 0 !important; }
  .inquiry-options { grid-template-columns: 1fr; }
  .inquiry-card { min-height: 118px; }
  .next-steps-panel { padding: 24px 21px; }
  .faq-section { padding: 52px 0; }
  .inquiry-modal { width: calc(100% - 18px); max-height: calc(100vh - 26px); }
  .modal-shell { display: block; min-height: 0; max-height: calc(100vh - 26px); overflow-y: auto; }
  .modal-context { padding: 28px 24px 24px; }
  .modal-context h2 { font-size: 31px; }
  .modal-kicker { margin-bottom: 22px; }
  .modal-points { grid-template-columns: 1fr 1fr; gap: 8px 14px; margin-top: 18px; }
  .modal-direct { position: static; margin-top: 22px; }
  .modal-form-panel { overflow: visible; padding: 28px 22px 26px; }
  .modal-field-grid { grid-template-columns: 1fr; }
  .modal-field-grid .field-full { grid-column: auto; }
  .modal-form-footer { flex-direction: column; align-items: stretch; }
  .modal-submit { width: 100%; }
  .mobile-action-bar {
    position: fixed;
    z-index: 140;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    background: #0d1113;
    border-top: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  }
  .mobile-action-bar a,
  .mobile-action-bar button { display: flex; justify-content: center; align-items: center; gap: 7px; border: 0; color: var(--white); text-decoration: none; font: 600 11px/1 Oswald, "PT Sans Narrow", "Arial Narrow", sans-serif; letter-spacing: .07em; text-transform: uppercase; }
  .mobile-action-bar a { background: #171d20; }
  .mobile-action-bar button { background: var(--green); }
}

@media (min-width: 1121px) {
  .coverage-copy { padding-block: 26px !important; }
  .coverage-facts > div { padding: 7px 0 !important; }
  .coverage-action { margin-bottom: 10px; }
}

.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
section[id] { scroll-margin-top: 88px; }
@media (max-width: 900px) { section[id] { scroll-margin-top: 82px; } }

/* =========================================================
   V6 VERIFIED POLISH PASS
   Shared full-bleed feature split, sticky header, and hero
   action/breathing-room corrections.
   ========================================================= */

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1200 !important;
  background: rgba(12, 16, 18, .94) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

@media (min-width: 1121px) {
  .hero {
    height: 668px !important;
    min-height: 668px !important;
  }

  .hero-copy {
    padding-top: 70px !important;
    padding-bottom: 66px !important;
  }

  .hero .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
  }

  .hero-actions {
    margin-top: 34px !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }

  .contact-button,
  .contact-button-primary {
    min-width: 286px;
  }

  .contact-button-primary {
    background: transparent !important;
    border-color: var(--green) !important;
    color: var(--white);
  }

  .contact-button-primary:hover,
  .contact-button-primary:focus-visible {
    background: rgba(104,173,73,.12) !important;
  }

  .contact-button-primary .contact-icon {
    color: var(--green) !important;
  }

  .contact-button-primary small {
    color: rgba(255,255,255,.58) !important;
  }

  .hero-direct-email {
    width: 100%;
    margin: 12px 0 12px !important;
    color: rgba(255,255,255,.64);
    font-size: 12.5px !important;
    line-height: 1.5;
  }

  .hero-direct-email a {
    font-weight: 500;
  }

  .status-action {
    background: transparent !important;
    border-left: 1px dotted rgba(255,255,255,.2) !important;
  }

  .status-action:hover,
  .status-action:focus-visible {
    background: rgba(255,255,255,.035) !important;
  }

  /* One shared full-bleed split for the location panel and the 2027 field.
     At 1920px: 280px page gutter + 385px content + 42px breathing room = 707px. */
  .coverage > .container.coverage-grid,
  .coverage-grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: calc(max(44px, (100vw - var(--container)) / 2) + 427px) minmax(0, 1fr) !important;
    gap: 0 !important;
    height: 487px !important;
    min-height: 487px !important;
    align-items: stretch !important;
  }

  .coverage-copy {
    min-width: 0;
    width: auto !important;
    padding: 28px 42px 28px max(44px, calc((100vw - var(--container)) / 2)) !important;
    justify-content: center;
  }

  .service-map {
    position: relative;
    width: 100% !important;
    height: 487px !important;
    min-height: 487px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 0 !important;
    background: #111516 !important;
  }

  .service-map img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    background: #111516;
  }

  .service-map::before {
    display: block !important;
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 120px;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(18, 23, 25, .96) 0%,
      rgba(18, 23, 25, .73) 34%,
      rgba(18, 23, 25, .32) 68%,
      rgba(18, 23, 25, 0) 100%
    ) !important;
  }

  .allocation-inner {
    width: 100% !important;
    max-width: none !important;
    height: 448px !important;
    min-height: 448px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: calc(max(44px, (100vw - var(--container)) / 2) + 427px) minmax(0, 1fr) !important;
    gap: 0 !important;
    align-items: stretch !important;
  }

  .year-display {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(150px, 13.2vw, 206px) !important;
    line-height: .82 !important;
  }

  .allocation-copy {
    max-width: 650px !important;
    padding: 46px 0 !important;
    align-self: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky !important;
    top: 0;
  }

  .contact-button-primary {
    background: transparent !important;
    border-color: var(--green) !important;
  }

  .hero-direct-email {
    margin-top: 12px !important;
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }

  .status-action {
    background: transparent !important;
  }
}

@media (min-width: 1121px) {
  .year-display {
    transform: none !important;
    transform-origin: center center !important;
    letter-spacing: -.045em !important;
  }
}

/* Keep the revised action treatment consistent between desktop and tablet. */
.contact-button-primary {
  background: transparent !important;
  border-color: var(--green) !important;
}
.contact-button-primary:hover,
.contact-button-primary:focus-visible {
  background: rgba(104,173,73,.12) !important;
}
.contact-button-primary .contact-icon { color: var(--green) !important; }
.contact-button-primary small { color: rgba(255,255,255,.58) !important; }
.hero-direct-email {
  margin-top: 12px !important;
  margin-bottom: 8px !important;
  font-size: 12px !important;
  line-height: 1.5;
}
.status-action { background: transparent !important; }
.status-action:hover,
.status-action:focus-visible { background: rgba(255,255,255,.035) !important; }

/* Wide-gamut (Display-P3) brand color: restate the SAME colors so Safari/iPhone
   renders accents at desktop vibrancy. sRGB displays + Android keep the hex above. */
@supports (color:color(display-p3 1 1 1)){
  @media (color-gamut:p3){
    :root{
      --green:color(display-p3 0.4078 0.6784 0.2863);
      --green-dark:color(display-p3 0.2941 0.5294 0.2039);
      --green-pale:color(display-p3 0.8745 0.9176 0.8471);
    }
    .map-yard,.map-title{fill:color(display-p3 0.4078 0.6784 0.2863);}
  }
}

/* Section video (Product & Quality shaker loop): fills the media slot, poster + background-image are the fallback. */
.product-video { position: relative; overflow: hidden; }
.product-video .section-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .product-video .section-video { display: none; } }

/* Cinematic full-bleed video interlude (loader loop) - deliberately NOT a content section (no eyebrow/lead). */
.yard-motion { position: relative; overflow: hidden; background: #0e1113; min-height: 64vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.yard-motion .yard-motion-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.yard-motion .yard-motion-shade { position: absolute; inset: 0; z-index: 1; background: radial-gradient(140% 130% at 50% 46%, rgba(12,17,19,.30) 0%, rgba(12,17,19,.60) 58%, rgba(12,17,19,.9) 100%); }
.yard-motion .yard-motion-inner { position: relative; z-index: 2; padding: 0 24px; }
.yard-motion .yard-motion-title { color: #fff; font-size: clamp(2.1rem, 5.4vw, 4.6rem); line-height: 1.01; letter-spacing: .5px; text-shadow: 0 2px 34px rgba(0,0,0,.55); }
.yard-motion .yard-motion-title em { color: var(--green); font-style: normal; }
.yard-motion .yard-motion-rule { width: 56px; height: 3px; background: var(--green); margin: 24px auto 0; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) { .yard-motion .yard-motion-video { display: none; } }
@media (max-width: 700px) { .yard-motion { min-height: 50vh; } }

/* Stateline "One yard. Four-county reach" video (loader loop). */
.yard-overview-media.has-video { position: relative; overflow: hidden; }
.yard-overview-media.has-video .section-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .yard-overview-media.has-video .section-video { display: none; } }
