:root {
  --red: #d8121d;
  --red-dark: #9e0d15;
  --ink: #080b0f;
  --ink-2: #11151b;
  --ink-3: #1b2027;
  --paper: #f5f5f3;
  --muted: #9aa0a7;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  --font-display: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --font-body: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: #171a1f;
  font-family: var(--font-body);
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 14px max(28px, calc((100vw - 1120px) / 2));
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(6, 8, 11, 0.93);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  gap: 4px;
  width: 52px;
  min-width: 52px;
  transform: skewY(-14deg);
}

.brand-mark span {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 48%, #f1f2f2 48% 100%);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.brand-mark span:nth-child(2) {
  width: 88%;
}

.brand-mark span:nth-child(3) {
  width: 76%;
}

.brand-copy {
  display: grid;
  gap: 0;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: 1px;
}

.brand-copy small {
  color: #e8e8e8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.brand--header .brand-copy strong {
  font-size: 1.95rem;
}

.brand--header .brand-copy small {
  font-size: 0.66rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.quote-button,
.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.quote-button svg,
.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-button,
.btn--primary {
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 8px 50%);
  box-shadow: 0 10px 22px rgba(216, 18, 29, 0.22);
}

.btn--ghost {
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.18);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 8px 50%);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/hero-construction.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.84) 31%, rgba(5, 6, 8, 0.34) 62%, rgba(5, 6, 8, 0.72) 100%),
    radial-gradient(circle at 72% 45%, rgba(216, 18, 29, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.74));
}

.hero::before,
.services-full::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(135deg, transparent 0 38%, rgba(255, 255, 255, 0.06) 38% 39%, transparent 39% 100%),
    linear-gradient(45deg, transparent 0 62%, rgba(255, 255, 255, 0.04) 62% 63%, transparent 63% 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(340px, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 610px;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f4f4f4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.about__intro h2,
.contact-hero h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 7vw, 5.55rem);
}

.hero h1 span,
.about__intro h2 span {
  color: var(--red);
}

.hero__text > p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-card {
  justify-self: end;
  width: min(460px, 100%);
  margin-top: 104px;
  padding: 28px 32px 26px 46px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 18, 29, 0.88) 0 2px, transparent 2px),
    linear-gradient(145deg, rgba(11, 14, 19, 0.94), rgba(19, 22, 29, 0.9));
  border-left: 5px solid var(--red);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 24%);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 14px 0 16px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-card__logo {
  width: min(285px, 82%);
  height: 64px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
  filter: contrast(1.18) saturate(1.08);
}

