:root {
  --ink: #171819;
  --ink-soft: #252728;
  --charcoal: #303234;
  --orange: #ff6b16;
  --orange-dark: #d94800;
  --yellow: #ffc11a;
  --cream: #f6f1e8;
  --paper: #ffffff;
  --muted: #6b6e70;
  --line: #dedbd5;
  --success: #1f7a45;
  --danger: #a9271e;
  --shadow: 0 20px 60px rgba(10, 11, 12, 0.18);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 4px;
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.offer-bar {
  position: relative;
  z-index: 30;
  color: #231800;
  background: var(--yellow);
  font-size: 14px;
  line-height: 1.35;
}

.offer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 34px;
}

.offer-bar a {
  font-weight: 800;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  color: var(--paper);
  background: rgba(22, 23, 24, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-family: Impact, "Arial Narrow", ui-sans-serif, sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: #c3c5c6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 193, 26, 0.75);
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.button--primary {
  color: #221302;
  background: linear-gradient(135deg, var(--yellow), #ff8a19);
  box-shadow: 0 12px 26px rgba(255, 107, 22, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #ffd04c, #ff9f3f);
  box-shadow: 0 16px 32px rgba(255, 107, 22, 0.32);
}

.button--ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.55);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--orange-dark);
}

.button--full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.button__busy {
  display: none;
}

.button.is-loading .button__idle {
  display: none;
}

.button.is-loading .button__busy {
  display: inline;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--paper);
  background: #131516;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 14, 0.94) 0%, rgba(12, 13, 14, 0.78) 43%, rgba(12, 13, 14, 0.52) 100%),
    linear-gradient(0deg, rgba(12, 13, 14, 0.42), transparent 50%),
    url("/assets/images/paving-crew.jpg") center 58% / cover no-repeat;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.015);
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 55%, rgba(255, 107, 22, 0.13) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.72fr);
  gap: 70px;
  align-items: center;
  min-height: 760px;
  padding-block: 72px;
}

.hero__copy {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 3px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--orange-dark);
}

.hero h1,
.section h2,
.final-cta h2,
.legal-content h1,
.error-page h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", ui-sans-serif, sans-serif;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(54px, 6.4vw, 92px);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #e2e3e3;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero__actions,
.final-cta__actions,
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 0;
  margin: 31px 0 0;
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.hero__proof li {
  position: relative;
  padding-left: 21px;
}

.hero__proof li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 950;
}

.estimate-card {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-top: 6px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.estimate-card::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 28%;
  height: 6px;
  background: var(--yellow);
}

.estimate-card__heading {
  padding: 28px 32px 18px;
}

.estimate-card__heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.estimate-card__heading p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.estimate-card .eyebrow {
  margin-bottom: 9px;
}

.lead-form {
  padding: 0 32px 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #36383a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #f8f7f4;
  border: 1px solid #c9c7c2;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1.3;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 22, 0.13);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-legal {
  margin: 8px 0 0;
  color: #777a7c;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.form-legal a {
  color: #4c4f51;
}

