/* Variant 1 — Bold Performance */
:root {
  --bg: #ffffff;
  --bg-alt: #0a0a0a;
  --text: #0a0a0a;
  --text-on-dark: #f5f5f5;
  --text-muted: #5a6675;
  --border: #1a1a1a;
}

body { background: var(--bg); color: var(--text); }

.site-header {
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 3px solid var(--brand-red);
}
.brand, .nav-links a { color: #fff; }
.nav-links a { position: relative; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--brand-red); }

.hero {
  background: #0a0a0a;
  color: #fff;
  padding: 8rem 0 6.5rem;
}
.slideshow-overlay {
  background:
    linear-gradient(120deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 55%, rgba(10,10,10,0.85) 100%),
    radial-gradient(circle at 75% 30%, rgba(192, 48, 46, 0.25), transparent 60%);
}
.hero .eyebrow {
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--brand-red);
}
.hero h1 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.hero h1 .accent { color: var(--brand-red); }
.lead { color: #d6d9de; }

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.btn-primary:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.section { background: var(--bg); }
.section h2 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 0.6rem;
  display: inline-block;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--brand-red);
}
.section-lead { color: #4a5560; }

.section-alt {
  background: var(--bg-alt);
  color: var(--text-on-dark);
}
.section-alt .section-lead { color: #c2cad4; }
.section-alt h3 { color: #fff; }

.card {
  background: #f7f8fa;
  border: 1px solid #e5e8ec;
  border-top: 4px solid #d8dde2;
  position: relative;
}
.card:hover { border-top-color: var(--brand-red); box-shadow: 0 12px 28px rgba(10, 10, 10, 0.10); }
.card h3 { color: #0a0a0a; text-transform: uppercase; letter-spacing: 0.02em; font-weight: 800; font-size: 1.05rem; }
.card p { color: #525c66; }

.about-grid h3 {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.about-photo img { box-shadow: 8px 8px 0 var(--brand-red); border: 1px solid #1a1a1a; }

.contact-card {
  background: #fff;
  border: 1px solid #e5e8ec;
  color: var(--text);
}
.contact-card:hover { border-color: var(--brand-red); }
.contact-label { color: #6a7581; }

.site-footer {
  background: #0a0a0a;
  color: #c2cad4;
  border-top: 3px solid var(--brand-red);
}
.footer-meta { color: #8895a3; }

@media (max-width: 540px) {
  .hero { padding: 5rem 0 4rem; }
  .hero h1 { line-height: 1.05; }
  .about-photo img { box-shadow: 5px 5px 0 var(--brand-red); }
}
