:root {
  --bg: #0a0a0c;
  --surface: #161719;
  --surface-2: #111214;
  --border: #2b2c30;
  --text: #f4f5f6;
  --text-dim: #9a9ea3;
  --text-mute: #5f6266;
  --chrome: #c6cbd0;
  --red: #e2241d;
  --red-dark: #a8180f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', -apple-system, sans-serif;
  line-height: 1.5;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 12px;
}
p { margin: 0 0 12px; color: var(--text-dim); }

a { color: var(--red); text-decoration: none; }
a:hover { color: #ff443a; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--chrome); color: var(--chrome); background: transparent; }
.btn-outline:hover { border-color: var(--red); color: var(--red); background: transparent; }
.btn-call { background: var(--red); color: #fff; padding: 10px 18px; font-size: 15px; }
.btn-call:hover { background: var(--red-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,12,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.brand-logo { height: 56px; display: block; }
.nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav a { color: var(--chrome); font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 0.02em; }
.nav a:hover { color: var(--red); }

/* Hero */
.hero {
  padding: 90px 0 60px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(226,36,29,0.16), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-logo { max-width: 320px; width: 100%; height: auto; margin: 0 auto 28px; display: block; }
.hero h1 { font-size: clamp(30px, 5.5vw, 56px); max-width: 780px; margin: 0 auto 18px; }
.hero-sub { max-width: 560px; margin: 0 auto 30px; font-size: 18px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.stat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
}
.stat-chip strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--red);
}
.stat-chip span { display: block; font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* Services */
.services { padding: 70px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}
.service-card h3 { color: var(--text); font-size: 18px; text-transform: none; }
.service-card:hover { border-color: var(--red); }

/* Reviews */
.reviews { padding: 70px 0; background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rating-line { color: var(--red); font-weight: 600; font-size: 18px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.review-card {
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border-left: 3px solid var(--red);
  border-radius: 6px;
}
.review-card p { color: var(--text); font-style: italic; }
.review-card cite { color: var(--text-dim); font-style: normal; font-size: 13px; }

/* About */
.about { padding: 70px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-stats { display: flex; flex-direction: column; gap: 14px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
.stat strong { display: block; font-family: 'Rajdhani', sans-serif; font-size: 24px; color: var(--red); }
.stat span { color: var(--text-dim); font-size: 14px; }

/* Contact */
.contact { padding: 70px 0 0; background: var(--surface-2); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.contact-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.quote-form label { font-size: 14px; color: var(--text-dim); display: flex; flex-direction: column; gap: 6px; }
.quote-form input, .quote-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}
.quote-form input:focus, .quote-form textarea:focus { outline: none; border-color: var(--red); }
.form-note { font-size: 13px; margin-top: -4px; }

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  filter: grayscale(0.3) invert(0.9) contrast(0.9);
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo { height: 44px; }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-nav a { color: var(--chrome); font-size: 14px; }
.footer-nav a:hover { color: var(--red); }
.copyright { color: var(--text-mute); font-size: 12px; width: 100%; text-align: center; margin-top: 10px; }

/* Nav active state */
.nav a.active { color: var(--red); }

/* Section head row ("Heading" + "View all →" link) */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}
.section-head-row h2 { margin: 0; }
.section-head-row .view-all { font-family: 'Rajdhani', sans-serif; font-weight: 600; color: var(--chrome); text-decoration: none; }
.section-head-row .view-all:hover { color: var(--red); }

/* Sub-page hero (shorter than home's) */
.page-hero {
  padding: 60px 0 40px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(226,36,29,0.14), transparent 65%), var(--bg);
  text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4.5vw, 44px); margin: 0 0 12px; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* Final CTA band */
.cta-band { padding: 50px 0 70px; text-align: center; }
.cta-band h2 { font-size: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Services page: process steps */
.process { padding: 60px 0; background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process h2 { text-align: center; font-size: 26px; margin: 0 0 30px; }
.process-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.process-step .num { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--red); font-size: 32px; margin-bottom: 8px; }
.process-step h3 { font-size: 17px; margin: 0 0 6px; }
.process-step p { font-size: 14px; margin: 0; }

/* Promo panel */
.promo-panel {
  max-width: 800px;
  margin: 50px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.promo-panel h2 { font-size: 22px; margin: 0 0 10px; }
.promo-panel p { margin: 0; }

/* Reviews page: before/after placeholders */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.ba-item { position: relative; }
.ba-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 3px;
}
.ba-placeholder {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 13px;
  text-align: center;
  padding: 10px;
}

/* About page */
.photo-placeholder {
  width: 100%;
  height: 340px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 14px;
}
.team { padding: 60px 0; background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team h2 { text-align: center; font-size: 26px; margin: 0 0 30px; }
.team-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 12px;
}
.team-role { font-family: 'Rajdhani', sans-serif; color: var(--text); font-size: 15px; font-weight: 600; }
.team-name { color: var(--text-dim); font-size: 13px; }

@media (max-width: 720px) {
  .nav { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0 40px; }
  .hero-sub { font-size: 16px; }
  .hero-cta, .contact-actions, .cta-actions { flex-direction: column; }
  .hero-cta .btn, .contact-actions .btn, .cta-actions .btn { width: 100%; text-align: center; }
  .header-inner { padding: 10px 16px; }
  .brand-logo { height: 44px; }
}

@media (max-width: 400px) {
  .btn-call { padding: 9px 14px; font-size: 13px; }
}
