:root {
  --red: #b3162d;
  --red-dark: #7f0f20;
  --ink: #17191d;
  --muted: #646a73;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --warm: #f1eee8;
  --shadow: 0 18px 50px rgba(21, 24, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 800;
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 9px 12px;
  color: #343941;
  font-size: 14px;
  border-radius: 8px;
}

.nav a:hover {
  background: var(--soft);
  color: var(--red-dark);
}

.header-phone {
  justify-self: end;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  font-weight: 700;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(680px, calc(100svh - 126px));
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.9) 0%, rgba(10, 12, 14, 0.72) 42%, rgba(10, 12, 14, 0.25) 100%),
    url("assets/IMG_8149.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  padding: clamp(48px, 8vw, 92px) 0 clamp(42px, 7vw, 70px);
  margin-left: clamp(18px, 7vw, 96px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb8c2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 800;
  border-radius: 8px;
}

.btn-primary {
  color: #fff;
  background: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.quick-contact a {
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.quick-contact strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.section,
.band,
.contact-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p,
.text-block p,
.band-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 220px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-icon {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.band {
  background: var(--ink);
  color: #fff;
}

.band .eyebrow {
  color: #ffb8c2;
}

.band-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  max-width: 1180px;
}

.band-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stats div {
  padding: 24px;
  background: #22262c;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.stats span {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--warm);
}

.text-block {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #333941;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}

.feature-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.reference-list article {
  padding: 22px;
  border-left: 4px solid var(--red);
  background: var(--soft);
}

.reference-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:first-child {
  grid-row: span 2;
}

.gallery img:nth-child(4) {
  object-position: center 45%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--soft);
}

.contact-copy {
  max-width: 650px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  display: block;
  padding: 12px 14px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  text-align: center;
  border-radius: 8px;
}

.contact-card a:hover {
  background: var(--red);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: #101216;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .service-grid,
  .reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .band-content,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-phone {
    justify-self: center;
    padding: 9px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

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

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(21, 24, 29, 0.12);
  }

  .nav-open .nav {
    display: grid;
    gap: 4px;
  }

  .nav a {
    display: block;
    padding: 12px;
  }
}

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

  .hero-media {
    background:
      linear-gradient(180deg, rgba(10, 12, 14, 0.92) 0%, rgba(10, 12, 14, 0.72) 58%, rgba(10, 12, 14, 0.6) 100%),
      url("assets/IMG_8150.jpg") center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
    padding-bottom: 32px;
  }

  .hero p {
    font-size: 17px;
  }

  .btn {
    min-height: 46px;
    padding: 11px 14px;
  }

  .quick-contact,
  .service-grid,
  .stats,
  .reference-list,
  .gallery {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact a:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 0;
  }

  .gallery {
    grid-auto-rows: 240px;
  }

  .gallery img:first-child {
    grid-row: span 1;
  }

  .site-footer {
    flex-direction: column;
  }
}
