* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #161616;
  background: #ffffff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
}
.site-header.dark { background: rgba(7, 7, 7, 0.95); }

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}
.nav nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav nav a {
  color: #f1f1f1;
  font-weight: 600;
}

.hero, .work-hero {
  position: relative;
  color: #fff;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero {
  background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80');
}
.work-hero {
  background-image: url('https://images.unsplash.com/photo-1613214149922-f1809c99b414?auto=format&fit=crop&w=1800&q=80');
  min-height: 62vh;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.62));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 0;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin: 14px 0;
}
.hero-content p {
  font-size: 1.08rem;
  max-width: 700px;
  color: #ededed;
}
.badge {
  display: inline-block;
  background: rgba(198, 32, 36, 0.95);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}
.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
}
.btn-primary {
  background: #c62024;
  color: white;
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  background: rgba(255,255,255,.08);
}

.section {
  padding: 76px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-head.left { margin-bottom: 18px; }
.section-head span, .eyebrow {
  display: inline-block;
  color: #c62024;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 6px;
}
.section-head h2, .split h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 8px 0 10px;
}
.section-head p, .split p {
  color: #525252;
  font-size: 1.03rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  padding: 26px;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  background: #fff;
}
.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.dark-band, .garage-band {
  background: #111315;
  color: #fff;
}
.dark-band p, .garage-band p { color: #d7d7d7; }

.split {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 28px;
  align-items: start;
}
.panel {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.dark-panel {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.panel h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.checklist {
  padding-left: 18px;
}
.checklist li {
  margin-bottom: 10px;
}

.contact-box {
  padding: 24px;
  border-radius: 20px;
  background: #f6f6f6;
  border: 1px solid #ececec;
}
.contact-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid #ececec;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.tiny-note {
  color: #6d6d6d;
  font-size: 0.9rem;
}

.work-cards {
  grid-template-columns: repeat(3, 1fr);
}
.work-card {
  border-radius: 24px;
  overflow: hidden;
  background: #121212;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}
.work-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.work-copy {
  padding: 20px;
}
.work-copy p {
  color: #dadada;
}

.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 24px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer a { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .cards,
  .work-cards,
  .split {
    grid-template-columns: 1fr;
  }
  .hero, .work-hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-content {
    padding: 60px 0;
  }
}
