:root {
  --orange: #f28b20;
  --dark: #242424;
  --ink: #333333;
  --muted: #777777;
  --line: #e8e8e8;
  --paper: #ffffff;
  --soft: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.top-strip {
  background: var(--dark);
  color: #f1f1f1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  background: #fff;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 31px 16px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
}

.has-menu { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 290px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #333;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 180ms ease;
}
.has-menu:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sub-menu a {
  color: #f1f1f1;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.22)),
    url("https://images.unsplash.com/photo-1532635042-a6f6ad4745f9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.home-hero {
  min-height: 650px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(242,139,32,.28), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
}
.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 17px;
  font-style: italic;
}
.hero h1,
.hero h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(38px, 7vw, 78px); }
.hero h2 { font-size: clamp(34px, 6vw, 70px); }
.divider {
  width: 70px;
  height: 3px;
  background: var(--orange);
  margin: 32px auto;
}

.section {
  padding: 82px 0;
}
.muted {
  background: var(--soft);
}
.section-title {
  margin: 0 0 38px;
  color: #222;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}
.lead {
  font-size: 18px;
  color: #555;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card,
.advantage-grid article,
.news-grid article {
  background: #fff;
  border: 1px solid var(--line);
}
.service-card img,
.advantage-grid img,
.news-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  background: #ddd;
}
.card-body {
  padding: 24px;
}
h3 {
  margin: 0 0 12px;
  color: #222;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.35;
}
.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.advantage-grid article {
  padding-bottom: 22px;
}
.advantage-grid article > :not(img) {
  margin-left: 22px;
  margin-right: 22px;
}
.tag {
  color: var(--orange);
  font-style: italic;
  margin-top: 18px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
blockquote {
  margin: 0;
  padding: 34px;
  background: #fafafa;
  border-left: 4px solid var(--orange);
  font-size: 18px;
}
cite {
  display: block;
  margin-top: 22px;
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.expertise {
  background: #2f2f2f;
  color: #fff;
}
.expertise .section-title,
.expertise h2 { color: #fff; }
.expertise .lead { color: #dedede; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.skills div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 18px;
}
.skills div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,.18);
}
.skills i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--w);
  height: 8px;
  background: var(--orange);
  z-index: 1;
}
.skills strong { color: var(--orange); }

.download-band {
  background:
    linear-gradient(90deg, rgba(242,139,32,.95), rgba(242,139,32,.82)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  padding: 54px 0;
  text-align: center;
}
.download-band p,
.download-band h2 { margin: 0 0 12px; }
.download-band h2 {
  text-transform: uppercase;
  font-size: 28px;
}
.btn {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 13px 24px;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-grid article {
  position: relative;
  padding-bottom: 24px;
}
.news-grid h3,
.news-grid p { margin-left: 22px; margin-right: 22px; }
.date {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 58px;
  height: 58px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
}
.date span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.page-title {
  min-height: 300px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1700&q=80") center/cover;
  color: #fff;
  text-align: center;
}
.page-title h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 58px);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: 48px;
}
.content-box {
  border-top: 3px solid var(--orange);
  padding-top: 24px;
}
.content-box ul {
  padding-left: 20px;
}
.side-quote {
  background: var(--soft);
  padding: 30px;
  border-left: 4px solid var(--orange);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.stat-grid div {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  text-align: center;
}
.stat-grid strong {
  display: block;
  color: var(--orange);
  font-size: 38px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.contact-list article {
  border: 1px solid var(--line);
  padding: 26px;
}

.form {
  display: grid;
  gap: 16px;
}
.form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }

.site-footer {
  background: #262626;
  color: #d6d6d6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 50px;
  padding: 54px 0;
}
.site-footer h3 {
  color: #fff;
}
.site-footer a {
  display: block;
  color: #d6d6d6;
  margin-bottom: 8px;
}
.site-footer a:hover { color: var(--orange); }
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 18px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .top-strip { flex-direction: column; gap: 4px; padding: 8px 16px; }
  .menu-toggle {
    display: inline-block;
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 12px;
    text-transform: uppercase;
    font-weight: 700;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border-top: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px 0; }
  .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
  }
  .hero, .home-hero { min-height: 520px; }
  .service-grid,
  .advantage-grid,
  .quote-grid,
  .news-grid,
  .two-col,
  .content-grid,
  .contact-list,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
