
:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --gold: #d4af37;
  --gold-soft: #efe1a5;
  --gold-bg: #f8f2df;
  --cream: #fffaf0;
  --white: #ffffff;
  --muted: #5a5a5a;
  --line: #e7ddba;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--black); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-header { background: var(--black); color: white; position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(255,255,255,0.12); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: -0.02em; }
.logo img { width: 48px; height: 48px; object-fit: contain; }
.logo small { display: block; color: #d6d6d6; font-weight: 500; }

.hero { background: radial-gradient(circle at top right, rgba(212,175,55,0.35), transparent 30%), linear-gradient(135deg, #0a0a0a 0%, #101010 55%, #181818 100%); color: white; padding: 88px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; margin: 0 0 14px; }
.hero h1, .page-hero h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.02; margin: 0; letter-spacing: -0.055em; }
.hero p { color: #dddddd; font-size: 18px; max-width: 700px; margin: 22px 0 0; }
.hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 28px; padding: 34px; backdrop-filter: blur(6px); }
.hero-card img { width: 180px; margin: 0 auto 20px; }
.hero-card h2 { margin: 0 0 16px; font-size: 28px; letter-spacing: -0.035em; text-align: center; }
.site-footer { background: var(--black); color: white; padding: 44px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 1fr 1.5fr; gap: 28px; align-items: start; }
.site-footer p, .site-footer a { color: #d8d8d8; }
.footer-brand img { width: 72px; margin-bottom: 14px; }
.footer-links { display: grid; gap: 8px; }
.footer-map { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); background: #111; min-height: 220px; }
.footer-map iframe { width: 100%; height: 220px; border: 0; display: block; }
.copyright { border-top: 1px solid rgba(255,255,255,0.12); color: #9c9c9c; font-size: 13px; margin-top: 28px; padding-top: 18px; text-align: center; }
@media (max-width: 980px) { .header-inner, .nav { display: block; } .nav { margin-top: 16px; } .nav a { display: inline-block; margin: 4px 2px; } .hero-grid, .about-grid, .contact-layout, .footer-grid, .form-head-wrap { grid-template-columns: 1fr; } .service-grid { grid-template-columns: repeat(2, 1fr); } .forms-grid { grid-template-columns: repeat(2, 1fr); } .form-grid { grid-template-columns: 1fr; } .full { grid-column: auto; } }
@media (max-width: 580px) { .container { width: min(100% - 24px, 1200px); } .hero, .page-hero { padding: 56px 0; } .section { padding: 54px 0; } .info-grid, .service-grid, .forms-grid { grid-template-columns: 1fr; } .quote-form, .form-head, .hero-card { padding: 24px; } .hero-card img { width: 140px; } }