.hero-card__vehicle {
  width: 100%;
  height: auto;
  margin: 6px 0 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.hero-card__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-card__badges span {
  padding: 9px 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 18, 29, 0.42);
  font-size: 0.68rem;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.brand-strip,
.snapshot,
.about,
.contact {
  background: var(--paper);
}

.brand-strip {
  padding: 20px 0 26px;
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 16px;
  color: #15171b;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--red);
}

.section-title--dark {
  color: #fff;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.brand-tile {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 18px 42px 18px 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedede;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 12px 100%);
}

.brand-tile::before {
  display: none;
}

.brand-tile--eko::before {
  background: #58b832;
  clip-path: polygon(0 50%, 28% 0, 100% 0, 72% 50%, 100% 100%, 28% 100%);
}

.brand-tile h3 {
  margin: 10px 0 0;
  color: #20242a;
  font-size: 0.75rem;
  font-weight: 1000;
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-tile__logo {
  width: 100%;
  max-width: 210px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-tile h3 span {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.55em;
  letter-spacing: 1px;
}

.brand-tile--eko h3 span {
  color: #58b832;
}

.brand-tile p {
  margin: 10px 0 0;
  color: #50555d;
  font-size: 0.83rem;
}

.brand-tile a {
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--red);
  transform: translateY(-50%);
}

.brand-tile svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.service-ribbon {
  padding: 18px 0 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(216, 18, 29, 0.18), transparent 28%, transparent 72%, rgba(216, 18, 29, 0.16)),
    var(--ink);
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ribbon-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  min-height: 112px;
  padding: 24px 20px;
  border-right: 1px solid rgba(216, 18, 29, 0.44);
}

.ribbon-grid article:last-child {
  border-right: 0;
}

.ribbon-grid svg,
.service-card-grid svg,
.jobs svg,
.benefit-grid svg,
.contact-data svg,
.trust-grid svg {
  width: 50px;
  height: 50px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ribbon-grid h3,
.ribbon-grid p {
  margin: 0;
}

.ribbon-grid h3 {
  align-self: end;
  font-size: 1rem;
  line-height: 1.05;
}

.ribbon-grid p {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.snapshot {
  padding: 24px 0 28px;
}

.snapshot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  gap: 28px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.section-head .section-title {
  justify-content: flex-start;
  width: auto;
  margin: 0;
}

.section-head .section-title::after {
  display: none;
}

.text-link {
  min-height: auto;
  color: #252a31;
  font-size: 0.68rem;
}

.text-link svg {
  color: var(--red);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mini-card,
.fleet-row article,
.fleet-gallery article {
  background: #fff;
  border: 1px solid #dadde0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mini-card {
  margin: 0;
  overflow: hidden;
}

.mini-card span {
  display: block;
  aspect-ratio: 4 / 2.45;
  background-image:
    linear-gradient(180deg, rgba(7, 9, 12, 0.04), rgba(7, 9, 12, 0.18)),
    url("assets/hero-construction.png");
  background-size: 250%;
}

.mini-card img,
.fleet-row img,
.fleet-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mini-card img {
  aspect-ratio: 4 / 2.45;
}

.fleet-row img {
  aspect-ratio: 4 / 2.55;
}

.fleet-gallery img {
  aspect-ratio: 4 / 2.65;
}

.mini-card--a span {
  background-position: 52% 58%;
}

.mini-card--b span {
  background-position: 18% 68%;
}

.mini-card--c span {
  background-position: 62% 44%;
}

.mini-card--d span {
  background-position: 86% 48%;
}

.mini-card p,
.fleet-row p,
.fleet-gallery p {
  min-height: 34px;
  margin: 0;
  padding: 9px 10px;
  color: #252a31;
  font-size: 0.77rem;
  font-weight: 700;
}

.fleet-row,
.fleet-gallery {
  display: grid;
  gap: 8px;
}

.fleet-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fleet-row article,
.fleet-gallery article {
  overflow: hidden;
  text-align: center;
}

.fleet-row article,
.fleet-gallery article,
.mini-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fleet-row article:hover,
.fleet-gallery article:hover,
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.vehicle {
  position: relative;
  display: block;
  height: 76px;
  margin: 10px auto 0;
  width: min(96px, 86%);
}

.vehicle::before,
.vehicle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.vehicle--van::before {
  bottom: 18px;
  width: 88px;
  height: 32px;
  background: linear-gradient(90deg, #f7f7f7 0 62%, #dedede 62%);
  border: 2px solid #b8bdc2;
  border-radius: 8px 15px 5px 5px;
  box-shadow: inset 28px 0 0 rgba(180, 196, 211, 0.5);
}

.vehicle--truck::before {
  bottom: 18px;
  width: 90px;
  height: 34px;
  background: linear-gradient(90deg, #d8dcdf 0 32%, #24292f 32% 100%);
  border-radius: 4px;
}

.vehicle--excavator::before {
  bottom: 18px;
  width: 72px;
  height: 28px;
  background: #2f343a;
  border-radius: 7px 7px 2px 2px;
}

.vehicle--excavator::after {
  bottom: 38px;
  width: 72px;
  height: 36px;
  border-top: 7px solid #2f343a;
  border-right: 7px solid #2f343a;
  transform: translateX(-18%) rotate(-24deg);
  transform-origin: right bottom;
}

.vehicle--loader::before {
  bottom: 18px;
  width: 80px;
  height: 34px;
  background: linear-gradient(90deg, #2f343a 0 66%, #6d737b 66%);
  border-radius: 4px 14px 3px 3px;
}

.vehicle--lowbed::before {
  bottom: 18px;
  width: 100px;
  height: 24px;
  background: linear-gradient(90deg, #d8dcdf 0 26%, #2c3138 26% 100%);
  border-radius: 3px;
}

.vehicle--van::after,
.vehicle--truck::after,
.vehicle--loader::after,
.vehicle--lowbed::after {
  bottom: 10px;
  width: 82px;
  height: 16px;
  background:
    radial-gradient(circle at 18px 8px, #101216 0 7px, transparent 8px),
    radial-gradient(circle at 68px 8px, #101216 0 7px, transparent 8px);
}

.trust-band {
  padding: 26px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.42)),
    url("assets/hero-construction.png") center 65% / cover;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.trust-grid h2 {
  max-width: 220px;
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.trust-grid h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 14px;
  background: var(--red);
}

.trust-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 90px;
  padding: 0 20px;
  border-left: 1px solid rgba(216, 18, 29, 0.55);
}

.trust-grid svg {
  width: 42px;
  height: 42px;
  color: #fff;
}

.trust-grid strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.trust-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about {
  padding: 54px 0 62px;
}

.about__intro,
.contact-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.about__intro h2,
.contact-hero h2 {
  max-width: 650px;
  color: #11141a;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.about .eyebrow,
.contact .eyebrow {
  color: var(--red);
}

.about__intro p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #3f454d;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(250px, 0.8fr) minmax(0, 1.55fr);
  gap: 0;
  border-top: 1px solid #d5d7da;
  border-bottom: 1px solid #d5d7da;
}

.mission-card,
.values-card,
.history-card {
  padding: 28px 28px 30px;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid #d5d7da;
}

.history-card {
  border-right: 0;
}

.mission-card h3,
.values-card h3,
.history-card h3,
.contact-data h3,
.contact-form h3,
.map-card h3,
.company-contacts h3 {
  margin: 0 0 16px;
  color: #14171d;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.mission-card p,
.values-card span,
.history-card p {
  color: #4f555d;
  font-size: 0.86rem;
}

.seal {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 34px 0 14px;
  color: var(--red);
  border: 1px solid rgba(216, 18, 29, 0.28);
  border-radius: 50%;
}

.seal svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
}

.values-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-card li {
  padding-left: 18px;
  border-left: 3px solid var(--red);
}

.values-card strong,
.values-card span {
  display: block;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #20242a;
}

.timeline div {
  position: relative;
  padding-top: 42px;
}

.timeline div::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--ink);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
}

.timeline time {
  position: absolute;
  top: 0;
  left: 0;
  color: #1f242b;
  font-weight: 1000;
  text-transform: uppercase;
}

.timeline span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.timeline p {
  margin: 5px 0 0;
}

.group-architecture {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 18, 29, 0.16), transparent 34%),
    #10141a;
  border-left: 4px solid var(--red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.group-architecture h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.group-architecture p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.architecture-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.architecture-logos img {
  width: 100%;
  height: 74px;
  padding: 10px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.services-full {
  position: relative;
  padding: 30px 0 48px;
  color: #fff;
  background:
    linear-gradient(rgba(8, 11, 15, 0.94), rgba(8, 11, 15, 0.96)),
    url("assets/hero-construction.png") center / cover fixed;
}

.services-full > .container {
  position: relative;
  z-index: 1;
}

.section-head--center {
  justify-content: center;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.service-card-grid article {
  min-height: 150px;
  padding: 20px;
  color: #10141a;
  background: #fff;
  border: 1px solid #dedede;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 8px 100%);
}

.service-card-grid svg {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.service-card-grid h3,
.project h3,
.jobs h3 {
  margin: 0;
  line-height: 1.12;
  text-transform: uppercase;
}

.service-card-grid p {
  margin: 8px 0 0;
  color: #4c535b;
  font-size: 0.78rem;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
}

.filter-bar button {
  min-height: 33px;
  padding: 0 18px;
  color: #dfe3e7;
  background: #161a20;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-bar button.is-selected,
.filter-bar button:hover {
  background: var(--red);
  border-color: var(--red);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.project {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 205px;
  overflow: hidden;
  background-image: url("assets/hero-construction.png");
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project--a,
.project--b {
  grid-column: span 1;
  min-height: 252px;
}

.project--c,
.project--d,
.project--e,
.project--f {
  min-height: 205px;
}

.project--a { background-image: url("assets/photo-crane.jpg"); background-position: 58% 50%; }
.project--b { background-image: url("assets/hero-construction.png"); background-position: 58% 50%; }
.project--c { background-image: url("assets/photo-earthworks.jpg"); background-position: 48% 58%; }
.project--d { background-image: url("assets/van-black-red.jpg"); background-position: 52% 50%; }
.project--e { background-image: url("assets/photo-crane.jpg"); background-position: 72% 52%; }
.project--f { background-image: url("assets/photo-team.jpg"); background-position: 45% 44%; }

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
}

.project div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px;
}

.project span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.project h3 {
  margin-top: 4px;
  color: #fff;
  font-size: 1rem;
}

.project p {
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.project a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-full {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fleet-full h3 {
  margin: 0 0 14px;
  text-align: center;
  text-transform: uppercase;
}

.fleet-gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.contact {
  padding: 54px 0 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 1.1fr;
  gap: 28px;
}

.contact-data,
.contact-form,
.map-card {
  min-width: 0;
}

.contact-data p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin: 0 0 18px;
}

.contact-data svg {
  width: 36px;
  height: 36px;
}

.contact-data strong {
  display: block;
  color: #15191f;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 5px;
}

.contact-form label span {
  color: #50565e;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d0d4d8;
  background: #fff;
  padding: 11px 12px;
  color: #11141a;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216, 18, 29, 0.12);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
}

.map-card h3 {
  margin-bottom: 10px;
}

.poland-map {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  background:
    radial-gradient(circle at 49% 48%, rgba(216, 18, 29, 0.18), transparent 12%),
    linear-gradient(rgba(5, 8, 12, 0.72), rgba(5, 8, 12, 0.78)),
    url("assets/hero-construction.png") center / cover;
  border: 1px solid #1d2229;
}

.poland-map::before {
  content: "";
  position: absolute;
  left: 19%;
  top: 14%;
  width: 62%;
  height: 72%;
  background:
    linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, 0.07) 46% 48%, transparent 48%),
    rgba(255, 255, 255, 0.035);
  clip-path: polygon(25% 0, 53% 4%, 72% 15%, 87% 34%, 80% 56%, 90% 76%, 64% 92%, 39% 86%, 16% 98%, 6% 71%, 13% 52%, 0 36%, 14% 21%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-dot {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(216, 18, 29, 0.18), 0 0 24px rgba(216, 18, 29, 0.72);
}

.map-dot--main {
  left: 51%;
  top: 47%;
  width: auto;
  height: auto;
  padding: 10px 14px 10px 34px;
  color: #fff;
  border-radius: 0;
  background: rgba(9, 12, 17, 0.88);
  font-size: 0.75rem;
  font-weight: 900;
  transform: translate(-12%, -50%);
}

.map-dot--main::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.map-dot--a { left: 33%; top: 29%; }
.map-dot--b { left: 29%; top: 65%; }
.map-dot--c { left: 64%; top: 23%; }
.map-dot--d { left: 70%; top: 70%; }

.company-contacts {
  margin-top: 26px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.company-grid article {
  position: relative;
  min-height: 128px;
  padding: 20px 22px 18px;
  background: #fff;
  border: 1px solid #dfe1e4;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 10px 100%);
}

.company-grid article::before {
  display: none;
}

.company-grid img {
  width: 100%;
  height: 42px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
}

.company-grid h4 {
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-grid p {
  margin: 8px 0;
  color: #4c535b;
  font-size: 0.78rem;
}

.company-grid span {
  color: #10141a;
  font-size: 0.78rem;
  font-weight: 900;
}

.career {
  padding: 28px 0 34px;
  color: #fff;
  background: var(--ink);
}

.career-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 34px;
}

.career .section-title {
  justify-content: flex-start;
  width: auto;
}

.career .section-title::after {
  display: none;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.jobs article {
  min-height: 164px;
  padding: 18px;
  background: #12161c;
  border: 1px solid rgba(216, 18, 29, 0.38);
}

.jobs svg {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.jobs h3 {
  color: #fff;
  font-size: 0.88rem;
}

.jobs p {
  margin: 7px 0 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.jobs a {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.benefit-grid article {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 118px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(216, 18, 29, 0.35);
}

.benefit-grid svg {
  width: 34px;
  height: 34px;
}

.benefit-grid span {
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.cv-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 18px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.cv-box strong {
  text-transform: uppercase;
}

.cv-box p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.cv-box .btn {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(7, 9, 12, 0.95), rgba(7, 9, 12, 0.98)),
    url("assets/hero-construction.png") center bottom / cover;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.8fr 1fr 0.9fr;
  gap: 28px;
  padding: 38px 0 28px;
}

.brand--footer .brand-copy strong {
  font-size: 1.85rem;
}

.site-footer p,
.site-footer li,
.footer-map span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  color: #fff;
  font-weight: 900;
}

.footer-map {
  display: grid;
  gap: 8px;
}

.footer-map strong {
  color: var(--red);
  text-transform: uppercase;
}

.mini-map {
  display: grid;
  place-items: center;
  min-height: 108px;
  background: rgba(255, 255, 255, 0.04);
  clip-path: polygon(25% 0, 78% 8%, 100% 48%, 72% 100%, 15% 88%, 0 38%);
}

.mini-map svg {
  width: 38px;
  height: 38px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.74rem;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .quote-button {
    display: none;
  }

  .main-nav {
    justify-self: end;
  }

  .brand-grid,
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ribbon-grid,
  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ribbon-grid article:nth-child(3) {
    border-right: 0;
  }

  .snapshot__grid,
  .about-grid,
  .group-architecture,
  .contact-layout,
  .career-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .values-card,
  .history-card {
    border-right: 0;
    border-bottom: 1px solid #d5d7da;
  }

  .history-card {
    border-bottom: 0;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid h2 {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 16px;
  }

  .jobs,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand--header .brand-mark {
    width: 40px;
    min-width: 40px;
  }

  .brand--header .brand-copy strong {
    font-size: 1.45rem;
  }

  .brand--header .brand-copy small {
    font-size: 0.54rem;
    letter-spacing: 2px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 14px 18px;
    background: rgba(6, 8, 11, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-header.is-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero,
  .hero__content {
    min-height: 680px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .hero-card {
    justify-self: start;
    margin-top: 0;
  }

  .hero-card p {
    margin-left: 0;
  }

  .brand-grid,
  .ribbon-grid,
  .service-card-grid,
  .portfolio-grid,
  .fleet-gallery,
  .company-grid,
  .architecture-logos,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ribbon-grid article,
  .ribbon-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 18, 29, 0.34);
  }

  .ribbon-grid article:last-child {
    border-bottom: 0;
  }

  .mini-gallery,
  .fleet-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__intro,
  .contact-hero,
  .section-head {
    display: grid;
    align-items: start;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .portfolio-grid .project {
    min-height: 220px;
  }

  .form-row,
  .cv-box {
    grid-template-columns: 1fr;
  }

  .cv-box .btn,
  .cv-box p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom .container {
    display: grid;
  }
}

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

  .hero__content {
    min-height: 720px;
    padding-top: 78px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .hero__actions,
  .contact-hero .btn,
  .about__intro .btn {
    width: 100%;
  }

  .btn,
  .quote-button {
    width: 100%;
  }

  .hero-card {
    padding: 26px 24px 26px 34px;
  }

  .brand--panel .brand-copy strong {
    font-size: 1.7rem;
  }

  .brand-tile {
    padding-left: 22px;
  }

  .mini-gallery,
  .fleet-row,
  .jobs,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .about__intro h2,
  .contact-hero h2 {
    font-size: 2.35rem;
  }

  .mission-card,
  .values-card,
  .history-card {
    padding-inline: 18px;
  }

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