/* ============================================================
   Repairs page
   ============================================================ */

.hero-short { min-height: 60vh; }

/* ── Intro two-column ───────────────────────────────────────── */
.repair-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.repair-text h2 { margin-bottom: 1rem; }

/* ── Repair service list ────────────────────────────────────── */
.repair-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.repair-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.repair-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Pricing highlight box ──────────────────────────────────── */
.pricing-highlight {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-highlight span {
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .repair-intro { grid-template-columns: 1fr; }
}
