:root {
  --red: #d62622;
  --dark: #050505;
  --dark-soft: #111111;
  --light: #ffffff;
  --muted: #bbbbbb;
  --border: #222222;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top, #222 0, #000 55%);
  color: var(--light);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-bar {
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 8px 18px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
}

.top-bar span {
  opacity: 0.85;
}

.top-bar a {
  font-weight: 700;
  color: var(--red);
}

header {
  padding: 28px 18px 32px;
  border-bottom: 1px solid #111;
  background: linear-gradient(135deg, #000 0%, #111 40%, #1a0000 100%);
}

.max-width {
  max-width: 1080px;
  margin: 0 auto;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 24px;
}

.logo-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

.hero-tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
}

h1 span {
  color: var(--red);
}

.hero-sub {
  font-size: 15px;
  color: #dddddd;
  max-width: 560px;
}

.hero-cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 1px #660000, 0 8px 18px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
  background: #b91e1b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #151515;
  transform: translateY(-1px);
}

.hero-side-card,
.card,
.testimonial,
.service-areas,
.quote-form {
  background: rgba(5, 5, 5, 0.95);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

.hero-side-card {
  padding: 18px;
}

.hero-side-header {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-side-main {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-pill-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill,
.badge {
  font-size: 11px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid #333;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pill.red {
  border-color: var(--red);
  color: var(--red);
}

.hero-note,
.section-sub,
.small-note,
.service-columns p,
.card p,
.testimonial p {
  color: var(--muted);
}

main {
  padding: 28px 18px 42px;
}

section {
  margin-bottom: 30px;
}

.section-title-strong {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-sub {
  font-size: 14px;
  max-width: 680px;
}

.card-row,
.contact-grid,
.quote-form-row,
.service-columns {
  display: grid;
  gap: 14px;
}

.card-row {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 14px;
}

.contact-grid,
.quote-form-row,
.service-columns {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 14px 14px 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.services-list {
  padding-left: 0;
  margin: 8px 0 0;
  list-style: none;
  font-size: 14px;
}

.services-list li {
  margin-bottom: 4px;
}

.services-list span {
  color: var(--muted);
  font-size: 12px;
}

.pricing-card {
  background: #100000;
}

.price-line strong {
  font-size: 20px;
  color: #fff;
}

.price-line span {
  color: #9c9c9c;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  display: inline-block;
  margin-right: 6px;
}

.service-areas {
  padding: 16px 14px 18px;
  margin-top: 12px;
}

.contact-label,
.quote-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.quote-form {
  margin-top: 14px;
  padding: 14px 14px 18px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 11px;
  color: #fff;
  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form button {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 6px;
}

.quote-form button:hover {
  background: #b91e1b;
}

footer {
  border-top: 1px solid #101010;
  padding: 16px 18px 20px;
  background: #000;
  font-size: 11px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .logo-box {
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
  }

  .logo-image {
    width: 84px;
    height: 84px;
  }
}