/* SpecTech — industrial selling site. Not a generic card template. */
:root {
  --asphalt: #0c0e10;
  --panel: #14181c;
  --panel-2: #1b2127;
  --steel: #252d35;
  --paper: #efebe3;
  --paper-2: #e4dfd3;
  --ink: #14171a;
  --ink-soft: #3b4249;
  --fog: #8b949c;
  --white: #f6f3ec;
  --safety: #e24a1b;
  --safety-2: #ff6a3d;
  --sand: #c4a574;
  --line: rgba(246, 243, 236, 0.1);
  --line-dark: rgba(20, 23, 26, 0.12);
  --header: 70px;
  --container: 1140px;
  --gutter: 22px;
  --radius: 2px;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
  hanging-punctuation: first last;
}

html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--safety);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

.wrap {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--safety);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}

.h1 { font-size: clamp(40px, 7vw, 84px); }
.h2 { font-size: clamp(32px, 5vw, 58px); }
.h3 { font-size: clamp(24px, 3vw, 34px); }

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
  color: var(--fog);
  max-width: 42em;
}

.hazard {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--asphalt) 0 8px,
    var(--safety) 8px 16px
  );
}

.corner {
  position: relative;
}
.corner::before,
.corner::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--sand);
  pointer-events: none;
}
.corner::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.corner::after { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.corner > .corner-b::before,
.corner > .corner-b::after { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--safety);
  color: #fff;
}
.btn--primary:hover { background: #c93d14; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(246, 243, 236, 0.28);
}
.btn--ghost:hover { background: rgba(246, 243, 236, 0.06); }
.btn--ink {
  background: var(--ink);
  color: var(--white);
}
.btn--ink:hover { background: #000; }
.btn--block { width: 100%; }

.phone-link {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 14, 16, 0.92);
  backdrop-filter: blur(12px);
  color: var(--white);
}
.header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.logo img { width: 36px; height: 36px; }
.logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.logo__text small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--sand);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav a {
  text-decoration: none;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--fog);
}
.nav a:hover { color: var(--white); }
.nav__drop { position: relative; }
.nav__menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.nav__drop:hover .nav__menu,
.nav__drop:focus-within .nav__menu { display: grid; }
.nav__menu a {
  padding: 9px 10px;
  color: var(--white);
}
.nav__menu a:hover { background: rgba(226, 74, 27, 0.12); color: #fff; }

.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__cta .phone-link { font-size: 22px; color: #fff; }
.header__cta .phone-link:hover { color: var(--safety-2); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.mobile-nav {
  display: none;
  background: var(--asphalt);
  border-top: 1px solid var(--line);
  padding: 12px 0 20px;
}
.mobile-nav.is-open { display: block; }
.header:has(.mobile-nav.is-open) { box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .phone-link {
  display: block;
  margin: 14px 0;
  font-size: 28px;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(226, 74, 27, 0.18), transparent 55%),
    var(--asphalt);
  color: var(--white);
  padding: 36px 0 8px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: end;
}
.hero h1 { margin: 12px 0 16px; max-width: 10em; }
.hero .lede { margin: 0 0 22px; }
.hero__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0 0 26px;
  list-style: none;
}
.hero__points li {
  position: relative;
  padding-left: 16px;
  color: var(--white);
  font-size: 15px;
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--safety);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__phone span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  font-family: var(--font-display);
}
.hero__phone a {
  font-size: clamp(26px, 3vw, 32px);
  color: #fff;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 560px;
  padding-bottom: 18px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: #12161a;
  text-decoration: none;
  color: #fff;
  min-height: 240px;
}
.hero-photo:first-child { grid-row: span 1; min-height: 260px; }
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo--fit img { object-fit: contain; padding: 10px; }
.hero-photo span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 14px 14px 16px;
  background: linear-gradient(transparent 40%, rgba(12, 14, 16, 0.88));
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-photo strong { font-size: 22px; }
.hero-photo b {
  color: var(--sand);
  font-size: 18px;
  font-weight: 700;
}

.flow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.flow__item {
  padding: 16px 18px 22px;
  border-right: 1px solid var(--line);
}
.flow__item:last-child { border-right: 0; }
.flow b {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--safety);
  margin-bottom: 6px;
}
.flow span { color: var(--fog); font-size: 15px; }

/* Delivery */
.delivery {
  background: var(--safety);
  color: #fff;
  padding: 22px 0;
}
.delivery__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.delivery p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.delivery small {
  font-size: 15px;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

/* Matcher */
.matcher {
  background: var(--asphalt);
  color: var(--white);
  padding: 72px 0 80px;
}
.matcher__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  margin-top: 28px;
}
.task-list { display: grid; gap: 8px; }
.task {
  text-align: left;
  padding: 14px 16px;
  background: var(--panel);
  color: var(--white);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}
.task:hover, .task.is-on {
  border-color: var(--safety);
  background: #1a1513;
}
.task.is-on { box-shadow: inset 3px 0 0 var(--safety); }
.task i {
  font-style: normal;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--sand);
  font-size: 12px;
}

