/* Paul Luskin Paving. Daylight concrete ground, asphalt bands, one chartreuse line. */

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--concrete);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
img { max-width: 100%; height: auto; display: block; }
svg[hidden] { display: none; }
a { color: inherit; }
p { margin: 0 0 var(--s2); max-width: 56ch; }
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.06; margin: 0 0 var(--s2); }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(27px, 3.4vw, 42px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.15; }
::selection { background: var(--vis); color: #141414; }
html { scrollbar-color: #b9b6b0 var(--concrete); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: var(--radius); }
.stripe, .shoulder, .callband, .sec-band, .slab-copy, .hero-band, .dig-band { --focus: var(--vis); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.wrap { width: min(var(--wrap), 100% - clamp(32px, 8vw, 96px)); margin-inline: auto; }
.ic { width: 20px; height: 20px; flex: none; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--vis); color: #141414; font-weight: 700;
  padding: 12px 18px; border-radius: var(--radius); transition: top 0.15s ease;
}
.skip:focus-visible { top: 12px; }

/* ---------- THE STRIPE header: white road dashes across an asphalt band ---------- */
.stripe {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: var(--asphalt);
}
.stripe-line {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.stripe-dashes {
  position: absolute; left: 0; top: 50%; height: 3px;
  width: calc(100% + 88px);
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--stripe-white) 0 52px, transparent 52px 88px);
  opacity: 0.85;
}
@media (prefers-reduced-motion: no-preference) {
  .js .stripe-dashes { animation: march 30s linear infinite; }
  .stripe:hover .stripe-dashes, .stripe:focus-within .stripe-dashes { animation-play-state: paused; }
}
@keyframes march {
  from { transform: translate(0, -50%); }
  to { transform: translate(-88px, -50%); }
}
.stripe-inner {
  position: relative; height: 100%;
  display: flex; align-items: center;
  padding-inline: clamp(16px, 3.5vw, 44px);
}
.stripe-name {
  font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: 0.01em;
  color: var(--stripe-white); text-decoration: none;
  background: var(--asphalt); padding: 6px 14px;
  margin-left: clamp(0px, 24vw, 360px);
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color 0.18s ease;
}
.stripe-name:hover { color: var(--vis-hi); }
.stripe-nav { margin-left: auto; }
.stripe-nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
.stripe-nav li a {
  display: inline-flex; align-items: center; min-height: 44px; text-decoration: none;
  font-weight: 600; font-size: 15.5px; color: var(--text-dim);
  background: var(--asphalt); padding: 8px 13px;
  position: relative; transition: color 0.16s ease;
}
.stripe-nav li a::after {
  content: ""; position: absolute; left: 13px; right: 100%; bottom: 6px; height: 2px;
  background: var(--vis); transition: right 0.18s ease;
}
.stripe-nav li a:hover, .stripe-nav li a:focus-visible { color: var(--text); }
.stripe-nav li a:hover::after, .stripe-nav li a:focus-visible::after { right: 13px; }
.stripe-nav li a[aria-current="page"] { color: var(--vis); }
.stripe-nav li a[aria-current="page"]::after { right: 13px; }
.stripe-nav-phone { display: none; }
.stripe-phone {
  font-weight: 700; font-size: 16px; text-decoration: none; color: var(--text);
  font-variant-numeric: tabular-nums;
  background: var(--asphalt); padding: 8px 12px;
  margin-left: clamp(16px, 4vw, 72px);
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color 0.16s ease;
}
.stripe-phone:hover { color: var(--vis-hi); }
.stripe-toggle { display: none; }

@media (max-width: 880px) {
  :root { --header-h: 56px; }
  .stripe-name { margin-left: 0; font-size: 17px; padding-left: 4px; }
  .stripe-phone { display: none; }
  .stripe-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px; margin-left: auto;
    background: var(--asphalt); color: var(--text);
    border: 0; cursor: pointer; border-radius: var(--radius);
  }
  .stripe-toggle .ic { width: 24px; height: 24px; }
  .stripe-toggle .ic-x { display: none; }
  .stripe-toggle[aria-expanded="true"] .ic-menu { display: none; }
  .stripe-toggle[aria-expanded="true"] .ic-x { display: block; }
  .stripe-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--panel); background-image: var(--grain);
    border-bottom: 1px solid var(--hairline);
    padding: var(--s1) 0 var(--s2);
    display: none;
  }
  .stripe-nav.open { display: block; }
  .stripe-nav ul { flex-direction: column; }
  .stripe-nav li a {
    display: flex; background: none; padding: 13px clamp(20px, 6vw, 40px);
    font-size: 18px; min-height: 44px;
  }
  .stripe-nav li a::after { content: none; }
  .stripe-nav-phone {
    display: flex; align-items: center; gap: 10px;
    margin: var(--s1) clamp(20px, 6vw, 40px) 0;
    padding: 12px 0; min-height: 44px;
    color: var(--vis); font-weight: 700; font-size: 18px; text-decoration: none;
    border-top: 1px solid var(--hairline);
    font-variant-numeric: tabular-nums;
  }
}

