:root {
  --ink: #151714;
  --ink-soft: #252821;
  --yellow: #f3d51c;
  --yellow-light: #fff36a;
  --cream: #f5f0e4;
  --white: #fffef9;
  --muted: #77786f;
  --line: rgba(21, 23, 20, .14);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 22px;
  --shadow: 0 24px 70px rgba(13, 14, 11, .16);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 132px); }
.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: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: linear-gradient(to bottom, rgba(10, 11, 9, .9), rgba(10, 11, 9, .55) 70%, transparent);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header > :not(.header-treads) { position: relative; z-index: 2; }
.header-treads {
  position: absolute;
  z-index: 1;
  inset: 4px 24% 4px 24%;
  pointer-events: none;
  background: url("/assets/images/header-tire-tracks.png") center / cover no-repeat;
  opacity: .1;
  filter: saturate(.7) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.site-header.is-scrolled {
  background: rgba(18, 20, 17, .96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 9px;
}
.brand-icon {
  width: 38px;
  height: 42px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 5px 1fr;
  align-items: center;
  padding: 5px 4px;
  border: 2px solid var(--yellow);
  border-radius: 8px 8px 14px 14px;
  color: var(--white);
  background: rgba(15, 16, 14, .8);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  transform: skew(-4deg);
}
.brand-icon b { font-size: inherit; }
.brand-icon i {
  align-self: stretch;
  position: relative;
  display: block;
  background: var(--yellow);
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
}
.brand-icon i::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: var(--ink);
  box-shadow: 0 8px 0 var(--ink), 0 16px 0 var(--ink);
}
.brand-name {
  display: grid;
  font-size: 16px;
  line-height: .84;
  letter-spacing: -.035em;
  transform: skew(-5deg);
}
.brand-name strong:last-child { color: var(--yellow); }
.brand-rule {
  max-width: 116px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .38);
  font-size: 8px;
  line-height: 1.15;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 30px; font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; padding-block: 12px; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-contact {
  justify-self: end;
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.header-contact a {
  display: grid;
  align-content: center;
  min-height: 48px;
  padding: 8px 13px;
  border-radius: 10px;
  line-height: 1.15;
}
.header-contact span { font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.header-contact strong { font-size: 14px; }
.header-text {
  border: 1px solid rgba(255, 255, 255, .3);
  text-align: center;
}
.header-text span { color: rgba(255, 255, 255, .65); }
.header-text:hover, .header-text:focus-visible { color: var(--ink); background: var(--white); }
.header-call { color: var(--ink); background: var(--yellow); text-align: right; }
.header-call span { color: #665900; }
.menu-button, .mobile-menu { display: none; }

@media (min-width: 851px) and (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .brand-rule { display: none; }
  .desktop-nav {
    justify-self: center;
    gap: 14px;
    font-size: 11px;
  }
  .header-contact { gap: 5px; }
  .header-contact a { padding-inline: 9px; }
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 9, .94) 0%, rgba(10, 11, 9, .83) 37%, rgba(10, 11, 9, .24) 72%, rgba(10, 11, 9, .08)),
    linear-gradient(0deg, rgba(10, 11, 9, .7), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 150px 110px;
}
.eyebrow, .kicker {
  margin-bottom: 18px;
  color: #6d5d00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; color: var(--yellow); }
.eyebrow span { width: 34px; height: 2px; margin-right: 12px; background: currentColor; }
.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(58px, 7.8vw, 112px);
  line-height: .86;
  letter-spacing: -.065em;
}
.hero h1 em { display: block; color: var(--yellow); font-style: normal; }
.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: var(--yellow-light); }
.button-ghost { border-color: rgba(255, 255, 255, .42); color: var(--white); }
.button-ghost:hover, .button-ghost:focus-visible { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-large { min-height: 64px; padding-inline: 30px; font-size: 15px; }
.hero-proof {
  max-width: 690px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 50px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  list-style: none;
}
.hero-proof li { display: grid; gap: 2px; }
.hero-proof strong { color: var(--yellow); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.hero-proof span { color: rgba(255, 255, 255, .65); font-size: 12px; }
.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: center;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue span { color: var(--yellow); font-size: 22px; }

.section-heading { max-width: 800px; }
.section-heading h2, .finder-copy h2, .why h2, .area-card h2, .final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.7vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
}
.section-heading > p:last-child, .finder-copy > p:last-child, .area-card p {
  max-width: 650px;
  color: #62645c;
  font-size: 17px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.service-card {
  min-height: 290px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 249, .58);
  overflow: hidden;
}
.service-card-featured {
  grid-row: span 2;
  min-height: 594px;
  color: var(--white);
  background: var(--ink);
}
.service-card-wide { position: relative; grid-column: 1 / -1; min-height: 250px; }
.service-card-concrete {
  position: relative;
  grid-column: 1 / -1;
  min-height: 380px;
  grid-template-columns: 36px minmax(0, .75fr) minmax(250px, .55fr);
  align-items: center;
  color: var(--white);
  background: #252821;
}
.service-card-concrete > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
}
.service-number { color: #62645c; font-size: 11px; font-weight: 900; }
.service-card-featured .service-number,
.service-card-concrete .service-number { color: var(--yellow); }
.service-card h3 { margin-bottom: 14px; font-size: clamp(28px, 3vw, 43px); line-height: 1; letter-spacing: -.04em; }
.service-card p { max-width: 520px; margin-bottom: 0; color: #6e7067; }
.service-card-featured p { color: rgba(255, 255, 255, .62); }
.service-label { margin-bottom: 9px !important; color: #6d5d00 !important; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.service-card-featured .service-label { color: var(--yellow) !important; }
.service-card-concrete .service-label { color: var(--yellow) !important; }
.service-card-concrete p:not(.service-label) { color: rgba(255, 255, 255, .72); }
.service-card > a {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.road-mark {
  position: absolute;
  width: 44%;
  height: 12px;
  right: -4%;
  bottom: 44px;
  transform: rotate(-9deg);
  background: repeating-linear-gradient(90deg, var(--yellow) 0 70px, transparent 70px 118px);
  opacity: .85;
}

.finder-band { padding-block: clamp(72px, 9vw, 120px); color: var(--white); background: var(--yellow); }
.finder-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; }
.finder-copy .kicker { color: #544a09; }
.finder-copy h2 { color: var(--ink); }
.finder-copy > p:last-child { color: rgba(21, 23, 20, .68); }
.finder-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 410px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.finder-options { display: grid; align-content: center; gap: 8px; padding: 24px; background: #eeeadf; }
.finder-option {
  min-height: 54px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  color: #5f615a;
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}
.finder-option:hover, .finder-option:focus-visible, .finder-option.is-active { color: var(--white); background: var(--ink); }
.finder-result { display: flex; flex-direction: column; justify-content: center; padding: 34px; color: var(--ink); }
.finder-result > span { margin-bottom: 20px; color: #6d5d00; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.finder-result p { margin-bottom: 28px; font-size: 19px; font-weight: 700; line-height: 1.45; }

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 8vw;
  align-items: end;
}
.section-heading-split > p { padding-bottom: 4px; }
.project-mosaic {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 54px;
}
.project-photo {
  position: relative;
  min-height: 280px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.project-photo-main { grid-row: 1 / 3; min-height: 572px; }
.project-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.project-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 10, 8, .94), transparent 62%);
  pointer-events: none;
}
.project-photo figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
}
.project-photo figcaption span { color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.project-photo figcaption strong { font-size: 17px; line-height: 1.15; }
.project-photo figcaption p { margin: 4px 0 0; color: rgba(255, 255, 255, .62); font-size: 11px; }
.project-photo:hover > img { transform: scale(1.025); }
.crew-video-reserve {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 6vw;
  align-items: center;
  margin-top: 72px;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 28px;
  color: var(--white);
  background: #252821;
}
.crew-video-reserve h3 { margin-bottom: 16px; font-size: clamp(30px, 4vw, 50px); line-height: .98; letter-spacing: -.045em; }
.crew-video-reserve > div > p:last-child { color: rgba(255, 255, 255, .58); }
.crew-video-reserve .kicker { color: var(--yellow); }
.crew-video-reserve .video-slot { min-height: 390px; }
.crew-video-reserve .video-placeholder { min-height: 290px; }
.video-grid {
  display: grid;
  gap: 14px;
  margin-top: 54px;
}
.video-slot {
  min-height: 310px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.video-slot-main { grid-row: span 2; min-height: 634px; }
.video-placeholder {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(243, 213, 28, .26), transparent 32%),
    repeating-linear-gradient(114deg, transparent 0 22px, rgba(255, 255, 255, .025) 22px 23px),
    linear-gradient(135deg, #31342d, #151714);
}
.video-slot-main .video-placeholder { min-height: 490px; }
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(243, 213, 28, .14);
  border-radius: 50%;
}
.play-mark {
  z-index: 1;
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 20px;
}
.video-status {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.video-slot video { width: 100%; height: 100%; object-fit: cover; background: #000; }
.video-caption { display: grid; gap: 5px; padding: 24px; }
.video-caption span { color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.video-caption strong { font-size: 18px; line-height: 1.25; }

.facebook-showcase {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 6vw;
  align-items: center;
  margin-top: 84px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(21, 23, 20, .08);
}
.facebook-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: .96;
  letter-spacing: -.05em;
}
.facebook-copy > p:not(.kicker) { margin-bottom: 26px; color: #62645c; }
.facebook-button { gap: 12px; }
.facebook-mark {
  width: 26px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: end center;
  border-radius: 50%;
  color: var(--white);
  background: #1877f2;
  font: 900 23px/1 Arial, sans-serif;
  overflow: hidden;
}
.facebook-visual {
  position: relative;
  min-height: 520px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
}
.facebook-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.facebook-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 11, 9, .96), rgba(10, 11, 9, .1) 70%);
}
.facebook-visual-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  background: rgba(15, 17, 14, .82);
  backdrop-filter: blur(10px);
}
.facebook-visual-copy .facebook-mark { width: 40px; font-size: 35px; }
.facebook-visual-copy > span { display: grid; }
.facebook-visual-copy small { color: #8bb8f5; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.facebook-visual-copy strong { font-size: 17px; line-height: 1.2; }
.facebook-visual-copy b { color: var(--yellow); font-size: 24px; }
.facebook-visual:hover > img, .facebook-visual:focus-visible > img { transform: scale(1.025); }

.local-proof { padding-block: clamp(76px, 9vw, 126px); color: var(--white); background: var(--ink); }
.local-proof-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: center; }
.local-proof-image { position: relative; overflow: hidden; border-radius: 24px; }
.local-proof-image img { width: 100%; min-height: 390px; object-fit: cover; }
.local-proof-image > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.local-proof-copy .kicker { color: var(--yellow); }
.local-proof-copy h2 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 67px); line-height: .96; letter-spacing: -.055em; }
.local-proof-copy > p:not(.kicker) { margin-bottom: 26px; color: rgba(255, 255, 255, .62); }

.why { color: var(--ink); background: #f0ebdf; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.why .kicker { color: #6d5d00; }
.why-points { display: grid; }
.why-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-block: 28px;
  border-top: 1px solid rgba(21, 23, 20, .18);
}
.why-points article:last-child { border-bottom: 1px solid rgba(21, 23, 20, .18); }
.why-points > article > span { color: #6d5d00; font-size: 11px; font-weight: 900; }
.why-points h3 { margin-bottom: 8px; font-size: 21px; }
.why-points p { margin-bottom: 0; color: #55584f; }

.area-card {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 8vw;
  padding: clamp(34px, 6vw, 78px);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(21, 23, 20, .08);
}
.area-map {
  position: relative;
  min-height: 370px;
  border: 8px solid var(--yellow);
  border-radius: 24px;
  overflow: hidden;
  background: #e8e3d6;
  box-shadow: 0 20px 55px rgba(21, 23, 20, .16);
}
.area-map iframe {
  width: 100%;
  height: 370px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.03);
}
.map-context {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(21, 23, 20, .9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  pointer-events: none;
}
.map-context span {
  color: rgba(255, 255, 255, .58);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.map-context strong { color: var(--yellow); font-size: 17px; }
.area-map > a {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(21, 23, 20, .92);
  font-size: 11px;
  font-weight: 800;
}
.area-map > a strong { color: var(--yellow); }
.area-map > a span:last-child { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.area-map > a:hover, .area-map > a:focus-visible { background: var(--ink); }

.share-ad {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 5vw;
  align-items: center;
  padding-bottom: clamp(78px, 10vw, 138px);
}
.share-ad-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}
.share-ad-copy p:not(.kicker) { margin-bottom: 26px; color: #62645c; }
.share-ad-image {
  position: relative;
  display: block;
  border: 8px solid var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.share-ad-image img { width: 100%; height: auto; }
.share-ad-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-cta { padding-block: clamp(86px, 12vw, 165px); color: var(--white); background: #2b2f28; text-align: center; }
.final-cta-inner { display: grid; justify-items: center; }
.final-cta .kicker { color: var(--yellow); }
.final-cta h2 { max-width: 900px; }
.final-contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.final-cta > div > p:last-child { margin: 22px 0 0; color: rgba(255, 255, 255, .58); font-size: 12px; }
.final-cta > div > p:last-child a { color: var(--white); font-weight: 900; }

.site-footer { padding: 56px 0 24px; color: var(--white); background: #111310; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 6vw; align-items: start; }
.brand-footer .brand-name { font-size: 24px; }
.brand-footer .brand-rule { max-width: 140px; }
.footer-contact, .campaign-credit { display: grid; gap: 5px; font-size: 13px; }
.footer-contact strong, .campaign-credit > span { color: var(--yellow); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-contact a { font-size: 20px; font-weight: 900; }
.footer-contact span, .campaign-credit small { color: rgba(255, 255, 255, .48); }
.footer-contact .footer-facebook {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}
.footer-facebook .facebook-mark { width: 22px; font-size: 19px; }
.campaign-credit a { font-size: 19px; font-weight: 900; }
.legal {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .36);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mobile-action-bar { display: none; }

@media (max-width: 850px) {
  :root { --shell: min(100% - 28px, 680px); --radius: 18px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  html { scroll-padding-top: 70px; }
  .section { padding-block: 58px; }
  .site-header {
    min-height: calc(68px + env(safe-area-inset-top));
    grid-template-columns: 1fr auto;
    padding: calc(10px + env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
    background: rgba(18, 20, 17, .92);
    overflow: visible;
  }
  .site-header .brand {
    min-width: 0;
    position: relative;
    padding-left: 70px;
  }
  .site-header .brand-mark-logo {
    position: absolute;
    z-index: 3;
    left: -7px;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translateY(-38%);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .4);
  }
  .header-treads {
    inset: calc(5px + env(safe-area-inset-top)) 66px 5px max(150px, 43vw);
    background-size: auto 72px;
    opacity: .2;
    filter: saturate(.78) contrast(1.12);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  }
  .brand-name { font-size: 15px; }
  .brand-icon { width: 34px; height: 38px; font-size: 11px; }
  .brand-rule { max-width: 105px; font-size: 7px; }
  .desktop-nav, .header-contact { display: none; }
  .menu-button {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
  }
  .menu-button span:not(.sr-only) { width: 18px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: calc(68px + env(safe-area-inset-top)) 0 0;
    z-index: 90;
    display: grid;
    align-content: start;
    padding: 34px 20px calc(100px + env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(18, 20, 17, .98);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 18px 6px; border-bottom: 1px solid rgba(255, 255, 255, .14); font-size: 24px; font-weight: 900; }
  .mobile-menu a:last-child { margin-top: 20px; border: 0; border-radius: 12px; color: var(--ink); background: var(--yellow); text-align: center; font-size: 16px; }

  .hero { min-height: 760px; align-items: flex-end; }
  .hero-image { object-position: 64% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 11, 9, .98) 0%, rgba(10, 11, 9, .9) 43%, rgba(10, 11, 9, .18) 78%),
      linear-gradient(90deg, rgba(10, 11, 9, .45), transparent);
  }
  .hero-content { padding: 118px 0 76px; }
  .hero h1 { max-width: 620px; margin-bottom: 18px; font-size: clamp(54px, 17vw, 84px); }
  .hero-copy { max-width: 560px; margin-bottom: 26px; font-size: 16px; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-proof { margin-top: 34px; padding-top: 18px; }
  .hero-proof span { display: none; }
  .scroll-cue { display: none; }

  .section-heading h2, .finder-copy h2, .why h2, .area-card h2, .final-cta h2 { font-size: clamp(39px, 12vw, 58px); }
  .services-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .service-card, .service-card-featured, .service-card-wide { grid-column: auto; grid-row: auto; min-height: 210px; padding: 22px; }
  .service-card-featured { min-height: 310px; }
  .service-card-concrete { grid-column: auto; grid-template-columns: 30px 1fr; min-height: 0; }
  .service-card-concrete > img { grid-column: 1 / -1; height: 310px; margin-top: 4px; object-position: center 18%; }
  .road-mark { width: 55%; right: 0; bottom: 30px; }

  .finder-layout, .why-layout { grid-template-columns: 1fr; gap: 36px; }
  .finder-card { grid-template-columns: 1fr; }
  .finder-options { grid-template-columns: 1fr 1fr; padding: 14px; }
  .finder-option { min-height: 64px; text-align: center; }
  .finder-result { min-height: 270px; padding: 28px; }

  .section-heading-split { grid-template-columns: 1fr; gap: 12px; }
  .project-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
    margin-top: 32px;
  }
  .project-photo, .project-photo-main { grid-row: auto; min-height: 230px; }
  .project-photo-main { grid-column: 1 / -1; min-height: 370px; }
  .project-photo, .project-photo-main {
    display: grid;
    grid-template-rows: minmax(190px, 1fr) auto;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
  }
  .project-photo-main { grid-template-rows: minmax(300px, 1fr) auto; }
  .project-photo::after { display: none; }
  .project-photo > img { min-height: 190px; }
  .project-photo-main > img { min-height: 300px; }
  .project-photo figcaption {
    position: static;
    min-height: 76px;
    padding: 12px 13px 14px;
    color: var(--ink);
    background: var(--white);
  }
  .project-photo figcaption span { color: #877300; }
  .project-photo figcaption p { display: none; }
  .project-photo figcaption strong { font-size: 14px; }
  .crew-video-reserve { grid-template-columns: 1fr; gap: 24px; margin-top: 46px; padding: 20px; }
  .crew-video-reserve .video-slot { min-height: 340px; }
  .crew-video-reserve .video-placeholder { min-height: 250px; }
  .video-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .video-slot, .video-slot-main { grid-row: auto; min-height: 340px; }
  .video-slot-main .video-placeholder, .video-placeholder { min-height: 250px; }
  .facebook-showcase { grid-template-columns: 1fr; gap: 32px; margin-top: 54px; padding: 20px; }
  .facebook-visual { min-height: 410px; }
  .local-proof { padding-block: 58px; }
  .local-proof-inner { grid-template-columns: 1fr; gap: 34px; }
  .local-proof-image img { min-height: 0; height: auto; object-fit: contain; }
  .why-points article { padding-block: 24px; }
  .area-card { grid-template-columns: 1fr; padding: 28px; }
  .area-map, .area-map iframe { min-height: 330px; height: 330px; }
  .share-ad { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .legal { align-items: flex-start; gap: 10px; flex-direction: column; }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 110;
    min-height: 70px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(21, 23, 20, .14);
    background: var(--white);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .18);
  }
  .mobile-action-bar a {
    min-width: 0;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 9px 8px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
  }
  .mobile-action-secondary { color: var(--ink); }
  .mobile-action-primary { color: var(--ink); background: var(--yellow); }
  .mobile-action-primary span { color: #645708; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
  .mobile-action-primary strong { font-size: 15px; }
}

@media (max-width: 560px) {
  .brand-rule { display: none; }
  .hero { min-height: 710px; }
  .hero h1 { font-size: clamp(51px, 16vw, 67px); }
  .hero-actions { display: none; }
  .hero-proof { display: none; }
  .service-card { grid-template-columns: 30px 1fr; gap: 12px; }
  .finder-options { grid-template-columns: 1fr; }
  .finder-option { min-height: 52px; }
  .project-photo, .project-photo-main { min-height: 0; }
  .project-photo { grid-template-rows: 170px auto; }
  .project-photo-main { grid-template-rows: 280px auto; }
  .project-photo > img { min-height: 170px; }
  .project-photo-main > img { min-height: 280px; }
  .project-photo figcaption { min-height: 82px; }
  .crew-video-reserve .video-slot, .video-slot, .video-slot-main { min-height: 315px; }
  .crew-video-reserve .video-placeholder, .video-slot-main .video-placeholder, .video-placeholder { min-height: 225px; }
  .facebook-visual {
    min-height: 0;
    display: grid;
    grid-template-rows: 280px auto;
  }
  .facebook-visual > img { position: static; min-height: 280px; }
  .facebook-visual-shade { display: none; }
  .facebook-visual-copy {
    position: static;
    padding: 14px;
    border: 0;
    border-radius: 0;
    background: var(--ink);
    backdrop-filter: none;
  }
  .facebook-visual-copy strong { font-size: 14px; }
}

@media (max-width: 560px) and (max-height: 760px) {
  .hero { min-height: calc(100svh - 70px); }
  .hero-content { padding: 98px 0 46px; }
  .hero h1 {
    max-width: 340px;
    margin-bottom: 0;
    font-size: clamp(46px, 13.8vw, 54px);
    line-height: .89;
  }
  .hero-copy { display: none; }
  .hero .kicker { margin-bottom: 16px; font-size: 10px; }
}

@media (max-width: 370px) {
  .site-header .brand { padding-left: 62px; }
  .site-header .brand-mark-logo {
    left: -6px;
    width: 66px;
    height: 66px;
    border-radius: 12px;
  }
}

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