* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: #111; background: #f5f5f5; }
.topbar { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; padding: 14px 6%; background: #0b0b0d; color: white; box-shadow: 0 3px 14px rgba(0,0,0,.35); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 6px; }
.brand strong { display: block; font-size: 18px; }
.brand span { color: #c9c9c9; font-size: 13px; }
nav a { color: white; text-decoration: none; margin-left: 22px; font-weight: 700; font-size: 14px; }
.nav-call { background: #b40000; padding: 10px 14px; border-radius: 4px; }
.hero { min-height: 690px; background:
  linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.78)),
  url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white; display: grid; place-items: center; text-align: center; padding: 40px 20px;
}
.hero-overlay { max-width: 980px; }
.hero-logo { width: 230px; max-width: 80%; margin-bottom: 15px; filter: drop-shadow(0 6px 14px #000); }
.eyebrow { color: #ffcf5a; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; }
h1 { font-size: clamp(38px, 7vw, 78px); line-height: .98; margin: 12px 0; text-transform: uppercase; }
.hero-text { font-size: clamp(18px, 3vw, 26px); font-weight: 700; }
.btn { display: inline-block; margin: 10px; padding: 15px 24px; border-radius: 4px; text-decoration: none; font-weight: 900; text-transform: uppercase; }
.primary { background: #c00000; color: white; }
.secondary { border: 2px solid white; color: white; }
.intro, .section { padding: 70px 7%; text-align: center; }
.intro h2, .section h2 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 18px; text-transform: uppercase; }
.intro p, .section p { max-width: 850px; margin: 0 auto 18px; font-size: 18px; line-height: 1.6; }
.dark { background: #111116; color: white; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 35px; }
.card { background: #1d1d23; border-top: 5px solid #c00000; padding: 26px; text-align: left; border-radius: 8px; min-height: 185px; }
.card h3 { margin-top: 0; font-size: 23px; color: #fff; }
.card p { font-size: 16px; margin: 0; color: #d7d7d7; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.gallery div { min-height: 180px; background: linear-gradient(135deg, #262626, #6a0000); color: white; display: grid; place-items: center; font-size: 22px; font-weight: 900; border-radius: 8px; padding: 18px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
blockquote { background: #1d1d23; border-left: 5px solid #c00000; margin: 0; padding: 24px; font-size: 18px; line-height: 1.5; text-align: left; }
blockquote span { display: block; color: #c9c9c9; margin-top: 14px; }
.about { background: white; }
.contact { background: #c00000; color: white; }
.contact a { color: white; font-weight: 900; }
.big { font-size: 32px !important; font-weight: 900; }
footer { background: #080808; color: #ccc; text-align: center; padding: 26px; font-size: 14px; }

@media (max-width: 850px) {
  .topbar { flex-direction: column; gap: 12px; }
  nav a { margin: 0 8px; font-size: 13px; }
  .cards, .gallery, .reviews { grid-template-columns: 1fr; }
  .hero { min-height: 620px; }
}
