
:root {
  --black: #050505;
  --black-soft: #111111;
  --charcoal: #1b1b1b;
  --red: #e32219;
  --red-dark: #9e130d;
  --yellow: #f4c430;
  --white: #ffffff;
  --gray: #b8b8b8;
  --light: #f4f4f4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.96);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand img {
  width: 170px;
  max-height: 82px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
}

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

.header-call {
  text-decoration: none;
  background: var(--red);
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 800;
  box-shadow: 0 5px 0 var(--red-dark);
}

.menu-button {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: white;
  font-size: 2rem;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(0,0,0,.97) 20%, rgba(0,0,0,.58) 66%, rgba(227,34,25,.25)),
    repeating-conic-gradient(#111 0 25%, #050505 0 50%) 0 / 70px 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 80px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 40px solid rgba(227,34,25,.12);
  box-shadow: 0 0 0 45px rgba(244,196,48,.04);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(transparent, #050505);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
  padding: 85px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
}

h1, h2, h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.08;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(3.6rem, 8vw, 7rem);
  max-width: 900px;
}

.hero-copy {
  max-width: 700px;
  font-size: 1.22rem;
  color: #e2e2e2;
}

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

.button {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 14px 24px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .05em;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 6px 0 var(--red-dark);
}

.button-primary:hover {
  transform: translateY(1px);
  box-shadow: 0 5px 0 var(--red-dark);
}

.button-secondary {
  border-color: white;
  color: white;
}

.button-secondary:hover {
  background: white;
  color: black;
}

.hero-details {
  display: flex;
  gap: 16px 26px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: var(--yellow);
  font-weight: 800;
}

.trust-bar {
  background: var(--red);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}

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

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

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

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

.trust-grid span { color: #ffe8e8; }

.section { padding: 95px 0; }

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.section-heading > p:last-child {
  color: var(--gray);
  font-size: 1.08rem;
}

.services-section {
  background:
    linear-gradient(rgba(5,5,5,.94), rgba(5,5,5,.94)),
    repeating-conic-gradient(#222 0 25%, #111 0 50%) 0 / 48px 48px;
}

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

.service-card {
  padding: 30px;
  background: linear-gradient(145deg, #1a1a1a, #0c0c0c);
  border: 1px solid #333;
  border-top: 5px solid var(--red);
  box-shadow: 0 15px 35px rgba(0,0,0,.28);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: black;
  font-size: 1.7rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 20px 0 8px;
  font-size: 1.6rem;
}

.service-card p { color: var(--gray); }

.about-section {
  background: #0b0b0b;
  border-top: 1px solid #252525;
  border-bottom: 1px solid #252525;
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  background: #000;
  padding: 24px;
  border: 3px solid var(--red);
  box-shadow: 18px 18px 0 rgba(244,196,48,.12);
}

.about-copy p:not(.eyebrow) {
  color: #d0d0d0;
  font-size: 1.08rem;
}

.hours-section {
  background: var(--light);
  color: #151515;
}

.hours-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.hours-section .eyebrow { color: var(--red); }

.hours-card {
  background: white;
  border-top: 7px solid var(--red);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 22px;
  border-bottom: 1px solid #ddd;
}

.hours-row:nth-child(even) { background: #f6f6f6; }
.hours-row.closed { color: #8d0000; }

.contact-section {
  background:
    linear-gradient(120deg, rgba(0,0,0,.97), rgba(0,0,0,.88)),
    repeating-conic-gradient(#202020 0 25%, #0d0d0d 0 50%) 0 / 58px 58px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.contact-item {
  margin: 24px 0;
}

.contact-item span {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .1em;
}

.contact-item a {
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.contact-item p { font-size: 1.2rem; }

.contact-form {
  background: #f4f4f4;
  color: #151515;
  padding: 32px;
  border-top: 7px solid var(--yellow);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.contact-form h3 {
  margin: 0 0 20px;
  font-size: 2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background: white;
}

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

.form-note {
  color: #666;
  font-size: .86rem;
  margin-bottom: 0;
}

footer {
  background: #000;
  border-top: 4px solid var(--red);
  padding: 32px 0 90px;
}

.footer-content {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-content img { width: 140px; }
.footer-content p { margin: 2px 0; }
.footer-content a { color: var(--yellow); }

.mobile-call-bar {
  display: none;
  position: fixed;
  z-index: 1200;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  border-top: 3px solid var(--yellow);
  text-align: center;
}

.mobile-call-bar a {
  display: block;
  padding: 14px;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .header-call { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    padding: 24px;
    background: #050505;
    flex-direction: column;
    border-bottom: 3px solid var(--red);
  }

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

  .trust-grid,
  .service-grid,
  .about-grid,
  .hours-grid,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .footer-content { text-align: center; }
  .footer-content img { margin: 0 auto; }
  .mobile-call-bar { display: block; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 140px; }
  .hero { min-height: 640px; }
  .hero-content { padding: 65px 0; }
  h1 { font-size: 3.6rem; }
  .section { padding: 70px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .hours-row { flex-direction: column; gap: 2px; }
}