.trust-strip {
  position: relative;
  z-index: 3;
  color: var(--paper);
  background:
    linear-gradient(110deg, var(--orange-dark), var(--orange) 44%, #ff8c26 100%);
}

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

.trust-strip__grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 18px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip strong {
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip span {
  max-width: 130px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding-block: 110px;
}

.section h2,
.final-cta h2 {
  font-size: clamp(46px, 5.4vw, 68px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.68fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.services {
  background:
    linear-gradient(rgba(23, 24, 25, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 25, 0.025) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 335px;
  padding: 32px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(20, 21, 22, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(255, 107, 22, 0.55);
  box-shadow: 0 18px 45px rgba(20, 21, 22, 0.12);
  transform: translateY(-6px);
}

.service-card--featured {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card__number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #c5c6c7;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 24px;
}

.service-card--featured .service-card__number {
  color: #6a6c6d;
}

.service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 29px;
  color: #281605;
  background: var(--yellow);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p {
  margin: 16px 0 45px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card--featured p {
  color: #c8cacb;
}

.service-card a {
  position: absolute;
  bottom: 29px;
  left: 32px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card--featured a {
  color: var(--yellow);
}

.service-card a span {
  margin-left: 5px;
  transition: margin 150ms ease;
}

.service-card a:hover span {
  margin-left: 10px;
}

.about {
  color: var(--paper);
  background: var(--ink);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.about__media {
  position: relative;
  min-height: 625px;
}

.about__media::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 0;
  width: 44%;
  height: 46%;
  border-top: 6px solid var(--orange);
  border-left: 6px solid var(--orange);
}

.about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.about__badge {
  position: absolute;
  right: -34px;
  bottom: 42px;
  display: grid;
  width: 170px;
  height: 170px;
  place-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 8px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-6deg);
}

.about__badge strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.about__badge span {
  display: block;
  max-width: 110px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about__copy {
  padding-block: 40px;
}

.about__copy p {
  color: #c9cbcc;
}

.about__copy .about__lead {
  margin-top: 30px;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
  padding: 0;
  margin: 31px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.check-list span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
  transition: margin 150ms ease;
}

.text-link:hover span {
  margin-left: 13px;
}

.projects {
  color: var(--paper);
  background: #252728;
}

.section-heading--light > p {
  color: #c9cbcc;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-template-rows: 310px 310px;
  gap: 16px;
}

.project-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #101112;
}

.project-card--wide {
  grid-row: 1 / span 2;
}

.project-card--tall {
  grid-row: 1 / span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.89;
  transition: transform 450ms ease, opacity 450ms ease;
}

.project-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.project-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px 18px 17px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area {
  overflow: hidden;
  background: var(--cream);
}

.service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 80px;
  align-items: center;
}

.service-area__copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.county-list span {
  padding: 8px 12px;
  color: #6c2a08;
  background: #ffe5d3;
  border: 1px solid #ffc69f;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-area address {
  margin: 25px 0 30px;
  color: #55585a;
  font-size: 15px;
  line-height: 1.6;
}

.service-area address strong {
  color: var(--ink);
}

.service-area__visual {
  position: relative;
  aspect-ratio: 1;
  min-height: 520px;
}

.service-area__visual::before {
  content: "";
  position: absolute;
  inset: 2%;
  background:
    radial-gradient(circle at 63% 41%, rgba(255, 193, 26, 0.17), transparent 30%),
    linear-gradient(45deg, transparent 48%, rgba(23, 24, 25, 0.045) 49%, rgba(23, 24, 25, 0.045) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(23, 24, 25, 0.045) 49%, rgba(23, 24, 25, 0.045) 51%, transparent 52%);
  background-size: auto, 38px 38px, 38px 38px;
  clip-path: polygon(22% 1%, 66% 6%, 98% 24%, 89% 77%, 54% 97%, 17% 83%, 1% 43%);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 54%;
  border: 2px dashed rgba(255, 107, 22, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring--outer {
  width: 82%;
  height: 82%;
}

.map-ring--middle {
  width: 58%;
  height: 58%;
}

.map-ring--inner {
  width: 32%;
  height: 32%;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 54%;
  display: grid;
  min-width: 170px;
  padding: 16px 18px 15px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(23, 24, 25, 0.23);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 12px solid transparent;
  border-top-color: var(--ink);
  transform: translateX(-50%);
}

.map-pin > span {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border: 5px solid var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
}

.map-pin strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.map-pin small {
  color: #c4c6c7;
  font-size: 11px;
  font-weight: 700;
}

.map-label {
  position: absolute;
  color: #5e6062;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label--one {
  top: 16%;
  right: 19%;
}

.map-label--two {
  top: 56%;
  left: 8%;
}

.map-label--three {
  right: 8%;
  bottom: 18%;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 100px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq__intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq__intro .text-link {
  margin-top: 16px;
  color: var(--orange-dark);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--orange-dark);
  transition: transform 160ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 710px;
  padding: 0 54px 24px 0;
  margin: -5px 0 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.final-cta__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 16, 17, 0.96), rgba(15, 16, 17, 0.76)),
    url("/assets/images/driveway-paving.jpg") center / cover no-repeat;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.final-cta h2 {
  max-width: 800px;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 630px;
  color: #d0d2d3;
  font-size: 18px;
}

.site-footer {
  padding-top: 74px;
  color: #d5d6d6;
  background: #101112;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.7fr;
  gap: 55px;
  padding-bottom: 62px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.footer-brand div {
  display: grid;
  line-height: 1.35;
}

.footer-brand strong {
  color: var(--paper);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-brand span {
  max-width: 210px;
  color: #949798;
  font-size: 13px;
}

.site-footer__grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  color: #d5d6d6;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
  text-decoration-color: var(--orange);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px 24px;
  color: #8d9091;
  border-top: 1px solid #2d2f30;
  font-size: 11px;
  font-weight: 650;
}

.site-footer--simple {
  padding-top: 0;
}

.mobile-cta {
  display: none;
}

.legal-page {
  background: var(--cream);
}

.legal-content {
  max-width: 830px;
  padding-block: 90px 110px;
}

.legal-content h1,
.error-page h1 {
  font-size: clamp(50px, 7vw, 78px);
}

.legal-content h2 {
  margin: 40px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.legal-content p,
.legal-content address {
  color: #55585a;
}

.legal-content .legal-updated {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-content a:not(.button) {
  color: var(--orange-dark);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--cream);
}

.error-page__content {
  max-width: 720px;
  padding-block: 80px;
  text-align: center;
}

.error-page__content > img {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  object-fit: cover;
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.error-page .eyebrow {
  justify-content: center;
}

.error-page p {
  color: var(--muted);
}

.error-page .hero__actions {
  justify-content: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 1040px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 13px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(355px, 0.73fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.8vw, 74px);
  }

  .trust-strip__grid > div {
    padding-inline: 17px;
  }

  .service-card {
    padding: 27px;
  }

  .service-card a {
    left: 27px;
  }

  .about__grid {
    gap: 58px;
  }

  .about__badge {
    right: -20px;
  }

  .project-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 300px);
  }

  .project-card--wide {
    grid-row: 1 / span 2;
  }

  .project-card--tall {
    grid-row: auto;
  }

  .project-card:nth-child(4) {
    display: none;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(34px + var(--header-height));
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px;
    background: #18191a;
    border-top: 1px solid #343637;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav > a:not(.button) {
    padding: 14px 10px;
    border-bottom: 1px solid #303233;
    font-size: 16px;
  }

  .site-nav .button {
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    display: block;
    min-height: auto;
    padding-block: 85px 0;
  }

  .hero__copy {
    max-width: 760px;
    padding-bottom: 65px;
  }

  .estimate-card {
    width: min(650px, 100%);
    margin-inline: auto;
    transform: translateY(34px);
  }

  .trust-strip {
    padding-top: 34px;
  }

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

  .trust-strip__grid > div:nth-child(odd) {
    border-left: 0;
  }

  .trust-strip__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading > p {
    max-width: 680px;
    margin-top: 20px;
  }

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

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

  .about__media {
    width: min(650px, 92%);
    min-height: 570px;
  }

  .about__copy {
    padding-block: 0;
  }

  .service-area__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-area__visual {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq__intro {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 98px;
  }

  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

  .offer-bar__inner {
    justify-content: space-between;
  }

  .offer-bar__inner strong {
    font-size: 12px;
  }

  .offer-bar a {
    white-space: nowrap;
  }

  .brand img {
    width: 49px;
    height: 49px;
  }

  .brand strong {
    font-size: 20px;
  }

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

  .hero__backdrop {
    background:
      linear-gradient(180deg, rgba(12, 13, 14, 0.76) 0%, rgba(12, 13, 14, 0.95) 72%, #121314 100%),
      url("/assets/images/paving-crew.jpg") 58% top / auto 590px no-repeat;
  }

  .hero__grid {
    padding-top: 62px;
  }

  .hero__copy {
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.5vw, 68px);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    gap: 9px;
  }

  .estimate-card {
    width: calc(100% + 28px);
    margin-left: -14px;
    border-radius: 0;
    box-shadow: none;
  }

  .estimate-card__heading {
    padding: 27px 22px 17px;
  }

  .estimate-card__heading h2 {
    font-size: 29px;
  }

  .lead-form {
    padding: 0 22px 27px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .trust-strip__grid > div {
    display: block;
    min-height: 112px;
    padding: 20px 13px;
    text-align: center;
  }

  .trust-strip strong {
    display: block;
    font-size: 28px;
  }

  .trust-strip span {
    display: block;
    max-width: 150px;
    margin: 6px auto 0;
    font-size: 10px;
  }

  .section {
    padding-block: 70px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

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

  .service-card {
    min-height: 310px;
  }

  .about__grid {
    gap: 55px;
  }

  .about__media {
    width: calc(100% - 14px);
    min-height: 470px;
    margin-left: 14px;
  }

  .about__badge {
    right: -5px;
    bottom: -30px;
    width: 135px;
    height: 135px;
    border-width: 6px;
  }

  .about__badge strong {
    font-size: 39px;
  }

  .about__badge span {
    max-width: 90px;
    font-size: 9px;
  }

  .about__copy .about__lead {
    font-size: 18px;
  }

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

  .about__actions {
    display: grid;
  }

  .about__actions .button {
    width: 100%;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card,
  .project-card--wide,
  .project-card--tall {
    display: block;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .project-card:nth-child(4) {
    display: block;
  }

  .service-area__visual {
    min-height: 380px;
  }

  .map-pin {
    min-width: 150px;
  }

  .map-label {
    font-size: 9px;
  }

  .accordion summary {
    padding-block: 21px;
    font-size: 16px;
  }

  .accordion details p {
    padding-right: 0;
  }

  .final-cta__inner {
    padding-block: 74px;
  }

  .final-cta__actions {
    display: grid;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 6px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 64px;
    color: var(--paper);
    background: var(--ink);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease;
  }

  .mobile-cta.is-hidden {
    transform: translateY(110%);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta__call {
    border-right: 1px solid #3b3d3e;
  }

  .mobile-cta__estimate {
    color: #241600;
    background: linear-gradient(135deg, var(--yellow), #ff8a19);
  }

  .legal-page {
    padding-bottom: 0;
  }

  .legal-page .site-header .button {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .legal-content {
    padding-block: 65px 80px;
  }

  .error-page {
    padding-bottom: 0;
  }
}

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