/* ---------- buttons: press flat, no float ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--vis); color: #141414;
  font-family: var(--body); font-weight: 700; font-size: 16.5px;
  padding: 15px 26px; border: 0; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background 0.16s ease;
}
.btn:hover { background: var(--vis-hi); }
.btn:active { transform: scaleY(0.94) translateY(1px); }
.btn .ic { width: 18px; height: 18px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; text-decoration: none; color: var(--ink);
  padding: 10px 0; min-height: 44px; transition: color 0.16s ease;
}
.link-arrow .ic { width: 18px; height: 18px; transition: transform 0.18s ease; }
.link-arrow:hover { color: var(--vis-deep); }
.link-arrow:hover .ic { transform: translateX(4px); }
.slab-copy .link-arrow, .dig-band .link-arrow { color: var(--text); }
.slab-copy .link-arrow:hover, .dig-band .link-arrow:hover { color: var(--vis-hi); }

/* dashed phone lockup: the center line, borrowed as an underline */
.dash-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; text-decoration: none; font-variant-numeric: tabular-nums;
  min-height: 44px; padding-bottom: 7px;
  background-image: repeating-linear-gradient(90deg, var(--vis) 0 16px, transparent 16px 27px);
  background-repeat: no-repeat; background-position: left bottom; background-size: 100% 3px;
  transition: color 0.16s ease;
}
.dash-phone:hover { color: var(--vis-deep); }
.hero-band .dash-phone, .callband .dash-phone { color: var(--text); }
.hero-band .dash-phone:hover, .callband .dash-phone:hover { color: var(--vis-hi); }

/* ---------- hero: photo first, headline in a solid band BELOW it ---------- */
.hero-photo { position: relative; overflow: hidden; }
.hero-photo img { width: 100%; height: clamp(320px, 58svh, 620px); object-fit: cover; }
.hero-sub-page .hero-photo img { height: clamp(240px, 40svh, 440px); }
.hero-band {
  background: var(--asphalt); background-image: var(--grain);
  color: var(--text);
  padding: clamp(28px, 4.5vw, 56px) 0 clamp(30px, 4.5vw, 60px);
  border-top: 2px solid rgba(242, 240, 236, 0.42); /* the white edge line */
}
.hero-band h1 { max-width: 20ch; margin-bottom: var(--s2); }
.hero-sub { font-size: clamp(16.5px, 1.6vw, 19px); color: var(--text-dim); max-width: 52ch; margin-bottom: var(--s3); }
.hero-sub-page .hero-sub { margin-bottom: 0; }
.hero-cta { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; }
.hero-call { font-size: 18px; }

/* hero settles once */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-photo img { transform: scale(1.04); transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1); }
  .js.loaded .hero-photo img { transform: scale(1); }
  .js .hero-band .wrap > * { opacity: 0; transform: translateY(14px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1); }
  .js.loaded .hero-band .wrap > * { opacity: 1; transform: none; }
  .js.loaded .hero-band .wrap > *:nth-child(2) { transition-delay: 0.1s; }
  .js.loaded .hero-band .wrap > *:nth-child(3) { transition-delay: 0.2s; }
}

/* ---------- sections ---------- */
.sec { padding: var(--s7) 0; position: relative; }
.sec-tight { padding: var(--s6) 0; }
.sec-band { background: var(--panel); background-image: var(--grain); color: var(--text); }
.sec-band p { color: var(--text-dim); }
.light-2 { background: var(--concrete-2); }
.dim { color: var(--ink-dim); }
.sec-band .dim { color: var(--text-dim); }
.sec-head { margin-bottom: var(--s5); }
.sec-head p { color: var(--ink-dim); max-width: 52ch; }
.sec-band .sec-head p { color: var(--text-dim); }

/* roller-pass reveals */
@media (prefers-reduced-motion: no-preference) {
  .js .rv { opacity: 0; transform: scaleY(1.03); transform-origin: 50% 0; }
  .js .rv.in { opacity: 1; transform: none; transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1); }
}