.result {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 100%;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.result__empty { color: var(--fog); }
.result__machines { display: grid; gap: 10px; }
.result-machine {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  background: var(--asphalt);
  text-decoration: none;
  color: #fff;
}
.result-machine img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  object-position: center;
  background: #12161a;
}
.result-machine strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 18px;
}
.result-machine b { color: var(--sand); font-size: 22px; font-family: var(--font-display); }
.result__note { color: var(--fog); margin: 0; }
.result__disclaimer {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fog);
}
.result__extras { color: var(--sand); font-size: 14px; }

/* Equipment */
.fleet {
  padding: 76px 0 40px;
  background: var(--paper);
}
.fleet__head { margin-bottom: 28px; max-width: 18em; }
.fleet-board {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.machine {
  background: var(--white);
  border: 1px solid var(--line-dark);
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
.machine--lead { grid-row: span 2; }
.machine__visual {
  background: var(--panel);
  position: relative;
}
.machine__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.machine--lead .machine__visual img { aspect-ratio: 3 / 4; }
.machine__visual img.is-small {
  object-fit: contain;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: #12161a;
}
.machine__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--safety);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 12px;
  padding: 6px 10px;
  text-transform: uppercase;
}
.machine__body { padding: 18px 18px 8px; }
.machine__body h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 30px;
  margin: 0 0 6px;
}
.price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--safety);
  line-height: 1;
}
.price small {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-left: 6px;
}
.machine__body ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}
.machine__body li {
  padding: 5px 0 5px 14px;
  position: relative;
}
.machine__body li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--sand);
  position: absolute;
  left: 0;
  top: 0.7em;
}
.machine__foot {
  padding: 16px 18px 18px;
  display: flex;
  gap: 10px;
}
.fleet-board + .machine {
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr auto;
  grid-template-rows: auto;
  align-items: stretch;
}
.fleet-board + .machine .machine__visual img {
  aspect-ratio: 3 / 4;
  height: 100%;
  object-fit: cover;
}
.fleet-board + .machine .machine__foot { align-items: end; flex-direction: column; justify-content: end; }

/* Works */
.works {
  padding: 40px 0 80px;
  background: var(--paper);
}
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-areas:
    "earth demo apt"
    "earth prep haul";
  gap: 12px;
  margin-top: 26px;
}
.work {
  background: var(--ink) center / cover no-repeat;
  color: var(--white);
  padding: 22px;
  text-decoration: none;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 16, 0.28), rgba(12, 14, 16, 0.88));
}
.work::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(226, 74, 27, 0.16);
  transform: rotate(18deg);
}
.work--earth {
  grid-area: earth;
  min-height: 460px;
  background-image: url("../images/works/earth-mini-ex-pit.jpg");
}
.work--demo {
  grid-area: demo;
  background-image: url("../images/works/demo-plot.jpg");
}
.work--apt {
  grid-area: apt;
  background-image: url("../images/works/demo-apt-brick.jpg");
}
.work--prep {
  grid-area: prep;
  background-image: url("../images/works/level-plot.jpg");
}
.work--prep::after { border-color: rgba(255,255,255,.18); }
.work--haul {
  grid-area: haul;
  background-image: url("../images/works/waste-scrap.jpg");
}
.work > * { position: relative; z-index: 1; }
.work h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.work ul {
  list-style: none;
  position: relative;
  z-index: 1;
  color: rgba(246, 243, 236, 0.82);
  font-size: 15px;
}
.work li { padding: 3px 0; }
.work__more {
  margin-top: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* Why */
.why {
  background: var(--asphalt);
  color: var(--white);
  padding: 80px 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}
.why__list { display: grid; }
.why-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item b {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--safety);
}
.why-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.why-item p { margin: 0; color: var(--fog); }

/* Process */
.process {
  padding: 80px 0;
  background: var(--paper);
}
.process__rail {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 80px 1fr;
}
.process__track {
  position: relative;
}
.process__track::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(var(--ink) 0 8px, transparent 8px 16px);
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  padding: 10px 0 28px;
  grid-column: 1 / -1;
}
.process-step em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--safety);
  position: relative;
  z-index: 1;
  background: var(--paper);
  width: 80px;
}
.process-step h3 {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 26px;
}
.process-step p { margin: 0; color: var(--ink-soft); max-width: 46em; }

/* Gallery */
.gallery {
  padding: 20px 0 80px;
  background: var(--paper);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}
