:root {
  --red: #c8102e;
  --red-dark: #9e0c23;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; }
.brand { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: .01em; }
.nav { display: flex; gap: 18px; color: var(--muted); }
.nav a:hover { color: var(--red); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border-radius: 999px; font-weight: 700; border: 2px solid transparent; transition: .2s ease; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; color: #fff; background: #111 url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,16,46,.86), rgba(17,17,17,.92) 60%); }
.hero-inner { position: relative; padding: 92px 0; max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; opacity: .82; margin-bottom: 14px; }
.accent { color: #ffb3bf; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
p { margin: 0 0 18px; color: inherit; }
.hero p { max-width: 620px; font-size: 1.08rem; color: rgba(255,255,255,.9); }
.hero-actions, .hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-points span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 9px 14px; border-radius: 999px; font-size: .92rem; }
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 760px; margin: 0 auto 36px; }
.center { text-align: center; }
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card, .quote, .info-box, .contact-panel, .map-box, .stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card { padding: 30px; }
.icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #f9e8eb; font-size: 1.55rem; margin-bottom: 18px; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.reverse { grid-template-columns: .95fr 1.05fr; }
.about-image img { border-radius: 24px; box-shadow: var(--shadow); }
.checklist { display: grid; gap: 12px; margin-top: 24px; }
.checklist div { position: relative; padding-left: 28px; }
.checklist div::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat { padding: 28px; text-align: center; }
.stat strong { display: block; font-size: 2rem; color: var(--red); font-family: var(--font-display); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.quote { padding: 30px; font-size: 1.02rem; }
.quote span { display: block; margin-top: 16px; color: var(--muted); font-weight: 700; font-size: .95rem; }
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.contact-panel { padding: 34px; }
.contact-form { display: grid; gap: 14px; margin-top: 18px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid #d9d9d9; font: inherit; background: #fff; }
.contact-side { display: grid; gap: 20px; }
.info-box { padding: 30px; }
.info-box p a { color: var(--red); }
.map-box { overflow: hidden; min-height: 330px; }
.map-box iframe { width: 100%; height: 100%; min-height: 330px; border: 0; display: block; }
.site-footer { background: #111; color: rgba(255,255,255,.8); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .services-grid, .testimonials-grid, .two-col, .contact-wrap { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .section, .hero-inner { padding-top: 72px; padding-bottom: 72px; }
  .stats { grid-template-columns: 1fr; }
  h1 { font-size: 2.8rem; }
}
