@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #ff6500;
  --black: #090909;
  --dark: #111111;
  --grey: #6f6f6f;
  --light: #f5f5f3;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9,9,9,.97);
  border-bottom: 1px solid #252525;
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img {
  display: block;
  width: 150px;
  height: 58px;
  object-fit: contain;
  background: #000;
}
nav { display: flex; align-items: center; gap: 28px; color: #fff; font-size: 14px; }
nav a:not(.nav-cta) { opacity: .82; }
nav a:hover { opacity: 1; }
.nav-cta {
  padding: 12px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 3px;
}

.hero {
  min-height: 660px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(255,101,0,.18), transparent 28%),
    linear-gradient(125deg, #080808 0%, #151515 55%, #0b0b0b 100%);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 5px;
  right: -5vw;
  bottom: 95px;
  background: var(--orange);
  transform: rotate(-4deg);
}
.hero-content { position: relative; z-index: 1; padding: 90px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: .98;
  text-transform: uppercase;
}
h1 { max-width: 850px; font-size: clamp(58px, 8vw, 104px); letter-spacing: -.025em; }
h1 span { color: var(--orange); }
.hero-text { max-width: 610px; margin: 28px 0 34px; font-size: 18px; color: #d1d1d1; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.primary { background: var(--orange); color: #fff; }
.secondary { border: 1px solid #666; color: #fff; }

.advantages { background: var(--orange); color: #fff; }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.advantage-grid article {
  padding: 34px 25px 36px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.advantage-grid article:first-child { padding-left: 0; }
.advantage-grid article:last-child { border-right: 0; }
.advantage-grid span, .service-card span {
  font-size: 12px;
  font-weight: 800;
  opacity: .65;
}
.advantage-grid h2 { margin: 12px 0 8px; font-size: 28px; }
.advantage-grid p { margin: 0; font-size: 13px; line-height: 1.55; }

.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading h2, .two-columns h2, .about h2, .contact h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.section-heading > p:last-child { color: var(--grey); max-width: 590px; margin-top: 20px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #ddd;
}
.service-card {
  min-height: 210px;
  padding: 30px 35px 35px 0;
  border-bottom: 1px solid #ddd;
}
.service-card:nth-child(odd) { padding-right: 55px; border-right: 1px solid #ddd; }
.service-card:nth-child(even) { padding-left: 55px; }
.service-card h3 { margin: 22px 0 10px; font-size: 38px; }
.service-card p { margin: 0; color: var(--grey); max-width: 440px; }

.dark-section { padding: 100px 0; background: var(--dark); color: #fff; }
.two-columns, .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.two-columns > div:last-child { color: #cfcfcf; max-width: 560px; }
.two-columns p { margin-top: 0; margin-bottom: 20px; }

.about { background: var(--light); }
.about-grid p { color: #5f5f5f; }
.location { color: var(--black) !important; font-weight: 700; }

.contact { padding: 90px 0; background: var(--orange); color: #fff; }
.contact-box { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.contact .eyebrow { color: #fff; opacity: .75; }
.contact-details { display: flex; flex-direction: column; gap: 8px; font-size: 20px; font-weight: 700; }
.contact-details a:hover { text-decoration: underline; }

footer { background: #070707; color: #aaa; font-size: 12px; }
.footer-inner { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

@media (max-width: 800px) {
  .nav { min-height: 70px; }
  .brand img { width: 125px; height: 50px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 620px; }
  .hero::after { bottom: 55px; }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .advantage-grid article:nth-child(2) { border-right: 0; }
  .advantage-grid article:nth-child(3) { padding-left: 0; }
  .advantage-grid article:nth-child(3), .advantage-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.25); }
  .service-grid, .two-columns, .about-grid, .contact-box { grid-template-columns: 1fr; }
  .service-card:nth-child(odd), .service-card:nth-child(even) { padding: 30px 0; border-right: 0; }
  .contact-box { gap: 35px; }
  .footer-inner { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  h1 { font-size: 54px; }
  .hero-text { font-size: 16px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid article, .advantage-grid article:first-child, .advantage-grid article:nth-child(3) {
    padding: 25px 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.25);
  }
  .advantage-grid article:first-child { border-top: 0; }
}