/* ---------- work: full-bleed 50/50 split slabs, photo half + flat caption half ---------- */
.slabs { display: block; }
.slab {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(340px, 38vw, 470px);
  border-top: 2px solid var(--concrete);
}
.slab-media { position: relative; overflow: hidden; }
.slab-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slab-copy {
  background: var(--asphalt); background-image: var(--grain); color: var(--text);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 4.5vw, 64px) clamp(24px, 5vw, 88px);
}
.slab-copy::before { content: ""; width: 64px; height: 4px; background: var(--vis); margin-bottom: var(--s3); }
.slab-copy h2 { font-size: clamp(24px, 2.6vw, 32px); }
.slab-copy p { color: var(--text-dim); }
.slab-copy .seq { font-size: 15.5px; }
.slab-copy .seq b { color: var(--text); font-weight: 700; }
@media (max-width: 880px) {
  .slab { grid-template-columns: 1fr; }
  .slab-media { min-height: 240px; }
  .slab-media img { position: absolute; }
  .slab-copy { padding: var(--s4) clamp(20px, 6vw, 40px) var(--s5); }
}

/* "we dig, too" band */
.dig-band {
  background: var(--panel); background-image: var(--grain); color: var(--text);
  border-top: 2px solid var(--concrete);
  padding: var(--s5) 0;
}
.dig-band .wrap { display: flex; align-items: baseline; gap: var(--s4); flex-wrap: wrap; }
.dig-band .cap-title { font-family: var(--display); font-weight: 800; font-size: 22px; margin: 0; }
.dig-band p { color: var(--text-dim); margin: 0; }

/* ---------- the core (signature): photographic core sample ---------- */
.core-wrap { display: grid; grid-template-columns: minmax(280px, 5fr) 7fr; gap: var(--s6); align-items: center; }
.core-copy p { color: var(--text-dim); }
.core-note { font-size: 15.5px; color: var(--text-dim); border-top: 1px solid var(--hairline); padding-top: var(--s2); max-width: 40ch; }
.core-fig {
  margin: 0;
  display: grid; grid-template-columns: minmax(170px, 320fr) minmax(220px, 330fr);
  gap: var(--s3); align-items: stretch;
}
.core-photo { position: relative; }
.core-photo img { width: 100%; height: auto; }
.core-tags { list-style: none; margin: 0; padding: 0; position: relative; }
.core-tag { position: absolute; left: 0; right: 0; transform: translateY(-50%); padding-left: 40px; }
.core-tag::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 28px; height: 2px;
  background: rgba(234, 232, 228, 0.35);
}
#tag-top { top: 16.5%; }
#tag-binder { top: 28%; }
#tag-base { top: 57.6%; }
.tag-head { margin: 0 0 2px; }
.tag-name { font-weight: 600; font-size: 15.5px; display: block; }
.tag-depth { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--vis); }
.tag-role { color: var(--text-dim); font-size: 14px; line-height: 1.45; margin: 2px 0 0; max-width: 26ch; }
@media (max-width: 880px) {
  .core-wrap { grid-template-columns: 1fr; gap: var(--s4); }
  .core-fig { align-items: center; grid-template-columns: minmax(150px, 5fr) 6fr; }
  .core-tags { position: static; display: flex; flex-direction: column; justify-content: center; gap: var(--s3); }
  .core-tag { position: static; transform: none; padding-left: 0; }
  .core-tag::before { content: none; }
  .tag-name { font-size: 14px; }
  .tag-depth { font-size: 16px; }
  .tag-role { font-size: 13.5px; }
}

/* ---------- season (light band, two sentences, no chart) ---------- */
.season-grid { display: grid; grid-template-columns: 5fr 6fr; gap: var(--s6); align-items: center; }
.season-note { font-weight: 700; font-size: 15.5px; color: var(--vis-deep); margin: 0; }
@media (max-width: 880px) { .season-grid { grid-template-columns: 1fr; gap: var(--s3); } }

/* ---------- coverage: highway exit-sign panel ---------- */
.cover-grid { display: grid; grid-template-columns: 5fr 6fr; gap: var(--s6); align-items: center; }
.exit-sign {
  background: var(--sign-green); color: #fff;
  border-radius: 14px; padding: 10px;
  box-shadow: var(--shadow);
  max-width: 460px;
}
.exit-sign-inner {
  border: 3px solid #fff; border-radius: 8px;
  padding: clamp(18px, 2.6vw, 28px) clamp(18px, 2.8vw, 32px) clamp(14px, 2vw, 22px);
}
.sign-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 10px; margin: 0 0 12px;
  font-weight: 700; font-size: 17px; letter-spacing: 0.02em; max-width: none;
}
.sign-head small { font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); }
.exit-sign ul { list-style: none; margin: 0; padding: 0; }
.exit-sign li {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s2);
  font-size: clamp(17px, 1.8vw, 20px); font-weight: 600;
  padding: 6px 0;
}
.exit-sign li b { font-weight: 700; font-variant-numeric: tabular-nums; }
.sign-note { font-size: 15.5px; color: var(--ink-dim); margin: var(--s2) 0 0; }
@media (max-width: 880px) {
  .cover-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .exit-sign { max-width: none; }
}

