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

:root {
  --orange: #ff4b00;
  --orange2: #ff6a1a;
  --black: #020202;
  --ink: #0b0b0b;
  --panel: #0f0f0f;
  --muted: #777;
  --soft: #f5f3ef;
  --line: rgba(255,255,255,.14);
  --line-dark: #e4e0da;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: #111;
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }

.topbar {
  background: #050505;
  color: #f2f2f2;
  border-bottom: 1px solid #171717;
  font-size: 12px;
  letter-spacing: .02em;
}
.topbar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(2,2,2,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav {
  height: 86px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}
.logo img { width: 154px; height: auto; }
.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 27px;
  margin: 0;
  padding: 0;
}
.menu a {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
  position: relative;
  padding: 34px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width .22s ease;
}
.menu a:hover::after,
.menu a.active::after { width: 100%; }
.menu a:hover,
.menu a.active { color: var(--orange); }

.btn, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  box-shadow: 0 14px 38px rgba(255,75,0,.28);
}
.btn-outline {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.66);
  box-shadow: none;
}
.btn-white {
  background: #fff;
  border-color: #fff;
  color: #111 !important;
  box-shadow: none;
}
.burger {
  display: none;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 32px;
  cursor: pointer;
}
.mobile-drawer { display: none; }

.hero {
  min-height: 760px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #050505;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.88) 34%, rgba(0,0,0,.32) 78%, rgba(0,0,0,.76) 100%),
    url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=2400&q=90') center / cover no-repeat;
  filter: saturate(.88) contrast(1.12);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 230px;
  background: linear-gradient(0deg,#050505 0%,rgba(5,5,5,0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding-top: 118px;
}
.kicker {
  margin: 0 0 22px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .22em;
  font-size: 13px;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: .93;
  letter-spacing: .01em;
}
h1 { font-size: clamp(72px, 9vw, 128px); max-width: 720px; }
h2 { font-size: clamp(48px, 6vw, 82px); }
h3 { font-size: 34px; }
.orange { color: var(--orange); }
.lead {
  max-width: 590px;
  margin: 28px 0 34px;
  color: #eee;
  font-size: 19px;
  line-height: 1.65;
}
.actions { display: flex; flex-wrap: wrap; gap: 18px; }

.below-hero {
  margin-top: -68px;
  position: relative;
  z-index: 3;
}
.value-strip {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
}
.value-card {
  min-height: 190px;
  padding: 34px 34px 30px;
  border-right: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
}
.value-card:last-child { border-right: 0; }
.round-icon {
  width: 62px;
  height: 62px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 28px;
  background: #fff;
}
.value-card h3,
.feature h3,
.footer h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .045em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.value-card p { margin: 0; color: #3c3c3c; line-height: 1.55; font-size: 14px; }

.section { padding: 96px 0; background: #fff; }
.section.black { background: #050505; color: #fff; }
.section.offwhite { background: var(--soft); }
.services-showcase {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 42px;
  align-items: stretch;
}
.services-intro {
  padding-top: 28px;
}
.services-intro p {
  color: #d9d9d9;
  line-height: 1.7;
  margin: 26px 0 32px;
}
.service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 420px;
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 5px solid var(--orange);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.34) 48%, rgba(0,0,0,.96) 100%),
    var(--bg) center / cover no-repeat;
  filter: saturate(.9) contrast(1.08);
  transform: scale(1.001);
  transition: transform .35s ease;
}
.service-card:hover::before { transform: scale(1.06); }
.service-card-inner {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.service-card .round-icon {
  background: rgba(0,0,0,.72);
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-card p {
  margin: 0 0 18px;
  color: #eee;
  font-size: 14px;
  line-height: 1.6;
}
.arrow { color: var(--orange); font-size: 34px; line-height: 1; text-align: right; }

.stats {
  background: #fff;
  padding: 54px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.stat strong {
  color: var(--orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 58px;
  line-height: .9;
  font-weight: 400;
}
.stat span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.text-block p { color: #444; font-size: 16px; line-height: 1.75; }
.image-panel {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.5)),
    var(--bg) center / cover no-repeat;
  border-bottom: 6px solid var(--orange);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}
.feature {
  background: #fff;
  border: 1px solid #e0ded9;
  border-top: 5px solid var(--orange);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
}
.feature p { color: #444; line-height: 1.65; }

.page-hero {
  min-height: 470px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #050505;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.77), rgba(0,0,0,.38)),
    var(--bg) center / cover no-repeat;
}
.page-hero .container {
  min-height: 470px;
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding-top: 112px;
}
.page-hero h1 { font-size: clamp(64px, 8vw, 112px); max-width: 850px; }
.breadcrumb {
  color: #c8c8c8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.project-card {
  min-height: 380px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.9)),
    var(--bg) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-bottom: 5px solid var(--orange);
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
}
.project-card h3 { font-size: 42px; }
.project-card p { color: #eee; }

.seo-board {
  background: #fff;
  padding: 13px;
  border: 1px solid #ddd;
  box-shadow: 0 24px 80px rgba(0,0,0,.14);
}
.seo-map {
  background: #070707;
  color: #fff;
  border: 1px solid #222;
  padding: 36px;
}
.seo-map li { margin: 12px 0; }

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 17px 16px;
  border: 1px solid #ddd;
  background: #fff;
  margin-bottom: 14px;
  font: inherit;
}
.form textarea { min-height: 160px; }
.form button { width: 100%; cursor: pointer; }

.faq details { border-bottom: 1px solid #ddd; padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 900; }

.sitemap-list {
  columns: 2;
  column-gap: 60px;
}
.sitemap-list a {
  display: block;
  break-inside: avoid;
  padding: 10px 0;
  color: #111;
  font-weight: 800;
  border-bottom: 1px solid #eee;
}

.footer {
  background: #050505;
  color: #fff;
  padding: 70px 0 30px;
  border-top: 1px solid #191919;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 44px;
}
.footer .logo img { width: 168px; margin-bottom: 22px; }
.footer p, .footer a { color: #d7d7d7; line-height: 1.6; }
.footer a { display: block; margin: 8px 0; }
.footer-bottom {
  border-top: 1px solid #222;
  color: #aaa;
  margin-top: 44px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .container { width: min(100% - 36px, 760px); }
  .topbar .container { display: block; padding: 8px 0; line-height: 1.7; }
  .site-header { top: auto; position: sticky; }
  .nav { grid-template-columns: 1fr auto; height: 86px; }
  .logo img { width: 148px; }
  .menu, .site-header .cta { display: none; }
  .burger { display: block; }
  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 390px);
    height: 100vh;
    background: #050505;
    color: #fff;
    z-index: 300;
    transform: translateX(105%);
    transition: .25s ease;
    padding: 34px 28px;
    overflow: auto;
    box-shadow: -30px 0 90px rgba(0,0,0,.65);
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer .close {
    float: right;
    background: none;
    border: 0;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
  }
  .mobile-drawer img { width: 160px; margin-bottom: 30px; }
  .mobile-drawer a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    padding: 16px 0;
    border-bottom: 1px solid #242424;
  }
  .hero, .hero-inner { min-height: 680px; }
  .hero-inner { padding-top: 40px; }
  h1 { font-size: 64px; }
  .lead { font-size: 17px; }
  .btn, .cta { width: 100%; }
  .below-hero { margin-top: 0; }
  .value-strip { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid #ddd; padding: 28px 22px; }
  .services-showcase, .grid-2, .grid-3, .grid-4, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-card { min-height: 410px; }
  .section { padding: 68px 0; }
  .sitemap-list { columns: 1; }
}
