* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --black: #050505;
  --black2: #0d0d0d;
  --red: #e11b22;
  --red-dark: #9e1015;
  --white: #f5f5f5;
  --silver: #bfc1c4;
  --muted: #a8a8a8;
  --line: rgba(255,255,255,.14);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
}
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; }
.brand img { width: 100px; height: 62px; object-fit: contain; }
nav { display: flex; gap: 24px; margin-left: auto; }
nav a, .nav-phone { color: var(--white); text-decoration: none; font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
nav a:hover { color: var(--red); }
.nav-phone { color: #fff; border: 1px solid var(--red); padding: 10px 15px; }
.hero {
  min-height: 760px; display: flex; align-items: center; position: relative;
  background: radial-gradient(circle at 78% 40%, rgba(225,27,34,.22), transparent 34%),
              linear-gradient(110deg, #050505 0%, #0a0a0a 55%, #151515 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -160px; top: 80px; width: 650px; height: 650px;
  border: 2px solid rgba(225,27,34,.25); border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255,255,255,.015), 0 0 0 70px rgba(225,27,34,.03);
}
.hero-content { position: relative; z-index: 2; }
.hero-copy { max-width: 760px; padding: 80px 0; }
.eyebrow { color: var(--red); font-weight: 800; letter-spacing: .2em; font-size: .78rem; margin: 0 0 16px; }
h1, h2, h3 { font-family: "Oswald", sans-serif; margin-top: 0; }
h1 { font-size: clamp(3.4rem, 8vw, 6.5rem); line-height: .95; letter-spacing: -.02em; margin-bottom: 25px; }
h1 span, h2 span { color: var(--red); }
.hero-text { font-size: 1.25rem; color: #d0d0d0; max-width: 640px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 20px; }
.btn { display: inline-block; text-decoration: none; padding: 14px 24px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; transition: transform .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #ff242c; }
.btn-outline { border: 1px solid #ddd; color: #fff; }
.hero-hours { color: var(--silver); }
.section { padding: 100px 0; border-top: 1px solid var(--line); }
.two-col, .area-inner, .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
h2 { font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -.01em; margin-bottom: 22px; }
.about { background: linear-gradient(180deg, #0a0a0a, #050505); }
.about-copy { color: #cfcfcf; font-size: 1.05rem; }
.about-points { margin-top: 32px; border-top: 1px solid var(--line); }
.about-points div { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.about-points strong { color: var(--red); font-family: "Oswald"; }
.about-points span { color: #eee; }
.pricing { background: #080808; }
.section-heading { max-width: 720px; margin-bottom: 45px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  min-height: 220px; padding: 26px; background: linear-gradient(145deg, #171717, #0b0b0b);
  border: 1px solid #242424; position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(145deg, #2a0a0c, #0d0d0d); }
.icon { color: var(--red); font-size: 1.8rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.price { font-size: 1rem; color: #ddd; }
.price strong { color: #fff; font-size: 1.35rem; }
.service-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.pricing-note {
  margin-top: 25px; padding: 20px 22px; border-left: 4px solid var(--red);
  background: #111; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.pricing-note span { color: var(--muted); }
.area { background: linear-gradient(135deg, #111 0%, #060606 65%); }
.area p { color: #c8c8c8; font-size: 1.05rem; }
.area-highlight { color: var(--red) !important; font-family: "Oswald"; font-size: 1.3rem !important; letter-spacing: .08em; font-weight: 600; }
.contact { background: var(--red); color: #fff; border-top: 0; }
.contact .eyebrow { color: #fff; }
.contact h2 span { color: #111; }
.contact-inner > div:first-child p:last-child { max-width: 580px; font-size: 1.05rem; }
.contact-card { background: #080808; padding: 30px; border: 1px solid rgba(255,255,255,.15); }
.contact-card > * { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: #fff; }
.contact-card > *:last-child { border-bottom: 0; }
.contact-card small { display: block; color: var(--red); font-weight: 800; letter-spacing: .15em; margin-bottom: 4px; }
.contact-card strong { font-size: 1.15rem; word-break: break-word; }
footer { padding: 30px 0; background: #030303; color: #888; font-size: .85rem; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-logo { width: 85px; height: 55px; object-fit: contain; }

@media (max-width: 900px) {
  nav { display: none; }
  .nav-wrap { justify-content: space-between; }
  .hero { min-height: 680px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .area-inner, .contact-inner { grid-template-columns: 1fr; gap: 35px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-phone { font-size: .72rem; padding: 8px 10px; }
  .brand img { width: 82px; }
  .hero { min-height: 620px; }
  .hero-copy { padding: 60px 0; }
  h1 { font-size: 3.25rem; }
  .hero-text { font-size: 1.05rem; }
  .section { padding: 70px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .pricing-note { display: block; }
  .pricing-note span { display: block; margin-top: 8px; }
  .footer-wrap { flex-direction: column; text-align: center; }
}