.filter {
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  background: transparent;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.filter.is-on,
.filter:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.gallery-mosaic {
  columns: 3;
  column-gap: 12px;
}
.shot {
  background: var(--panel);
  color: #fff;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
  display: block;
}
.shot img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.shot .caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 13px;
  background: rgba(12, 14, 16, 0.72);
  padding: 4px 8px;
}
.gallery-empty {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 10px;
}
.frame {
  min-height: 220px;
  border: 1px dashed rgba(20, 23, 26, 0.28);
  background:
    linear-gradient(var(--paper-2), var(--paper-2)) padding-box,
    repeating-linear-gradient(-45deg, rgba(20,23,26,.06) 0 8px, transparent 8px 16px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.frame:first-child { min-height: 320px; }
.frame b {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 22px;
}
.frame span { color: var(--ink-soft); font-size: 14px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 16, 0.94);
  display: none;
  place-items: center;
  z-index: 60;
  padding: 56px 64px 32px;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox [data-cap] {
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: #fff;
  max-width: 70%;
}
.lightbox button {
  position: absolute;
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
}
.lightbox [data-close] { top: 12px; right: 12px; }
.lightbox [data-prev] { left: 8px; top: 50%; transform: translateY(-50%); }
.lightbox [data-next] { right: 8px; top: 50%; transform: translateY(-50%); }

/* Lead */
.lead {
  background:
    linear-gradient(90deg, var(--asphalt) 54%, transparent 54%),
    var(--panel);
  color: var(--white);
  padding: 80px 0;
}
.lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form {
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
  display: grid;
  gap: 14px;
}
.field { display: grid; gap: 6px; }
.field span {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  background: #fff;
  padding: 12px 12px;
  min-height: 50px;
  border-radius: var(--radius);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--safety);
  border-color: transparent;
}
.field.is-err input,
.field.is-err textarea { border-color: #b42318; }
.err { color: #b42318; font-size: 13px; min-height: 1.1em; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-ok {
  display: none;
  padding: 28px 8px;
  text-align: center;
}
.form.is-ok .form-ok { display: block; }
.form.is-ok .form__fields { display: none; }
.form-ok h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 28px;
  margin: 0 0 8px;
}

/* Footer */
.footer {
  background: #090b0c;
  color: var(--fog);
  padding: 40px 0 110px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer a { color: var(--white); text-decoration: none; }
.footer a:hover { color: var(--safety-2); }
.footer h2, .footer h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  color: var(--sand);
  margin: 0 0 12px;
}
.footer ul { list-style: none; display: grid; gap: 7px; }
.footer .phone-link { font-size: 28px; color: #fff; }
.footer__copy {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.footer__copy p { margin: 0 0 6px; }

.dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: var(--asphalt);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.35);
}

.float-call {
  display: none;
}

/* Inner pages */
.page-hero {
  background: var(--asphalt);
  color: var(--white);
  padding: 36px 0 40px;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  color: var(--fog);
  margin: 0 0 16px;
  padding: 0;
}
.crumbs a { color: var(--sand); text-decoration: none; }
.page-hero h1 { margin: 8px 0 12px; max-width: 14em; }
.page-hero .price { color: var(--sand); }
.prose {
  padding: 48px 0;
  background: var(--paper);
}
.prose-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 36px;
}
.prose h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(26px, 3vw, 36px);
  margin: 1.4em 0 0.4em;
}
.prose h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 22px;
  margin: 1.2em 0 0.35em;
}
.prose p { color: var(--ink-soft); max-width: 48em; }
.prose ul { margin: 0 0 1em 1.1em; color: var(--ink-soft); }
.side-card {
  background: var(--ink);
  color: #fff;
  padding: 20px;
  position: sticky;
  top: 88px;
}
.side-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  background: #12161a;
}
.side-card img.is-small {
  object-fit: contain;
  max-height: 240px;
  padding: 12px;
}
.side-card p { color: var(--fog); }
.faq { padding: 0 0 64px; background: var(--paper); }
.faq h2 { margin-bottom: 16px; }
.faq details {
  border-top: 1px solid var(--line-dark);
  padding: 14px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 20px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--ink-soft); margin: 8px 0 0; max-width: 46em; }
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.related a {
  text-decoration: none;
  border: 1px solid var(--line-dark);
  padding: 8px 10px;
  background: #fff;
  font-size: 14px;
}

.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--asphalt);
  color: #fff;
  padding: 40px 16px;
}

@media (max-width: 980px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: grid; }
  .header__bar { grid-template-columns: 1fr auto auto; }
  .hero__grid, .matcher__grid, .fleet-board, .bento, .why__grid, .lead__grid, .footer__grid, .prose-grid, .gallery-empty {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .hero-photos {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hero-photo { min-height: 220px; }
  .hero-photo:first-child { grid-row: auto; grid-column: auto; min-height: 220px; }
  .gallery-mosaic { columns: 2; }
  .machine--lead { grid-row: auto; }
  .fleet-board + .machine { grid-template-columns: 1fr; }
  .work, .work--earth { grid-area: auto; min-height: 220px; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__item:nth-child(2) { border-right: 0; }
  .dock { display: grid; }
  .hero { padding-top: 22px; }
  .header__cta .phone-link { font-size: 18px; }
  .logo__text { font-size: 17px; }
}

@media (max-width: 640px) {
  .hero__points { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .delivery__row { flex-direction: column; }
  .gallery-mosaic { columns: 2; }
  .machine__foot { flex-direction: column; }
  .why-item { grid-template-columns: 48px 1fr; }
  .footer { padding-bottom: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
