:root {
  --background: #f3f5f2;
  --foreground: #171a18;
  --muted: #626963;
  --line: #d7ddd6;
  --panel: #ffffff;
  --steel: #202723;
  --steel-2: #343d38;
  --accent: #d9472f;
  --accent-dark: #a82f20;
  --green: #2e6f57;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.55) 45%, rgba(10, 12, 11, 0.1)),
    linear-gradient(0deg, rgba(10, 12, 11, 0.8), rgba(10, 12, 11, 0) 38%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand,
.navCta,
.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
}

.brand {
  justify-self: start;
  gap: 10px;
}

.brandMark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.navCta {
  justify-self: end;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.heroContent {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 54px;
}

.eyebrow,
.sectionKicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  color: #ff846f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

.lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primaryButton,
.secondaryButton {
  padding: 0 22px;
}

.primaryButton,
.submitButton {
  background: var(--accent);
  color: #fff;
}

.secondaryButton {
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  margin: 72px 0 0;
  background: rgba(255, 255, 255, 0.22);
}

.heroStats div {
  padding: 20px;
  background: rgba(16, 19, 18, 0.62);
}

.heroStats dt {
  font-size: 24px;
  font-weight: 900;
}

.heroStats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro,
.orderSection {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 68px;
  align-items: start;
}

.intro h2,
.sectionHeading h2,
.orderCopy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.intro > p,
.orderCopy > p {
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.sectionHeading {
  max-width: 820px;
  margin-bottom: 34px;
}

.serviceGrid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.serviceCard,
.steps li {
  min-height: 160px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.serviceCard span {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.serviceCard h3 {
  margin: 42px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.imageBand {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
}

.imageBand img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.equipmentItem {
  min-height: 260px;
  padding: 28px;
  border-radius: 6px;
  background: var(--steel);
  color: #fff;
}

.equipmentItem:nth-child(2) {
  background: var(--green);
}

.equipmentItem:nth-child(3) {
  background: var(--steel-2);
}

.equipmentItem h3 {
  margin: 0;
  font-size: 22px;
}

.equipmentItem p {
  margin: 80px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.process {
  padding-top: 34px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  color: var(--steel);
  counter-increment: step;
  font-weight: 800;
  line-height: 1.35;
}

.steps li::before {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  content: "0" counter(step);
}

.orderSection {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 92px;
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(32, 39, 35, 0.11);
}

.contactBox {
  margin-top: 38px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #f6f7f4;
}

.contactBox span,
.contactBox strong {
  display: block;
}

.contactBox span {
  color: var(--muted);
  font-size: 14px;
}

.contactBox strong {
  margin-top: 6px;
}

.orderForm {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #cfd5ce;
  border-radius: 6px;
  background: #fbfcfa;
  color: var(--foreground);
  outline: none;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 71, 47, 0.14);
}

.consentLabel {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d7ddd6;
  border-radius: 6px;
  background: #fbfcfa;
  line-height: 1.45;
}

.consentLabel input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.consentLabel a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submitButton {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.formStatus {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.success {
  color: #24724e;
}

.error {
  color: var(--accent-dark);
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--accent-dark);
  font-weight: 800;
}

.policyPage {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 84px;
}

.policyHeader {
  padding: 34px 0;
}

.policyHeader > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
}

.policyHeader h1 {
  max-width: 820px;
  color: var(--steel);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.policyHeader p:not(.sectionKicker) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.policyArticle {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(32, 39, 35, 0.08);
}

.policyArticle section {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.policyArticle section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policyArticle h2 {
  margin: 0 0 16px;
  color: var(--steel);
  font-size: 24px;
  line-height: 1.24;
}

.policyArticle p {
  margin: 0 0 12px;
  color: #3f4742;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .intro,
  .orderSection {
    grid-template-columns: 1fr;
  }

  .serviceGrid,
  .equipmentGrid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .imageBand img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 860px;
  }

  .brand span:last-child {
    display: none;
  }

  .navCta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .heroContent,
  .section,
  .orderSection,
  .footer,
  .policyPage {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 44px;
  }

  .heroStats,
  .serviceGrid,
  .equipmentGrid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .orderSection,
  .policyArticle {
    padding: 24px;
  }
}
