:root {
  --black: #101010;
  --coal: #1d1d1b;
  --graphite: #2d2d2a;
  --steel: #6b6a63;
  --line: #dedbd2;
  --paper: #f7f4ec;
  --white: #ffffff;
  --orange: #f28c28;
  --yellow: #f5b700;
  --green: #2f5d50;
  --shadow: 0 22px 65px rgba(16, 16, 16, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--coal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--orange);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 16, 16, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #111, #24211e);
  border: 1px solid rgba(242, 140, 40, 0.5);
  box-shadow:
    inset 0 -8px 0 rgba(242, 140, 40, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.brand-icon {
  display: block;
  width: 35px;
  height: 35px;
}

.brand-icon-body,
.brand-icon-boom,
.brand-icon-bucket {
  fill: var(--orange);
}

.brand-icon-window {
  fill: var(--yellow);
}

.brand-icon-track {
  fill: #050505;
}

.brand-icon-wheel {
  fill: var(--yellow);
}

.brand-name {
  display: block;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 0.78rem;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  padding: 12px 11px;
  border-radius: 4px;
  font-weight: 750;
  font-size: 0.93rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-button span::before {
  top: -7px;
}

.menu-button span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 12px 28px rgba(242, 140, 40, 0.28);
}

.btn-primary:hover {
  background: #ff9a34;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.btn-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero-short {
  min-height: 560px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.86), rgba(16, 16, 16, 0.42) 54%, rgba(16, 16, 16, 0.22)),
    linear-gradient(0deg, rgba(16, 16, 16, 0.82), rgba(16, 16, 16, 0.08) 46%);
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  margin-top: 18px;
  font-size: clamp(3.15rem, 8vw, 6.8rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 940;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 790px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-services {
  color: var(--white);
  font-weight: 950;
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-strip span {
  padding: 18px 14px;
  text-align: center;
  color: var(--coal);
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: var(--coal);
  color: var(--white);
}

.section-white {
  background: var(--white);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--steel);
  font-size: 1.08rem;
  margin: 16px 0 0;
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.quick-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-item,
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 850;
}

.quick-item::before,
.check-item::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 7px;
  background: var(--orange);
  clip-path: polygon(0 42%, 38% 42%, 38% 0, 100% 50%, 38% 100%, 38% 58%, 0 58%);
}

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

.service-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-group img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-group-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.label {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 950;
  font-size: 0.75rem;
}

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

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.link-list a::after {
  content: "→";
  color: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 26px;
  border: 1px solid var(--line);
}

.metric {
  background: var(--white);
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.metric span {
  color: var(--steel);
  font-weight: 750;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-card-body {
  padding: 18px;
}

.gallery-meta {
  color: var(--yellow);
  font-weight: 850;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.gallery-card p {
  color: rgba(255, 255, 255, 0.76);
  margin: 10px 0 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  counter-increment: steps;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 4px;
  font-weight: 950;
  margin-bottom: 22px;
}

.area-band {
  background: var(--black);
  color: var(--white);
  padding: 42px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags a,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  padding: 18px 20px;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--steel);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  scroll-margin-top: 104px;
}

.contact-info {
  background: var(--black);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
}

.contact-info dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.contact-info dt {
  color: var(--yellow);
  font-weight: 900;
}

.contact-info dd {
  margin: 3px 0 0;
}

.contact-direct {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.contact-direct p {
  color: var(--steel);
}

.contact-checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-checklist li {
  display: flex;
  gap: 10px;
  color: var(--steel);
  font-weight: 750;
}

.contact-checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--orange);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form-wrap p {
  color: var(--steel);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 800;
  font-size: 0.92rem;
}

.form-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--black);
  background: var(--white);
}

.form-input:focus {
  outline: 3px solid rgba(242, 140, 40, 0.28);
  border-color: var(--orange);
}

.form-textarea {
  resize: vertical;
  min-height: 132px;
}

.form-file {
  padding: 10px 0;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--steel);
  font-size: 0.94rem;
}

.form-consent input {
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.form-honeypot {
  display: none;
}

button.btn {
  border: 0;
  cursor: pointer;
}

.contact-info .btn-light {
  margin-top: 20px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.42);
  outline-offset: 2px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  margin-bottom: 16px;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 42px;
  align-items: start;
}

.rich-content {
  display: grid;
  gap: 26px;
}

.rich-block {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
}

.rich-block p,
.service-group p,
.step p,
.check-item p {
  color: var(--steel);
}

.sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.side-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}

.side-card-light {
  background: var(--white);
  color: var(--coal);
  border: 1px solid var(--line);
}

.bullet-list {
  padding-left: 18px;
  margin: 14px 0 0;
}

.bullet-list li {
  margin: 7px 0;
  font-weight: 720;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.plain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.plain-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 16px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-meta {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .nav,
  .header-actions .phone-link {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--black);
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  body.menu-open .nav {
    display: flex;
    transform: translateY(0);
  }

  .nav a {
    padding: 15px;
  }

  .trust-strip,
  .service-groups,
  .gallery-grid,
  .process,
  .check-grid,
  .cards-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-grid,
  .split,
  .area-band,
  .contact-panel,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

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

  .hero,
  .hero-short {
    min-height: 640px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .section {
    padding: 62px 0;
  }

  .trust-strip,
  .service-groups,
  .gallery-grid,
  .process,
  .check-grid,
  .quick-list,
  .cards-grid,
    .metric-panel,
    .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .area-band {
    padding: 26px;
  }

  .contact-direct,
  .contact-info,
  .rich-block {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    z-index: 120;
    background: var(--black);
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  body {
    padding-bottom: 72px;
  }
}

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