* {
  box-sizing: border-box;
}

:root {
  --red: #d71920;
  --red-dark: #9d1015;
  --black: #090909;
  --charcoal: #151515;
  --gray: #232323;
  --light: #f3f3f3;
  --muted: #b9b9b9;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.96);
  border-bottom: 1px solid #292929;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main,
h1,
h2,
h3,
.section-kicker,
.nav-links {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
}

.brand-main {
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: #ddd;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-call {
  background: var(--red);
  padding: 11px 17px;
  border-radius: 3px;
}

.nav-call:hover {
  color: var(--white) !important;
  background: var(--red-dark);
}

.menu-button {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 1.8rem;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(215, 25, 32, 0.22), transparent 30%),
    linear-gradient(120deg, #050505 10%, #111 55%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, #444 12%, transparent 12.5%, transparent 87%, #444 87.5%, #444),
    linear-gradient(150deg, #444 12%, transparent 12.5%, transparent 87%, #444 87.5%, #444);
  background-size: 80px 140px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 0.9;
  margin: 0;
  max-width: 900px;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--red);
}

.hero-copy {
  max-width: 700px;
  font-size: 1.18rem;
  color: #d5d5d5;
  margin: 30px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

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

.button.secondary {
  border-color: #555;
  background: rgba(255,255,255,.04);
}

.button.secondary:hover {
  border-color: var(--red);
}

.hero-details {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  color: #bbb;
  font-size: 0.95rem;
}

.trust-strip {
  background: var(--red);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 24px 18px;
  border-right: 1px solid rgba(255,255,255,.25);
}

.trust-grid div:last-child {
  border-right: none;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.trust-grid span {
  font-size: .87rem;
  opacity: .85;
}

.section {
  padding: 100px 0;
  background: var(--light);
  color: #161616;
}

.section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 0 0 22px;
}

.section-intro {
  max-width: 740px;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 46px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  min-height: 245px;
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-bottom: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.card p {
  color: #555;
  margin: 0;
}

.dark-section {
  background:
    linear-gradient(rgba(13,13,13,.96), rgba(13,13,13,.96)),
    repeating-linear-gradient(45deg, #161616, #161616 10px, #1b1b1b 10px, #1b1b1b 20px);
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}

.dark-section p {
  color: #c7c7c7;
}

.text-link {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.quote-box {
  background: var(--red);
  padding: 50px;
  position: relative;
  box-shadow: 16px 16px 0 #2b2b2b;
}

.quote-box p {
  color: white;
  font-size: 1.35rem;
  font-weight: 700;
}

.quote-mark {
  font-size: 5rem;
  line-height: .5;
  opacity: .45;
  font-family: Georgia, serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-item {
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: white;
  background:
    linear-gradient(0deg, rgba(0,0,0,.8), rgba(0,0,0,.05)),
    repeating-linear-gradient(135deg, #252525, #252525 18px, #303030 18px, #303030 36px);
  border-bottom: 5px solid var(--red);
}

.gallery-item span {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.45rem;
  font-weight: 700;
}

.request-section {
  background: #181818;
  color: white;
}

.request-section p {
  color: #c7c7c7;
}

.service-form {
  background: #242424;
  padding: 30px;
  border-top: 4px solid var(--red);
}

.service-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 17px;
}

.service-form input,
.service-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #494949;
  background: #111;
  color: white;
  padding: 13px;
  font: inherit;
}

.service-form input:focus,
.service-form textarea:focus {
  outline: 2px solid var(--red);
  border-color: transparent;
}

.full {
  width: 100%;
}

.small-note a {
  color: var(--red);
  font-weight: 700;
}

.contact-section {
  background: #efefef;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.contact-card {
  background: white;
  border-left: 5px solid var(--red);
  padding: 28px;
  text-decoration: none;
  min-height: 145px;
}

.contact-card span {
  display: block;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.contact-card strong {
  font-size: 1.2rem;
}

.contact-card small {
  color: #666;
}

footer {
  background: #080808;
  padding: 40px 0;
  color: #aaa;
  border-top: 1px solid #222;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-wrap strong {
  color: white;
  font-family: "Oswald", sans-serif;
}

.footer-wrap p {
  margin: 4px 0 0;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  z-index: 90;
}

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #0b0b0b;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid #333;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid #222;
  }

  .nav-call {
    text-align: center;
    margin-top: 10px;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5.5rem);
  }

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

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

  .split,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .floating-call {
    display: grid;
  }
}

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

  .hero-content {
    padding: 70px 0;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-details {
    flex-direction: column;
    gap: 6px;
  }

  .trust-grid,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
  }

  .section {
    padding: 72px 0;
  }

  .quote-box {
    padding: 34px;
    box-shadow: 8px 8px 0 #2b2b2b;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