/* ---------- since 1982 ---------- */
.since-grid { display: grid; grid-template-columns: 6fr 5fr; gap: var(--s6); align-items: center; }
.since-grid img { border-radius: var(--radius); }
.since-grid .rv p { color: var(--ink-dim); }
.factline { margin-top: var(--s4); font-size: 16px; color: var(--ink-dim); max-width: none; }
.factline::before { content: ""; display: block; width: 64px; height: 4px; background: var(--vis); margin-bottom: var(--s3); }
.factline b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
@media (max-width: 880px) {
  .since-grid { grid-template-columns: 1fr; gap: var(--s4); }
}

/* ---------- call band ---------- */
.callband { background: var(--asphalt); background-image: var(--grain); color: var(--text); }
.callband p { color: var(--text-dim); }
.callband .dash-phone {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  padding-bottom: 10px; background-size: 100% 3px;
}
.callband .dash-phone .ic { width: clamp(22px, 2.4vw, 28px); height: clamp(22px, 2.4vw, 28px); }
.callband .btn { margin-top: var(--s4); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: var(--s7); align-items: start; }
.contact-phone {
  font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3.2vw, 36px);
  color: var(--ink); padding-bottom: 10px;
}
.contact-phone:hover { color: var(--vis-deep); }
.contact-phone .ic { width: 26px; height: 26px; }
.contact-addr { border-top: 1px solid var(--hairline-ink); margin-top: var(--s4); padding-top: var(--s3); color: var(--ink-dim); }
.contact-addr strong { color: var(--ink); font-weight: 600; }
.contact-map-note { font-size: 15.5px; color: var(--ink-dim); }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--s5); }
}

/* form (light ground) */
.form { display: grid; gap: var(--s3); grid-template-columns: 1fr 1fr; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: 15.5px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: #FFFFFF; color: var(--ink);
  border: 1px solid rgba(25, 25, 23, 0.28); border-radius: var(--radius);
  padding: 13px 14px; font: inherit; font-size: 16px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='m3 6 5 5 5-5' fill='none' stroke='%23191917' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--vis-deep); box-shadow: 0 0 0 2px rgba(78, 90, 0, 0.25);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { grid-column: 1 / -1; border-left: 3px solid var(--vis-deep); background: #FFFFFF; padding: var(--s2) var(--s3); border-radius: var(--radius); display: none; }
.form-msg.show { display: block; }
.form-msg a { color: var(--vis-deep); font-weight: 700; text-decoration: none; }
.form-msg p { margin: 0; }

/* ---------- footer: the road shoulder ---------- */
.shoulder {
  border-top: 2px solid rgba(242, 240, 236, 0.42); /* the white edge line */
  background: #121212; background-image: var(--grain);
  color: var(--text);
  padding: var(--s5) 0 max(var(--s4), env(safe-area-inset-bottom));
}
.shoulder-top { display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; align-items: start; }
.shoulder-name { font-family: var(--display); font-weight: 800; font-size: 19px; margin-bottom: 6px; }
.shoulder-addr { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; }
.shoulder-addr a {
  color: var(--text); text-decoration: none; font-weight: 600; font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: center; min-height: 44px; padding: 4px 2px;
}
.shoulder-addr a:hover { color: var(--vis-hi); }
.shoulder-nav { display: flex; gap: var(--s3); flex-wrap: wrap; }
.shoulder-nav a {
  color: var(--text-dim); text-decoration: none; font-size: 15.5px; font-weight: 600;
  padding: 12px 2px; min-height: 44px; display: inline-flex; align-items: center;
  transition: color 0.16s ease;
}
.shoulder-nav a:hover { color: var(--vis-hi); }
.shoulder-legal { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid var(--hairline); }
.shoulder-legal p { color: rgba(233, 231, 227, 0.55); font-size: 13.5px; margin: 0 0 6px; max-width: none; }

/* ---------- mobile call bar: concrete ground, one chartreuse call strip ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  display: none; gap: 1px; background: var(--concrete);
  border-top: 1px solid rgba(25, 25, 23, 0.22);
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  transform: translateY(0); transition: transform 0.25s ease;
}
.callbar.hide { transform: translateY(110%); }
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; text-decoration: none; font-weight: 700; font-size: 15.5px;
  border-radius: var(--radius);
}
.callbar-call { background: var(--vis); color: #141414; flex: 1.3; }
.callbar-call:active { transform: scaleY(0.96); }
.callbar-est { background: var(--asphalt); color: var(--text); }
.callbar-est .ic { width: 16px; height: 16px; }
@media (max-width: 880px) {
  .callbar { display: flex; }
  body { padding-bottom: 62px; }
}

/* ---------- reduced motion: static page stays complete ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rv, .js .hero-band .wrap > * { opacity: 1 !important; transform: none !important; }
  .js .hero-photo img { transform: none !important; }
}
