:root {
  color-scheme: light;
  --ink: #171717;
  --text: #4f4f4f;
  --muted: #707070;
  --line: rgba(0, 0, 0, 0.12);
  --soft: #f7f7f7;
  --orange: #ffb400;
  --orange-dark: #d49400;
  --sans: "Open Sans", Arial, sans-serif;
  --display: Rubik, Helvetica, Arial, sans-serif;
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; }

.top,
main,
.foot {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-inline: 28px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: min(310px, 48vw);
  height: auto;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: #333;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover { color: var(--orange-dark); }

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 660px;
  background-image:
    radial-gradient(circle at top left, rgba(40, 40, 40, 0.74), rgba(40, 40, 40, 0.88)),
    url("/assets/hero-build.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  width: min(1180px, 100%);
  min-height: 660px;
  margin: 0 auto;
  padding: 10vw 28px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 820px;
  padding-left: 18px;
  border-left: 10px solid var(--orange);
  color: #fff;
}

.hero-copy img {
  width: min(430px, 78vw);
  height: auto;
  margin-bottom: 24px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 4rem);
  font-weight: 800;
}

.hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 48px;
  padding: 10px 18px;
  border: 12px solid var(--orange);
  border-radius: 0;
  background: var(--orange);
  color: #1a1a1a;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.services,
.statement,
.detail,
.learn,
.contact {
  padding-block: 86px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

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

.service-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 28px 26px;
}

.service-card span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h3 {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.service-card p,
.statement p,
.detail-copy p,
.learn p,
.contact-panel p {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 0.98rem;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover { color: var(--orange-dark); }

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: max(28px, calc((100vw - 1124px) / 2));
  background: var(--soft);
}

.statement h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  border-bottom: 1px solid var(--line);
}

.detail-copy p:first-child { margin-top: 0; }

.detail-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-copy li {
  padding: 12px 14px;
  border-left: 5px solid var(--orange);
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.learn {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  border-bottom: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 60px;
  align-items: start;
}

.contact h2 {
  max-width: 780px;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
}

.contact-panel a {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  text-decoration: none;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 28px 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 920px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero,
  .hero-overlay {
    min-height: 560px;
  }

  .service-grid,
  .statement,
  .detail,
  .learn,
  .contact {
    grid-template-columns: 1fr;
  }

  .detail-copy ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .top,
  main,
  .foot {
    padding-inline: 18px;
  }

  .brand img {
    width: min(280px, 86vw);
  }

  .hero-overlay {
    padding-inline: 18px;
  }

  .hero-copy {
    padding-left: 14px;
    border-left-width: 8px;
  }

  .button {
    width: 100%;
    letter-spacing: 0.12em;
  }

  .services,
  .statement,
  .detail,
  .learn,
  .contact {
    padding-block: 62px;
  }

  .service-card {
    grid-template-rows: 190px 1fr;
  }

  .contact-panel {
    padding: 22px;
  }

  .foot {
    flex-direction: column;
  }
}
