:root {
  --black: #050505;
  --charcoal: #111111;
  --panel: #191919;
  --gold: #f5b82e;
  --silver: #e8e8e8;
  --muted: #b9b9b9;
  --red: #b41616;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #252525 0, var(--black) 48%);
  color: var(--silver);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6%;
  background: rgba(0,0,0,.88);
  border-bottom: 1px solid rgba(245,184,46,.35);
  backdrop-filter: blur(10px);
}

.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-weight: 900; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
nav { display: flex; gap: 22px; align-items: center; }
nav a { color: var(--silver); text-decoration: none; font-weight: 700; }
.nav-call { color: #080808; background: var(--gold); padding: 10px 16px; border-radius: 999px; }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  padding: 70px 6%;
}

.eyebrow { color: var(--gold); text-transform: uppercase; font-weight: 900; letter-spacing: 2px; }
h1 { font-size: clamp(42px, 7vw, 86px); line-height: .95; margin: 12px 0; }
h2 { font-size: clamp(32px, 4vw, 52px); margin: 8px 0 18px; }
h3 { color: var(--gold); font-size: 24px; }
.lead { font-size: 22px; color: var(--muted); max-width: 720px; line-height: 1.45; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.btn { display: inline-block; padding: 15px 22px; border-radius: 10px; text-decoration: none; font-weight: 900; }
.primary { background: var(--gold); color: #070707; box-shadow: 0 0 30px rgba(245,184,46,.25); }
.secondary { border: 2px solid var(--gold); color: var(--gold); }
.full { width: 100%; text-align: center; }

.hero-card { background: linear-gradient(145deg, #101010, #000); border: 1px solid rgba(245,184,46,.45); border-radius: 28px; padding: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.65); }
.hero-card img { width: 100%; display: block; border-radius: 18px; }

.problem-strip, .section, .cta { padding: 70px 6%; }
.problem-strip { background: #0b0b0b; border-top: 1px solid rgba(245,184,46,.25); border-bottom: 1px solid rgba(245,184,46,.25); }
.problem-grid, .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-grid div, .service-grid article, .quote-box {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(245,184,46,.08);
}
.problem-grid div { font-size: 21px; font-weight: 900; }

.split { display: grid; grid-template-columns: 1.4fr .6fr; gap: 30px; align-items: center; }
.check-list { list-style: none; padding: 0; font-size: 20px; line-height: 1.9; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 10px; }

.about-panel { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: center; background: #0b0b0b; }
.about-panel img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 18px; border: 1px solid rgba(245,184,46,.3); }
.tagline { color: var(--gold); font-size: 28px; font-weight: 900; }

.cta { text-align: center; background: linear-gradient(180deg, #111, #050505); }
.phone { display: block; color: var(--gold); font-size: clamp(42px, 6vw, 72px); font-weight: 900; text-decoration: none; margin: 12px 0; }
.email { color: white; font-size: 22px; }
footer { text-align: center; padding: 25px; color: var(--muted); background: #000; }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; gap: 12px; flex-direction: column; }
  nav { flex-wrap: wrap; gap: 12px; }
  .hero, .split, .about-panel { grid-template-columns: 1fr; }
  .problem-grid, .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 45px; }
}
