/* ============================================================
   EAST VALLEY HOME MEDIA — Commercial Page Styles
   Inherits all variables and base styles from style.css
   ============================================================ */

/* ── Active nav link ── */
.nav-link--active {
  color: var(--color-primary) !important;
  font-weight: 500;
}

/* ── Commercial page hero (no full-viewport image) ── */
.commercial-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-top: calc(72px + var(--space-12)); /* account for fixed header */
  padding-bottom: var(--space-12);
}

.commercial-hero-content {
  max-width: 700px;
}

.commercial-headline {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  text-align: left;
}

.commercial-hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

/* ── Commercial pricing note ── */
.commercial-pricing-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-top: var(--space-6);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Service card link button ── */
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card .btn {
  margin-top: auto;
  padding-top: var(--space-4);
}
